File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -19,22 +19,3 @@ Yes. Cube Cloud provides free
1919and a set of [ paid tiers] ( https://cube.dev/pricing ) . Each tier comes with
2020additional features, however, you're welcome to use development instances
2121indefinitely if they satisfy your needs.
22-
23- ## What is the difference between CUBEJS_CONCURRENCY and CUBEJS_DB_MAX_POOL?
24-
25- ` CUBEJS_CONCURRENCY ` specifies the maximum number of queries that can be
26- executed concurrently on your source database. This variable should reflect the
27- limitations of your database, and will help limit the number of queries that are
28- sent from cube.
29-
30- ` CUBEJS_DB_MAX_POOL ` allows you to set a maximum number of connection pools to
31- your database. This only applies to databases that use connection pooling
32- (Postgresql, Redshift, Clickhouse) and is not applicable to databases without it
33- (BigQuery, Snowflake). The concurrency limit specified in ` CUBEJS_CONCURRENCY `
34- will supersede the number of connections if it is lower.
35-
36- For example, if your database has a hard concurrency limit of 10 that cannot be
37- changed, but you wish to raise the concurrency limit to 50 you would first set
38- ` CUBEJS_CONCURRENCY=50 ` and ` CUBEJS_DB_MAX_POOL=5 ` or higher. Note that some
39- data warehouses (BigQuery, Snowflake) do not use connection pooling so this
40- parameter is not applicable.
You can’t perform that action at this time.
0 commit comments