mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-18 19:05:06 +00:00
[DOC] escape # in programlisting
This commit is contained in:
parent
3978508a29
commit
210657a453
@ -88,24 +88,26 @@ by raising an issue. Thank you!
|
|||||||
Once installed, define the configuration for the `hdfs` repository through `elasticsearch.yml` or the
|
Once installed, define the configuration for the `hdfs` repository through `elasticsearch.yml` or the
|
||||||
{ref}/modules-snapshots.html[REST API]:
|
{ref}/modules-snapshots.html[REST API]:
|
||||||
|
|
||||||
[source]
|
[source,yaml]
|
||||||
----
|
----
|
||||||
repositories
|
repositories
|
||||||
hdfs:
|
hdfs:
|
||||||
uri: "hdfs://<host>:<port>/" # optional - Hadoop file-system URI
|
uri: "hdfs://<host>:<port>/" \# optional - Hadoop file-system URI
|
||||||
path: "some/path" # required - path with the file-system where data is stored/loaded
|
path: "some/path" \# required - path with the file-system where data is stored/loaded
|
||||||
load_defaults: "true" # optional - whether to load the default Hadoop configuration (default) or not
|
load_defaults: "true" \# optional - whether to load the default Hadoop configuration (default) or not
|
||||||
conf_location: "extra-cfg.xml" # optional - Hadoop configuration XML to be loaded (use commas for multi values)
|
conf_location: "extra-cfg.xml" \# optional - Hadoop configuration XML to be loaded (use commas for multi values)
|
||||||
conf.<key> : "<value>" # optional - 'inlined' key=value added to the Hadoop configuration
|
conf.<key> : "<value>" \# optional - 'inlined' key=value added to the Hadoop configuration
|
||||||
concurrent_streams: 5 # optional - the number of concurrent streams (defaults to 5)
|
concurrent_streams: 5 \# optional - the number of concurrent streams (defaults to 5)
|
||||||
compress: "false" # optional - whether to compress the metadata or not (default)
|
compress: "false" \# optional - whether to compress the metadata or not (default)
|
||||||
chunk_size: "10mb" # optional - chunk size (disabled by default)
|
chunk_size: "10mb" \# optional - chunk size (disabled by default)
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
NOTE: Be careful when including a paths within the `uri` setting; Some implementations ignore them completely while
|
NOTE: Be careful when including a paths within the `uri` setting; Some implementations ignore them completely while
|
||||||
others consider them. In general, we recommend keeping the `uri` to a minimum and using the `path` element instead.
|
others consider them. In general, we recommend keeping the `uri` to a minimum and using the `path` element instead.
|
||||||
|
|
||||||
===== Plugging other file-systems
|
[[repository-hdfs-other-fs]]
|
||||||
|
==== Plugging other file-systems
|
||||||
|
|
||||||
Any HDFS-compatible file-systems (like Amazon `s3://` or Google `gs://`) can be used as long as the proper Hadoop
|
Any HDFS-compatible file-systems (like Amazon `s3://` or Google `gs://`) can be used as long as the proper Hadoop
|
||||||
configuration is passed to the Elasticsearch plugin. In practice, this means making sure the correct Hadoop configuration
|
configuration is passed to the Elasticsearch plugin. In practice, this means making sure the correct Hadoop configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user