Class: Aws::TimestreamInfluxDB::Types::InfluxDBv3CoreParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamInfluxDB::Types::InfluxDBv3CoreParameters
- Defined in:
- gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb
Overview
All the customer-modifiable InfluxDB v3 Core parameters in Timestream for InfluxDB.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_fusion_config ⇒ String
Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.
-
#data_fusion_max_parquet_fanout ⇒ Integer
When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.
-
#data_fusion_num_threads ⇒ Integer
Sets the maximum number of DataFusion runtime threads to use.
-
#data_fusion_runtime_disable_lifo_slot ⇒ Boolean
Disables the LIFO slot of the DataFusion runtime.
-
#data_fusion_runtime_event_interval ⇒ Integer
Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.
-
#data_fusion_runtime_global_queue_interval ⇒ Integer
Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.
-
#data_fusion_runtime_max_blocking_threads ⇒ Integer
Specifies the limit for additional threads spawned by the DataFusion runtime.
-
#data_fusion_runtime_max_io_events_per_tick ⇒ Integer
Configures the maximum number of events processed per tick by the tokio DataFusion runtime.
-
#data_fusion_runtime_thread_keep_alive ⇒ Types::Duration
Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.
-
#data_fusion_runtime_thread_priority ⇒ Integer
Sets the thread priority for tokio DataFusion runtime workers.
-
#data_fusion_runtime_type ⇒ String
Specifies the DataFusion tokio runtime type.
-
#data_fusion_use_cached_parquet_loader ⇒ Boolean
Uses a cached parquet loader when reading parquet files from the object store.
-
#delete_grace_period ⇒ Types::Duration
Specifies the grace period before permanently deleting data.
-
#disable_parquet_mem_cache ⇒ Boolean
Disables the in-memory Parquet cache.
-
#distinct_cache_eviction_interval ⇒ Types::Duration
Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.
-
#exec_mem_pool_bytes ⇒ Types::PercentOrAbsoluteLong
Specifies the size of memory pool used during query execution.
-
#force_snapshot_mem_threshold ⇒ Types::PercentOrAbsoluteLong
Specifies the threshold for the internal memory buffer.
-
#gen1_duration ⇒ Types::Duration
Specifies the duration that Parquet files are arranged into.
-
#gen1_lookback_duration ⇒ Types::Duration
Specifies how far back to look when creating generation 1 Parquet files.
-
#hard_delete_default_duration ⇒ Types::Duration
Sets the default duration for hard deletion of data.
-
#last_cache_eviction_interval ⇒ Types::Duration
Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.
-
#log_filter ⇒ String
Sets the filter directive for logs.
-
#log_format ⇒ String
Defines the message format for logs.
-
#max_http_request_size ⇒ Integer
Specifies the maximum size of HTTP requests.
-
#parquet_mem_cache_prune_interval ⇒ Types::Duration
Sets the interval to check if the in-memory Parquet cache needs to be pruned.
-
#parquet_mem_cache_prune_percentage ⇒ Float
Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.
-
#parquet_mem_cache_query_path_duration ⇒ Types::Duration
Specifies the time window for caching recent Parquet files in memory.
-
#parquet_mem_cache_size ⇒ Types::PercentOrAbsoluteLong
Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.
-
#preemptive_cache_age ⇒ Types::Duration
Specifies the interval to prefetch into the Parquet cache during compaction.
-
#query_file_limit ⇒ Integer
Limits the number of Parquet files a query can access.
-
#query_log_size ⇒ Integer
Defines the size of the query log.
-
#retention_check_interval ⇒ Types::Duration
The interval at which retention policies are checked and enforced.
-
#snapshotted_wal_files_to_keep ⇒ Integer
Specifies the number of snapshotted WAL files to retain in the object store.
-
#table_index_cache_concurrency_limit ⇒ Integer
Limits the concurrency level for table index cache operations.
-
#table_index_cache_max_entries ⇒ Integer
Specifies the maximum number of entries in the table index cache.
-
#wal_max_write_buffer_size ⇒ Integer
Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.
-
#wal_replay_concurrency_limit ⇒ Integer
Concurrency limit during WAL replay.
-
#wal_replay_fail_on_error ⇒ Boolean
Determines whether WAL replay should fail when encountering errors.
-
#wal_snapshot_size ⇒ Integer
Defines the number of WAL files to attempt to remove in a snapshot.
Instance Attribute Details
#data_fusion_config ⇒ String
Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_max_parquet_fanout ⇒ Integer
When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.
Default: 1000
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_num_threads ⇒ Integer
Sets the maximum number of DataFusion runtime threads to use.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_disable_lifo_slot ⇒ Boolean
Disables the LIFO slot of the DataFusion runtime.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_event_interval ⇒ Integer
Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_global_queue_interval ⇒ Integer
Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_max_blocking_threads ⇒ Integer
Specifies the limit for additional threads spawned by the DataFusion runtime.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_max_io_events_per_tick ⇒ Integer
Configures the maximum number of events processed per tick by the tokio DataFusion runtime.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_thread_keep_alive ⇒ Types::Duration
Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_thread_priority ⇒ Integer
Sets the thread priority for tokio DataFusion runtime workers.
Default: 10
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_runtime_type ⇒ String
Specifies the DataFusion tokio runtime type.
Default: multi-thread
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#data_fusion_use_cached_parquet_loader ⇒ Boolean
Uses a cached parquet loader when reading parquet files from the object store.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#delete_grace_period ⇒ Types::Duration
Specifies the grace period before permanently deleting data.
Default: 24h
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#disable_parquet_mem_cache ⇒ Boolean
Disables the in-memory Parquet cache. By default, the cache is enabled.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#distinct_cache_eviction_interval ⇒ Types::Duration
Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.
Default: 10s
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#exec_mem_pool_bytes ⇒ Types::PercentOrAbsoluteLong
Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.
Default: 20%
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#force_snapshot_mem_threshold ⇒ Types::PercentOrAbsoluteLong
Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100
Default: 70%
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#gen1_duration ⇒ Types::Duration
Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files that the compactor in InfluxDB 3 Enterprise can merge into larger generations.
Default: 10m
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#gen1_lookback_duration ⇒ Types::Duration
Specifies how far back to look when creating generation 1 Parquet files.
Default: 24h
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#hard_delete_default_duration ⇒ Types::Duration
Sets the default duration for hard deletion of data.
Default: 90d
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#last_cache_eviction_interval ⇒ Types::Duration
Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.
Default: 10s
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#log_filter ⇒ String
Sets the filter directive for logs.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#log_format ⇒ String
Defines the message format for logs.
Default: full
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#max_http_request_size ⇒ Integer
Specifies the maximum size of HTTP requests.
Default: 10485760
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#parquet_mem_cache_prune_interval ⇒ Types::Duration
Sets the interval to check if the in-memory Parquet cache needs to be pruned.
Default: 1s
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#parquet_mem_cache_prune_percentage ⇒ Float
Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.
Default: 0.1
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#parquet_mem_cache_query_path_duration ⇒ Types::Duration
Specifies the time window for caching recent Parquet files in memory.
Default: 5h
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#parquet_mem_cache_size ⇒ Types::PercentOrAbsoluteLong
Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.
Default: 20%
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#preemptive_cache_age ⇒ Types::Duration
Specifies the interval to prefetch into the Parquet cache during compaction.
Default: 3d
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#query_file_limit ⇒ Integer
Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.
Default: 432
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#query_log_size ⇒ Integer
Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.
Default: 1000
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#retention_check_interval ⇒ Types::Duration
The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.
Default: 30m
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#snapshotted_wal_files_to_keep ⇒ Integer
Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.
Default: 300
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#table_index_cache_concurrency_limit ⇒ Integer
Limits the concurrency level for table index cache operations.
Default: 8
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#table_index_cache_max_entries ⇒ Integer
Specifies the maximum number of entries in the table index cache.
Default: 1000
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#wal_max_write_buffer_size ⇒ Integer
Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.
Default: 100000
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#wal_replay_concurrency_limit ⇒ Integer
Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.
Default: max(num_cpus, 10)
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#wal_replay_fail_on_error ⇒ Boolean
Determines whether WAL replay should fail when encountering errors.
Default: false
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |
#wal_snapshot_size ⇒ Integer
Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.
Default: 600
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 1870 class InfluxDBv3CoreParameters < Struct.new( :query_file_limit, :query_log_size, :log_filter, :log_format, :data_fusion_num_threads, :data_fusion_runtime_type, :data_fusion_runtime_disable_lifo_slot, :data_fusion_runtime_event_interval, :data_fusion_runtime_global_queue_interval, :data_fusion_runtime_max_blocking_threads, :data_fusion_runtime_max_io_events_per_tick, :data_fusion_runtime_thread_keep_alive, :data_fusion_runtime_thread_priority, :data_fusion_max_parquet_fanout, :data_fusion_use_cached_parquet_loader, :data_fusion_config, :max_http_request_size, :force_snapshot_mem_threshold, :wal_snapshot_size, :wal_max_write_buffer_size, :snapshotted_wal_files_to_keep, :preemptive_cache_age, :parquet_mem_cache_prune_percentage, :parquet_mem_cache_prune_interval, :disable_parquet_mem_cache, :parquet_mem_cache_query_path_duration, :last_cache_eviction_interval, :distinct_cache_eviction_interval, :gen1_duration, :exec_mem_pool_bytes, :parquet_mem_cache_size, :wal_replay_fail_on_error, :wal_replay_concurrency_limit, :table_index_cache_max_entries, :table_index_cache_concurrency_limit, :gen1_lookback_duration, :retention_check_interval, :delete_grace_period, :hard_delete_default_duration) SENSITIVE = [] include Aws::Structure end |