Class: Aws::TimestreamInfluxDB::Types::InfluxDBv2Parameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamInfluxDB::Types::InfluxDBv2Parameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreaminfluxdb/types.rb
Overview
All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flux_log_enabled ⇒ Boolean
Include option to show detailed logs for Flux queries.
-
#http_idle_timeout ⇒ Types::Duration
Maximum duration the server should keep established connections alive while waiting for new requests.
-
#http_read_header_timeout ⇒ Types::Duration
Maximum duration the server should try to read HTTP headers for new requests.
-
#http_read_timeout ⇒ Types::Duration
Maximum duration the server should try to read the entirety of new requests.
-
#http_write_timeout ⇒ Types::Duration
Maximum duration the server should spend processing and responding to write requests.
-
#influxql_max_select_buckets ⇒ Integer
Maximum number of group by time buckets a SELECT statement can create.
-
#influxql_max_select_point ⇒ Integer
Maximum number of points a SELECT statement can process.
-
#influxql_max_select_series ⇒ Integer
Maximum number of series a SELECT statement can return.
-
#log_level ⇒ String
Log output level.
-
#metrics_disabled ⇒ Boolean
Disable the HTTP /metrics endpoint which exposes [internal InfluxDB metrics].
-
#no_tasks ⇒ Boolean
Disable the task scheduler.
-
#pprof_disabled ⇒ Boolean
Disable the /debug/pprof HTTP endpoint.
-
#query_concurrency ⇒ Integer
Number of queries allowed to execute concurrently.
-
#query_initial_memory_bytes ⇒ Integer
Initial bytes of memory allocated for a query.
-
#query_max_memory_bytes ⇒ Integer
Maximum number of queries allowed in execution queue.
-
#query_memory_bytes ⇒ Integer
Maximum bytes of memory allowed for a single query.
-
#query_queue_size ⇒ Integer
Maximum number of queries allowed in execution queue.
-
#session_length ⇒ Integer
Specifies the Time to Live (TTL) in minutes for newly created user sessions.
-
#session_renew_disabled ⇒ Boolean
Disables automatically extending a user’s session TTL on each request.
-
#storage_cache_max_memory_size ⇒ Integer
Maximum size (in bytes) a shard’s cache can reach before it starts rejecting writes.
-
#storage_cache_snapshot_memory_size ⇒ Integer
Size (in bytes) at which the storage engine will snapshot the cache and write it to a TSM file to make more memory available.
-
#storage_cache_snapshot_write_cold_duration ⇒ Types::Duration
Duration at which the storage engine will snapshot the cache and write it to a new TSM file if the shard hasn’t received writes or deletes.
-
#storage_compact_full_write_cold_duration ⇒ Types::Duration
Duration at which the storage engine will compact all TSM files in a shard if it hasn’t received writes or deletes.
-
#storage_compact_throughput_burst ⇒ Integer
Rate limit (in bytes per second) that TSM compactions can write to disk.
-
#storage_max_concurrent_compactions ⇒ Integer
Maximum number of full and level compactions that can run concurrently.
-
#storage_max_index_log_file_size ⇒ Integer
Size (in bytes) at which an index write-ahead log (WAL) file will compact into an index file.
-
#storage_no_validate_field_size ⇒ Boolean
Skip field size validation on incoming write requests.
-
#storage_retention_check_interval ⇒ Types::Duration
Interval of retention policy enforcement checks.
-
#storage_series_file_max_concurrent_snapshot_compactions ⇒ Integer
Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.
-
#storage_series_id_set_cache_size ⇒ Integer
Size of the internal cache used in the TSI index to store previously calculated series results.
-
#storage_wal_max_concurrent_writes ⇒ Integer
Maximum number writes to the WAL directory to attempt at the same time.
-
#storage_wal_max_write_delay ⇒ Types::Duration
Maximum amount of time a write request to the WAL directory will wait when the [maximum number of concurrent active writes to the WAL directory has been met].
-
#tracing_type ⇒ String
Enable tracing in InfluxDB and specifies the tracing type.
-
#ui_disabled ⇒ Boolean
Disable the InfluxDB user interface (UI).
Instance Attribute Details
#flux_log_enabled ⇒ Boolean
Include option to show detailed logs for Flux queries.
Default: false
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#http_idle_timeout ⇒ Types::Duration
Maximum duration the server should keep established connections alive while waiting for new requests. Set to 0 for no timeout.
Default: 3 minutes
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#http_read_header_timeout ⇒ Types::Duration
Maximum duration the server should try to read HTTP headers for new requests. Set to 0 for no timeout.
Default: 10 seconds
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#http_read_timeout ⇒ Types::Duration
Maximum duration the server should try to read the entirety of new requests. Set to 0 for no timeout.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#http_write_timeout ⇒ Types::Duration
Maximum duration the server should spend processing and responding to write requests. Set to 0 for no timeout.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#influxql_max_select_buckets ⇒ Integer
Maximum number of group by time buckets a SELECT statement can create. 0 allows an unlimited number of buckets.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#influxql_max_select_point ⇒ Integer
Maximum number of points a SELECT statement can process. 0 allows an unlimited number of points. InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted).
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#influxql_max_select_series ⇒ Integer
Maximum number of series a SELECT statement can return. 0 allows an unlimited number of series.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#log_level ⇒ String
Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.
Default: info
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#metrics_disabled ⇒ Boolean
Disable the HTTP /metrics endpoint which exposes [internal InfluxDB metrics].
Default: false
[1]: docs.influxdata.com/influxdb/v2/reference/internals/metrics/
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#no_tasks ⇒ Boolean
Disable the task scheduler. If problematic tasks prevent InfluxDB from starting, use this option to start InfluxDB without scheduling or executing tasks.
Default: false
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#pprof_disabled ⇒ Boolean
Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.
Default: false
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#query_concurrency ⇒ Integer
Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#query_initial_memory_bytes ⇒ Integer
Initial bytes of memory allocated for a query.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#query_max_memory_bytes ⇒ Integer
Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#query_memory_bytes ⇒ Integer
Maximum bytes of memory allowed for a single query. Must be greater or equal to queryInitialMemoryBytes.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#query_queue_size ⇒ Integer
Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#session_length ⇒ Integer
Specifies the Time to Live (TTL) in minutes for newly created user sessions.
Default: 60
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#session_renew_disabled ⇒ Boolean
Disables automatically extending a user’s session TTL on each request. By default, every request sets the session’s expiration time to five minutes from now. When disabled, sessions expire after the specified [session length] and the user is redirected to the login page, even if recently active.
Default: false
[1]: docs.influxdata.com/influxdb/v2/reference/config-options/#session-length
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_cache_max_memory_size ⇒ Integer
Maximum size (in bytes) a shard’s cache can reach before it starts rejecting writes. Must be greater than storageCacheSnapShotMemorySize and lower than instance’s total memory capacity. We recommend setting it to below 15% of the total memory capacity.
Default: 1073741824
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_cache_snapshot_memory_size ⇒ Integer
Size (in bytes) at which the storage engine will snapshot the cache and write it to a TSM file to make more memory available. Must not be greater than storageCacheMaxMemorySize.
Default: 26214400
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_cache_snapshot_write_cold_duration ⇒ Types::Duration
Duration at which the storage engine will snapshot the cache and write it to a new TSM file if the shard hasn’t received writes or deletes.
Default: 10 minutes
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_compact_full_write_cold_duration ⇒ Types::Duration
Duration at which the storage engine will compact all TSM files in a shard if it hasn’t received writes or deletes.
Default: 4 hours
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_compact_throughput_burst ⇒ Integer
Rate limit (in bytes per second) that TSM compactions can write to disk.
Default: 50331648
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_max_concurrent_compactions ⇒ Integer
Maximum number of full and level compactions that can run concurrently. A value of 0 results in 50% of runtime.GOMAXPROCS(0) used at runtime. Any number greater than zero limits compactions to that value. This setting does not apply to cache snapshotting.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_max_index_log_file_size ⇒ Integer
Size (in bytes) at which an index write-ahead log (WAL) file will compact into an index file. Lower sizes will cause log files to be compacted more quickly and result in lower heap usage at the expense of write throughput.
Default: 1048576
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_no_validate_field_size ⇒ Boolean
Skip field size validation on incoming write requests.
Default: false
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_retention_check_interval ⇒ Types::Duration
Interval of retention policy enforcement checks. Must be greater than 0.
Default: 30 minutes
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_series_file_max_concurrent_snapshot_compactions ⇒ Integer
Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_series_id_set_cache_size ⇒ Integer
Size of the internal cache used in the TSI index to store previously calculated series results. Cached results are returned quickly rather than needing to be recalculated when a subsequent query with the same tag key/value predicate is executed. Setting this value to 0 will disable the cache and may decrease query performance.
Default: 100
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_wal_max_concurrent_writes ⇒ Integer
Maximum number writes to the WAL directory to attempt at the same time. Setting this value to 0 results in number of processing units available x2.
Default: 0
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#storage_wal_max_write_delay ⇒ Types::Duration
Maximum amount of time a write request to the WAL directory will wait when the [maximum number of concurrent active writes to the WAL directory has been met]. Set to 0 to disable the timeout.
Default: 10 minutes
[1]: docs.influxdata.com/influxdb/v2/reference/config-options/#storage-wal-max-concurrent-writes
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#tracing_type ⇒ String
Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |
#ui_disabled ⇒ Boolean
Disable the InfluxDB user interface (UI). The UI is enabled by default.
Default: false
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 1022 class InfluxDBv2Parameters < Struct.new( :flux_log_enabled, :log_level, :no_tasks, :query_concurrency, :query_queue_size, :tracing_type, :metrics_disabled, :http_idle_timeout, :http_read_header_timeout, :http_read_timeout, :http_write_timeout, :influxql_max_select_buckets, :influxql_max_select_point, :influxql_max_select_series, :pprof_disabled, :query_initial_memory_bytes, :query_max_memory_bytes, :query_memory_bytes, :session_length, :session_renew_disabled, :storage_cache_max_memory_size, :storage_cache_snapshot_memory_size, :storage_cache_snapshot_write_cold_duration, :storage_compact_full_write_cold_duration, :storage_compact_throughput_burst, :storage_max_concurrent_compactions, :storage_max_index_log_file_size, :storage_no_validate_field_size, :storage_retention_check_interval, :storage_series_file_max_concurrent_snapshot_compactions, :storage_series_id_set_cache_size, :storage_wal_max_concurrent_writes, :storage_wal_max_write_delay, :ui_disabled) SENSITIVE = [] include Aws::Structure end |