Search Results for

    Show / Hide Table of Contents

    Interface IHdfsRepositorySettings

    Snapshot repository settings for IHdfsRepository

    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IHdfsRepositorySettings : IRepositorySettings

    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
    [DataMember(Name = "chunk_size")]
    string ChunkSize { get; set; }
    Property Value
    Type Description
    string
    | 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
    [DataMember(Name = "compress")]
    bool? Compress { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    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?
    | Edit this page View Source

    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
    | Edit this page View Source

    InlineHadoopConfiguration

    'inlined' key=value added to the Hadoop configuration

    Declaration
    [IgnoreDataMember]
    Dictionary<string, object> InlineHadoopConfiguration { get; set; }
    Property Value
    Type Description
    Dictionary<string, object>
    | Edit this page View Source

    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?
    | Edit this page View Source

    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
    | Edit this page View Source

    Uri

    The Hadoop file-system URI. Optional

    Declaration
    [DataMember(Name = "uri")]
    string Uri { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • ChunkSize
      • Compress
      • ConcurrentStreams
      • ConfigurationLocation
      • InlineHadoopConfiguration
      • LoadDefaults
      • Path
      • Uri
    • Extension Methods
    Back to top Generated by DocFX