StarRocksDestConn
class StarRocksDestConn(
host: HostSpec,
port: PortSpec = '9030',
credentials: CredentialsSpec,
staging: CloudLocation,
database: DatabaseSpec = 'default',
entity_whitelist: EntityWhitelistSpec | None = None,
conn_cfg: CfgSpec | None = None,
)
Bases: Conn
Categories: destination
StarRocks connection.
Registered on a collection; the runtime resolves it and hands it to
the plugin at run time. Each string field accepts a plain string or
a Secret; the plugin reads parsed values through the _host /
_port / _database getters.
Parameters
parameter
stagingCloudLocationA CloudLocation (S3Location / AzBlobLocation
/ GCSLocation) where parquet is staged before ingest.
parameter
databaseDatabaseSpec (str | Secret)The default database (a StarRocks identifier: a letter
or underscore, then letters, digits and underscores).
Defaults to "default".
parameter
entity_whitelistEntityWhitelistSpec | None (list[str] | None)Optional list of regex patterns narrowing
which tables the connector considers; None (the default)
filters nothing.