Interface IHdfsRepositorySettings
Snapshot repository settings for IHdfsRepository
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IHdfsRepositorySettings : IRepositorySettings
Properties
| Edit this page View SourceChunkSize
Big files can be broken down into chunks during snapshotting if needed. The chunk size can be specified in bytes or by using size value notation, i.e. 1g, 10m, 5k. Disabled by default
Declaration
[DataMember(Name = "chunk_size")]
string ChunkSize { get; set; }
Property Value
Type | Description |
---|---|
string |
Compress
When set to true metadata files are stored in compressed format. This setting doesn't
affect index files that are already compressed by default. Defaults to false
.
Declaration
[DataMember(Name = "compress")]
bool? Compress { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ConcurrentStreams
Throttles the number of streams (per node) preforming snapshot operation. Defaults to 5
Declaration
[DataMember(Name = "concurrent_streams")]
int? ConcurrentStreams { get; set; }
Property Value
Type | Description |
---|---|
int? |
ConfigurationLocation
Hadoop configuration XML to be loaded (use commas for multi values)
Declaration
[DataMember(Name = "conf_location")]
string ConfigurationLocation { get; set; }
Property Value
Type | Description |
---|---|
string |
InlineHadoopConfiguration
'inlined' key=value added to the Hadoop configuration
Declaration
[IgnoreDataMember]
Dictionary<string, object> InlineHadoopConfiguration { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, object> |
LoadDefaults
Whether to load the default Hadoop configuration (default) or not
Declaration
[DataMember(Name = "load_defaults")]
bool? LoadDefaults { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Path
The path with the file-system where data is stored/loaded. Required
Declaration
[DataMember(Name = "path")]
string Path { get; set; }
Property Value
Type | Description |
---|---|
string |
Uri
The Hadoop file-system URI. Optional
Declaration
[DataMember(Name = "uri")]
string Uri { get; set; }
Property Value
Type | Description |
---|---|
string |