Skip to content

Commit ab29d8b

Browse files
authored
docs: Move continueWaitTimeout to OrchestratorOptions (#6426)
1 parent 50eea5f commit ab29d8b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/content/Reference/Configuration/Config.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ interface CubejsConfiguration {
7272
}
7373

7474
interface OrchestratorOptions {
75+
continueWaitTimeout: number;
7576
redisPrefix: string;
77+
rollupOnlyMode: boolean;
7678
queryCacheOptions: {
7779
refreshKeyRenewalThreshold: number;
7880
backgroundRenew: boolean;
@@ -87,7 +89,6 @@ interface OrchestratorOptions {
8789

8890
interface QueueOptions {
8991
concurrency: number;
90-
continueWaitTimeout: number;
9192
executionTimeout: number;
9293
orphanedTimeout: number;
9394
heartBeatInterval: number;
@@ -690,6 +691,7 @@ You can pass this object to set advanced options for Cube Query Orchestrator.
690691

691692
| Option | Description | Default Value |
692693
| -------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
694+
| continueWaitTimeout | Long polling interval | `5` |
693695
| redisPrefix | Prefix to be set an all Redis keys | `STANDALONE` |
694696
| rollupOnlyMode | When enabled, an error will be thrown if a query can't be served from a pre-aggregation (rollup) | `false` |
695697
| queryCacheOptions | Query cache options for DB queries | `{}` |
@@ -773,7 +775,6 @@ Timeout and interval options' values are in seconds.
773775
| Option | Description | Default Value |
774776
| ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
775777
| concurrency | Maximum number of queries to be processed simultaneosly. For drivers with connection pool `CUBEJS_DB_MAX_POOL` should be adjusted accordingly. Typically pool size should be at least twice of total concurrency among all queues. | `2` |
776-
| continueWaitTimeout | Long polling interval | `5` |
777778
| executionTimeout | Total timeout of single query | `600` |
778779
| orphanedTimeout | Query will be marked for cancellation if not requested during this period. | `120` |
779780
| heartBeatInterval | Worker heartbeat interval. If `4*heartBeatInterval` time passes without reporting, the query gets cancelled. | `30` |

0 commit comments

Comments
 (0)