BigQuery Configuration¶
fallback_stores¶
List of fallback store names to search when features are not found in the current store.
Type: list[str]
hash_algorithm¶
Hash algorithm for versioning. If None, uses store's default.
Type: metaxy.versioning.types.HashAlgorithm | None
versioning_engine¶
Which versioning engine to use: 'auto' (prefer native), 'native', or 'polars'.
Type: Literal['auto', 'native', 'polars'] | Default: "auto"
connection_string¶
Ibis connection string (e.g., 'clickhouse://host:9000/db').
Type: str | None
connection_params¶
Backend-specific connection parameters.
Type: dict[str, Any | None
table_prefix¶
Optional prefix for all table names.
Type: str | None
auto_create_tables¶
If True, create tables on open. For development/testing only.
Type: bool | None
project_id¶
Google Cloud project ID containing the dataset.
Type: str | None
dataset_id¶
BigQuery dataset name for storing metadata tables.
Type: str | None
credentials_path¶
Path to service account JSON file.
Type: str | None
credentials¶
Google Cloud credentials object.
Type: Optional[Any]
location¶
Default location for BigQuery resources (e.g., 'US', 'EU').
Type: str | None