Druid¶
Installation¶
Connection URL¶
Connect to Druid by passing a connection URL to the Database
constructor:
Connection Parameters¶
Alternatively, connect using the Database.from_druid()
method with parameters:
PARAMETER | DESCRIPTION |
---|---|
host
|
Hostname or IP address of the Druid broker node.
TYPE:
|
port
|
Port number for the Druid broker node.
TYPE:
|
path
|
Path to the Druid endpoint (if needed).
TYPE:
|
match_schema
|
Regex pattern to filter schemas. Mutually exclusive with match_tables.
TYPE:
|
match_tables
|
Regex pattern to filter tables. Mutually exclusive with match_schema.
TYPE:
|
**kwargs
|
Additional arguments passed to the DBAPI connection call.
TYPE:
|