@@ -21,6 +21,9 @@ The secret key used to sign and verify JWTs. Generated on project scaffold with
2121| --------------- | ---------------------- | --------------------- |
2222| A valid string | N/A | N/A |
2323
24+ See also the [ ` check_auth ` configuration
25+ option] ( /reference/configuration/config#check_auth ) .
26+
2427## ` CUBEJS_APP `
2528
2629An application ID used to uniquely identify the Cube deployment. Can be
@@ -96,6 +99,9 @@ The cache and queue driver to use for the Cube deployment.
9699| --------------------- | ---------------------- | --------------------- |
97100| ` cubestore ` , ` memory ` | ` memory ` | ` cubestore ` |
98101
102+ It can be also set using the [ ` cache_and_queue_driver ` configuration
103+ option] ( /reference/configuration/config#cache_and_queue_driver ) .
104+
99105## ` CUBEJS_CONCURRENCY `
100106
101107The number of concurrent connections each query queue has to the database.
@@ -104,6 +110,9 @@ The number of concurrent connections each query queue has to the database.
104110| --------------- | ------------------------------------------- | ------------------------------------------- |
105111| A valid number | [ See database-specific page] [ ref-config-db ] | [ See database-specific page] [ ref-config-db ] |
106112
113+ It can be also set as ` concurrency ` in the [ ` orchestrator_options ` configuration
114+ option] ( /reference/configuration/config#orchestrator_options ) .
115+
107116## ` CUBEJS_CUBESTORE_HOST `
108117
109118The hostname of the Cube Store deployment
@@ -726,6 +735,9 @@ endpoints.
726735| ------------------------------------------------------------------------------ | ---------------------- | --------------------- |
727736| A comma-delimited string with any combination of [ API scopes] [ ref-rest-scopes ] | ` meta,data,graphql ` | ` meta,data,graphql ` |
728737
738+ See also the [ ` context_to_api_scopes ` configuration
739+ option] ( /reference/configuration/config#context_to_api_scopes ) .
740+
729741## ` CUBEJS_DEV_MODE `
730742
731743If ` true ` , enables [ development mode] ( /product/configuration#development-mode ) .
@@ -790,6 +802,9 @@ Enables [JSON Web Key (JWK)][ietf-jwk-ref]-based authentication in Cube.
790802| --------------------------------- | ---------------------- | --------------------- |
791803| A valid URL to a JSON Web Key Set | N/A | N/A |
792804
805+ It can be also set as ` jwkUrl ` in the [ ` jwt ` configuration
806+ option] ( /reference/configuration/config#jwt ) .
807+
793808## ` CUBEJS_JWT_ALGS `
794809
795810[ Any supported algorithm for decoding JWTs] [ gh-jsonwebtoken-algs ] .
@@ -798,6 +813,9 @@ Enables [JSON Web Key (JWK)][ietf-jwk-ref]-based authentication in Cube.
798813| ---------------- | ---------------------- | --------------------- |
799814| ` HS256 ` , ` RS256 ` | N/A | N/A |
800815
816+ It can be also set as ` algorithms ` in the [ ` jwt ` configuration
817+ option] ( /reference/configuration/config#jwt ) .
818+
801819## ` CUBEJS_JWT_AUDIENCE `
802820
803821An audience value which will be used to enforce the [ ` aud ` claim from inbound
@@ -807,6 +825,9 @@ JWTs][ietf-jwt-ref-aud].
807825| ------------------- | ---------------------- | --------------------- |
808826| A valid ` aud ` claim | N/A | N/A |
809827
828+ It can be also set as ` audience ` in the [ ` jwt ` configuration
829+ option] ( /reference/configuration/config#jwt ) .
830+
810831## ` CUBEJS_JWT_CLAIMS_NAMESPACE `
811832
812833A namespace within the decoded JWT under which any custom claims can be found.
@@ -815,6 +836,9 @@ A namespace within the decoded JWT under which any custom claims can be found.
815836| --------------- | ---------------------- | --------------------- |
816837| A valid string | N/A | N/A |
817838
839+ It can be also set as ` claimsNamespace ` in the [ ` jwt ` configuration
840+ option] ( /reference/configuration/config#jwt ) .
841+
818842## ` CUBEJS_JWT_ISSUER `
819843
820844An issuer value which will be used to enforce the [ ` iss ` claim from inbound
@@ -824,6 +848,9 @@ JWTs][ietf-jwt-ref-iss].
824848| ------------------- | ---------------------- | --------------------- |
825849| A valid ` iss ` claim | N/A | N/A |
826850
851+ It can be also set as ` issuer ` in the [ ` jwt ` configuration
852+ option] ( /reference/configuration/config#jwt ) .
853+
827854## ` CUBEJS_JWT_KEY `
828855
829856The secret key used to sign and verify JWTs. Similar to
@@ -833,6 +860,9 @@ The secret key used to sign and verify JWTs. Similar to
833860| --------------- | ---------------------- | --------------------- |
834861| A valid string | N/A | N/A |
835862
863+ It can be also set as ` key ` in the [ ` jwt ` configuration
864+ option] ( /reference/configuration/config#jwt ) .
865+
836866## ` CUBEJS_JWT_SUBJECT `
837867
838868A subject value which will be used to enforce the [ ` sub ` claim from inbound
@@ -842,6 +872,9 @@ JWTs][ietf-jwt-ref-sub].
842872| ------------------- | ---------------------- | --------------------- |
843873| A valid ` sub ` claim | N/A | N/A |
844874
875+ It can be also set as ` subject ` in the [ ` jwt ` configuration
876+ option] ( /reference/configuration/config#jwt ) .
877+
845878## ` CUBEJS_LOG_LEVEL `
846879
847880The logging level for Cube.
@@ -850,6 +883,9 @@ The logging level for Cube.
850883| -------------------------------- | ---------------------- | --------------------- |
851884| ` error ` , ` info ` , ` trace ` , ` warn ` | ` warn ` | ` warn ` |
852885
886+ See also ` CUBESTORE_LOG_LEVEL ` .
887+ See also the [ ` logger ` configuration option] ( /reference/configuration/config#logger ) .
888+
853889## ` CUBEJS_MAX_PARTITIONS_PER_CUBE `
854890
855891The maximum number of partitions each pre-aggregation in a cube can use.
@@ -891,6 +927,9 @@ to use for storing pre-aggregations.
891927| --------------- | ---------------------- | ----------------------- |
892928| A valid string | ` dev_pre_aggregations ` | ` prod_pre_aggregations ` |
893929
930+ It can be also set using the [ ` pre_aggregations_schema ` configuration
931+ option] ( /reference/configuration/config#pre_aggregations_schema ) .
932+
894933## ` CUBEJS_REFRESH_WORKER `
895934
896935If ` true ` , this instance of Cube will ** only** refresh pre-aggregations.
@@ -909,6 +948,9 @@ mode](/product/caching/using-pre-aggregations#rollup-only-mode) for details.
909948| --------------- | ---------------------- | --------------------- |
910949| ` true ` , ` false ` | ` false ` | ` false ` |
911950
951+ It can be also set using the [ ` orchestrator_options.rollupOnlyMode ` configuration
952+ option] ( /reference/configuration/config#orchestrator_options ) .
953+
912954## ` CUBEJS_SCHEDULED_REFRESH_CONCURRENCY `
913955
914956How many pre-aggregations refresh worker will build in parallel. Please note
@@ -928,6 +970,9 @@ for][ref-config-sched-refresh-timer].
928970| --------------------------------------------------------- | ---------------------- | --------------------- |
929971| [ A valid timezone from the tz database] [ wiki-tz-database ] | N/A | N/A |
930972
973+ It can be also set using the [ ` scheduled_refresh_time_zones ` configuration
974+ option] ( /reference/configuration/config#scheduled_refresh_time_zones ) .
975+
931976## ` CUBEJS_SCHEMA_PATH `
932977
933978The path where Cube loads data models from.
@@ -936,38 +981,49 @@ The path where Cube loads data models from.
936981| ---------------------------------------- | ---------------------- | --------------------- |
937982| A valid path containing Cube data models | ` model ` | ` model ` |
938983
939- <WarningBox >
984+ <InfoBox >
940985
941986Until v0.35, the default value was ` schema ` .
942987
943- </WarningBox >
988+ </InfoBox >
944989
945- { /* TODO: https://cubedevinc.atlassian.net/browse/CC-3095 */ }
990+ It can be also set using the [ ` schema_path ` configuration
991+ option] ( /reference/configuration/config#schema_path ) .
946992
947- ## ` CUBEJS_SQL_PASSWORD `
993+ ## ` CUBEJS_SQL_USER `
948994
949- A password required to access the [ SQL API] [ ref-sql-api ] .
995+ A username required to access the [ SQL API] [ ref-sql-api ] .
950996
951997| Possible Values | Default in Development | Default in Production |
952998| --------------- | ---------------------- | --------------------- |
953999| A valid string | N/A | N/A |
9541000
955- ## ` CUBEJS_SQL_SUPER_USER `
1001+ See also the [ ` check_sql_auth ` configuration
1002+ option] ( /reference/configuration/config#check_sql_auth ) .
1003+
1004+ ## ` CUBEJS_SQL_PASSWORD `
9561005
957- A name of specific user who will be allowed to change security context .
1006+ A password required to access the [ SQL API ] [ ref-sql-api ] .
9581007
9591008| Possible Values | Default in Development | Default in Production |
9601009| --------------- | ---------------------- | --------------------- |
9611010| A valid string | N/A | N/A |
9621011
963- ## ` CUBEJS_SQL_USER `
1012+ See also the [ ` check_sql_auth ` configuration
1013+ option] ( /reference/configuration/config#check_sql_auth ) .
9641014
965- A username required to access the [ SQL API] [ ref-sql-api ] .
1015+ ## ` CUBEJS_SQL_SUPER_USER `
1016+
1017+ A name of specific user who will be allowed to change the user during the SQL API
1018+ session.
9661019
9671020| Possible Values | Default in Development | Default in Production |
9681021| --------------- | ---------------------- | --------------------- |
9691022| A valid string | N/A | N/A |
9701023
1024+ See also the [ ` can_switch_sql_user ` configuration
1025+ option] ( /reference/configuration/config#can_switch_sql_user ) .
1026+
9711027## ` CUBEJS_ALLOW_UNGROUPED_WITHOUT_PRIMARY_KEY `
9721028
9731029If ` true ` , disables the primary key inclusion check for
@@ -1228,6 +1284,8 @@ The logging level for Cube Store.
12281284| ----------------------------------------- | ---------------------- | --------------------- |
12291285| ` error ` , ` warn ` , ` info ` , ` debug ` , ` trace ` | ` error ` | ` error ` |
12301286
1287+ See also ` CUBEJS_LOG_LEVEL ` .
1288+
12311289## ` CUBESTORE_META_ADDR `
12321290
12331291The address/port pair for the Cube Store ** router** node in the cluster.
0 commit comments