You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -911,8 +911,14 @@ The memcached default args are removed and should be provided manually. The sett
911
911
| storage.trace.backend | string | `"local"` | The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/tempo/latest/configuration/#storage |
912
912
| storage.trace.block.dedicated_columns | list | `[]` | Lis with dedicated attribute columns (only for vParquet3 or later) |
913
913
| storage.trace.block.version | string | `nil` | The supported block versions are specified here https://grafana.com/docs/tempo/latest/configuration/parquet/ |
914
+
| storage.trace.blocklist_poll | string | `"5m"` | How often to repoll the backend for new blocks |
915
+
| storage.trace.blocklist_poll_concurrency | string | `nil` | Number of blocks to process in parallel during polling. |
916
+
| storage.trace.blocklist_poll_fallback | string | `nil` | fallback to scanning the entire bucket. Set to false to disable this behavior. |
| storage.trace.blocklist_poll_tenant_index_builders | string | `nil` | Maximum number of compactors that should build the tenant index. All other components will download the index. |
914
919
| storage.trace.pool.max_workers | int | `400` | Total number of workers pulling jobs from the queue |
915
920
| storage.trace.pool.queue_depth | int | `20000` | Length of job queue. imporatant for querier as it queues a job for every block it has to search |
921
+
| storage.trace.search.prefetch_trace_count | int | `1000` | Number of traces to prefetch while scanning blocks. Increasing this value can improve trace search performance at the cost of memory. |
# Refers to https://grafana.com/docs/tempo/latest/configuration/#server
@@ -1584,6 +1602,21 @@ storage:
1584
1602
max_workers: 400
1585
1603
# -- Length of job queue. imporatant for querier as it queues a job for every block it has to search
1586
1604
queue_depth: 20000
1605
+
# The supported search are specified here https://grafana.com/docs/tempo/latest/configuration/#search-config
1606
+
search:
1607
+
# -- Number of traces to prefetch while scanning blocks. Increasing this value can improve trace search performance at the cost of memory.
1608
+
prefetch_trace_count: 1000
1609
+
# -- How often to repoll the backend for new blocks
1610
+
blocklist_poll: 5m
1611
+
# -- Number of blocks to process in parallel during polling.
1612
+
blocklist_poll_concurrency: null
1613
+
# -- By default components will pull the blocklist from the tenant index. If that fails the component can
1614
+
# -- fallback to scanning the entire bucket. Set to false to disable this behavior.
1615
+
blocklist_poll_fallback: null
1616
+
# -- Maximum number of compactors that should build the tenant index. All other components will download the index.
1617
+
blocklist_poll_tenant_index_builders: null
1618
+
# -- The oldest allowable tenant index.
1619
+
blocklist_poll_stale_tenant_index: null
1587
1620
# Settings for the Admin client storage backend and buckets. Only valid is enterprise.enabled is true.
1588
1621
admin:
1589
1622
# -- The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/enterprise-traces/latest/configure/reference/#admin_client_config
0 commit comments