Class HdfsRepositorySettings
Inheritance
HdfsRepositorySettings
Assembly: OpenSearch.Client.dll
Syntax
public class HdfsRepositorySettings : IHdfsRepositorySettings, IRepositorySettings
Constructors
|
Edit this page
View Source
HdfsRepositorySettings(string)
Declaration
public HdfsRepositorySettings(string path)
Parameters
Type |
Name |
Description |
string |
path |
|
Properties
|
Edit this page
View Source
ChunkSize
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
public string ChunkSize { get; set; }
Property Value
|
Edit this page
View Source
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
public bool? Compress { get; set; }
Property Value
|
Edit this page
View Source
ConcurrentStreams
Throttles the number of streams (per node) preforming snapshot operation. Defaults to 5
Declaration
public int? ConcurrentStreams { get; set; }
Property Value
|
Edit this page
View Source
ConfigurationLocation
Hadoop configuration XML to be loaded (use commas for multi values)
Declaration
public string ConfigurationLocation { get; set; }
Property Value
|
Edit this page
View Source
InlineHadoopConfiguration
'inlined' key=value added to the Hadoop configuration
Declaration
public Dictionary<string, object> InlineHadoopConfiguration { get; set; }
Property Value
|
Edit this page
View Source
LoadDefaults
Whether to load the default Hadoop configuration (default) or not
Declaration
public bool? LoadDefaults { get; set; }
Property Value
|
Edit this page
View Source
Path
The path with the file-system where data is stored/loaded. Required
Declaration
public string Path { get; set; }
Property Value
|
Edit this page
View Source
Uri
The Hadoop file-system URI. Optional
Declaration
public string Uri { get; set; }
Property Value
Implements
Extension Methods