RisingWave¶
Installation¶
Connection Parameters¶
Connect using the Database.from_risingwave()
method with parameters:
PARAMETER | DESCRIPTION |
---|---|
host
|
Hostname.
TYPE:
|
user
|
Username.
TYPE:
|
password
|
Password.
TYPE:
|
port
|
Port number. Default is 5432.
TYPE:
|
database
|
Database to connect to.
TYPE:
|
schema
|
RisingWave schema to use. If None, use the default search_path.
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:
|