Back to Cube

Druid

docs/content/product/configuration/data-sources/druid.mdx

1.6.431.8 KB
Original Source

Druid

<CommunitySupportedDriver dataSource="Druid" />

Prerequisites

  • The URL for the Druid database
  • The username/password for the Druid database server

Setup

Manual

Add the following to a .env file in your Cube project:

dotenv
CUBEJS_DB_TYPE=druid
CUBEJS_DB_URL=https://my.druid.host:8082
CUBEJS_DB_USER=druid
CUBEJS_DB_PASS=**********

Environment Variables

Environment VariableDescriptionPossible ValuesRequired
<EnvVar>CUBEJS_DB_URL</EnvVar>The URL for a databaseA valid database URL for Druid
<EnvVar>CUBEJS_DB_USER</EnvVar>The username used to connect to the databaseA valid database username
<EnvVar>CUBEJS_DB_PASS</EnvVar>The password used to connect to the databaseA valid database password
<EnvVar>CUBEJS_DB_MAX_POOL</EnvVar>The maximum number of concurrent database connections to pool. Default is 8A valid number
<EnvVar>CUBEJS_CONCURRENCY</EnvVar>The number of concurrent queries to the data sourceA valid number

SSL

Cube does not require any additional configuration to enable SSL as Druid connections are made over HTTPS.