-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing the merge scheduler to schedule merge operation in a global
- Loading branch information
1 parent
a3cad8f
commit 6f83d6f
Showing
38 changed files
with
941 additions
and
630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
131 changes: 66 additions & 65 deletions
131
quickwit/quickwit-config/resources/tests/config/quickwit.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,71 @@ | ||
# Comments are supported. | ||
{ | ||
"version": "0.7", | ||
"cluster_id": "quickwit-cluster", | ||
"node_id": "my-unique-node-id", | ||
"enabled_services": [ | ||
"janitor", | ||
"metastore" | ||
], | ||
"listen_address": "0.0.0.0", | ||
"advertise_address": "172.0.0.12", | ||
"gossip_listen_port": 2222, | ||
"grpc_listen_port": 3333, | ||
"peer_seeds": [ | ||
"quickwit-searcher-0.local", | ||
"quickwit-searcher-1.local" | ||
], | ||
"data_dir": "/opt/quickwit/data", | ||
"metastore_uri": "postgres://username:password@host:port/db", | ||
"default_index_root_uri": "s3://quickwit-indexes", | ||
"rest": { | ||
"listen_port": 1111, | ||
"extra_headers": { | ||
"x-header-1": "header-value-1", | ||
"x-header-2": "header-value-2" | ||
} | ||
}, | ||
"grpc": { | ||
"max_message_size": "10 MB" | ||
}, | ||
"storage": { | ||
"azure": { | ||
"account": "quickwit-dev" | ||
}, | ||
"s3": { | ||
"flavor": "gcs", | ||
"endpoint": "http://localhost:4566", | ||
"force_path_style_access": true | ||
} | ||
}, | ||
"metastore": { | ||
"postgres": { | ||
"max_num_connections": 12 | ||
} | ||
}, | ||
"indexer": { | ||
"enable_otlp_endpoint": true, | ||
"split_store_max_num_bytes": "1T", | ||
"split_store_max_num_splits": 10000, | ||
"max_concurrent_split_uploads": 8, | ||
"max_merge_write_throughput": "100mb" | ||
}, | ||
"ingest_api": { | ||
"replication_factor": 2 | ||
}, | ||
"searcher": { | ||
"aggregation_memory_limit": "1G", | ||
"aggregation_bucket_limit": 500000, | ||
"fast_field_cache_capacity": "10G", | ||
"split_footer_cache_capacity": "1G", | ||
"max_num_concurrent_split_streams": 120, | ||
"max_num_concurrent_split_searches": 150 | ||
"version": "0.7", | ||
"cluster_id": "quickwit-cluster", | ||
"node_id": "my-unique-node-id", | ||
"enabled_services": [ | ||
"janitor", | ||
"metastore" | ||
], | ||
"listen_address": "0.0.0.0", | ||
"advertise_address": "172.0.0.12", | ||
"gossip_listen_port": 2222, | ||
"grpc_listen_port": 3333, | ||
"peer_seeds": [ | ||
"quickwit-searcher-0.local", | ||
"quickwit-searcher-1.local" | ||
], | ||
"data_dir": "/opt/quickwit/data", | ||
"metastore_uri": "postgres://username:password@host:port/db", | ||
"default_index_root_uri": "s3://quickwit-indexes", | ||
"rest": { | ||
"listen_port": 1111, | ||
"extra_headers": { | ||
"x-header-1": "header-value-1", | ||
"x-header-2": "header-value-2" | ||
} | ||
}, | ||
"grpc": { | ||
"max_message_size": "10 MB" | ||
}, | ||
"storage": { | ||
"azure": { | ||
"account": "quickwit-dev" | ||
}, | ||
"jaeger": { | ||
"enable_endpoint": true, | ||
"lookback_period_hours": 24, | ||
"max_trace_duration_secs": 600, | ||
"max_fetch_spans": 1000 | ||
"s3": { | ||
"flavor": "gcs", | ||
"endpoint": "http://localhost:4566", | ||
"force_path_style_access": true | ||
} | ||
}, | ||
"metastore": { | ||
"postgres": { | ||
"max_num_connections": 12 | ||
} | ||
}, | ||
"indexer": { | ||
"enable_otlp_endpoint": true, | ||
"split_store_max_num_bytes": "1T", | ||
"split_store_max_num_splits": 10000, | ||
"max_concurrent_split_uploads": 8, | ||
"max_merge_write_throughput": "100mb", | ||
"merge_concurrency": 2 | ||
}, | ||
"ingest_api": { | ||
"replication_factor": 2 | ||
}, | ||
"searcher": { | ||
"aggregation_memory_limit": "1G", | ||
"aggregation_bucket_limit": 500000, | ||
"fast_field_cache_capacity": "10G", | ||
"split_footer_cache_capacity": "1G", | ||
"max_num_concurrent_split_streams": 120, | ||
"max_num_concurrent_split_searches": 150 | ||
}, | ||
"jaeger": { | ||
"enable_endpoint": true, | ||
"lookback_period_hours": 24, | ||
"max_trace_duration_secs": 600, | ||
"max_fetch_spans": 1000 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.