-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Make delegating BigQueryMetastore just a SparkCatalog #520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe pull request refactors the Changes
Suggested reviewers
Poem
Warning Review ran into problems🔥 ProblemsGitHub Actions and Pipeline Checks: Resource not accessible by integration - https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository. Please grant the required permissions to the CodeRabbit GitHub App under the organization or repository settings. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
cloud_gcp/src/test/scala/ai/chronon/integrations/cloud_gcp/BigQueryCatalogTest.scala (1)
44-44
: Consider removing commented-out code
This line is commented out. If not needed, remove it for clarity.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro (Legacy)
📒 Files selected for processing (2)
cloud_gcp/src/main/scala/ai/chronon/integrations/cloud_gcp/DelegatingBigQueryMetastoreCatalog.scala
(3 hunks)cloud_gcp/src/test/scala/ai/chronon/integrations/cloud_gcp/BigQueryCatalogTest.scala
(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (4)
- GitHub Check: scala_compile_fmt_fix
- GitHub Check: non_spark_tests
- GitHub Check: non_spark_tests
- GitHub Check: enforce_triggered_workflows
🔇 Additional comments (3)
cloud_gcp/src/test/scala/ai/chronon/integrations/cloud_gcp/BigQueryCatalogTest.scala (1)
98-98
: Confirm new table reference
Ensure "data.checkouts" is correct and accessible in this environment.cloud_gcp/src/main/scala/ai/chronon/integrations/cloud_gcp/DelegatingBigQueryMetastoreCatalog.scala (2)
81-81
: Catalog interface extension looks correct
Replacing CatalogExtension with TableCatalog + SupportsNamespaces + FunctionCatalog aligns with Spark best practices.
162-162
: Throwing NoSuchTableException
Ensure callers handle this exception to avoid unexpected runtime errors.
Co-authored-by: Thomas Chow <[email protected]> Co-authored-by: Thomas Chow <[email protected]>
946efe6
to
1973531
Compare
tested on Etsy |
Co-authored-by: Thomas Chow <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
cloud_gcp/src/main/scala/ai/chronon/integrations/cloud_gcp/DelegatingBigQueryMetastoreCatalog.scala (2)
67-80
: Update class documentation.Documentation still references fallback behavior that's been removed.
162-162
: Fix typo in error message."Tgable" should be "Table".
- .getOrElse(throw new NoSuchTableException(f"Tgable: ${ident} not found in bigquery catalog.")) + .getOrElse(throw new NoSuchTableException(f"Table: ${ident} not found in bigquery catalog."))
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro (Legacy)
📒 Files selected for processing (1)
cloud_gcp/src/main/scala/ai/chronon/integrations/cloud_gcp/DelegatingBigQueryMetastoreCatalog.scala
(3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: non_spark_tests
- GitHub Check: non_spark_tests
- GitHub Check: scala_compile_fmt_fix
🔇 Additional comments (2)
cloud_gcp/src/main/scala/ai/chronon/integrations/cloud_gcp/DelegatingBigQueryMetastoreCatalog.scala (2)
81-81
: Interface change aligned with PR objective.Implementing specific catalog interfaces directly rather than extending CatalogExtension properly refactors this into a standalone catalog.
23-23
: Necessary import for new error handling.
## Summary - Do not use the `DelegatingBigQueryMetastore` as a session catalog, just have it be a custom catalog. This will change the following configuration set From: ```bash spark.sql.catalog.spark_catalog.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.spark_catalog.gcp_location: "us" spark.sql.catalog.spark_catalog.gcp_project: "etsy-zipline-dev" spark.sql.catalog.spark_catalog.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.spark_catalog: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.spark_catalog.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "etsy-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" ``` to: ```bash spark.sql.defaultCatalog: "default_iceberg" spark.sql.catalog.default_iceberg: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.catalog-impl: "org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.io-impl: "org.apache.iceberg.io.ResolvingFileIO" spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "etsy-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" spark.sql.catalog.default_bigquery: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" ``` ## Checklist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved internal table processing by restructuring class integrations and enhancing error messaging when a table isn’t found. - **Tests** - Updated integration settings and adjusted reference parameters to ensure validations remain aligned with the new catalog implementation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> <!-- av pr metadata This information is embedded by the av CLI when creating PRs to track the status of stacks when using Aviator. Please do not delete or edit this section of the PR. ``` {"parent":"main","parentHead":"","trunk":"main"} ``` --> --------- Co-authored-by: Thomas Chow <[email protected]>
## Summary - Do not use the `DelegatingBigQueryMetastore` as a session catalog, just have it be a custom catalog. This will change the following configuration set From: ```bash spark.sql.catalog.spark_catalog.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.spark_catalog.gcp_location: "us" spark.sql.catalog.spark_catalog.gcp_project: "etsy-zipline-dev" spark.sql.catalog.spark_catalog.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.spark_catalog: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.spark_catalog.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "etsy-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" ``` to: ```bash spark.sql.defaultCatalog: "default_iceberg" spark.sql.catalog.default_iceberg: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.catalog-impl: "org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.io-impl: "org.apache.iceberg.io.ResolvingFileIO" spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "etsy-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" spark.sql.catalog.default_bigquery: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" ``` ## Checklist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved internal table processing by restructuring class integrations and enhancing error messaging when a table isn’t found. - **Tests** - Updated integration settings and adjusted reference parameters to ensure validations remain aligned with the new catalog implementation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> <!-- av pr metadata This information is embedded by the av CLI when creating PRs to track the status of stacks when using Aviator. Please do not delete or edit this section of the PR. ``` {"parent":"main","parentHead":"","trunk":"main"} ``` --> --------- Co-authored-by: Thomas Chow <[email protected]>
## Summary - Do not use the `DelegatingBigQueryMetastore` as a session catalog, just have it be a custom catalog. This will change the following configuration set From: ```bash spark.sql.catalog.spark_catalog.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.spark_catalog.gcp_location: "us" spark.sql.catalog.spark_catalog.gcp_project: "etsy-zipline-dev" spark.sql.catalog.spark_catalog.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.spark_catalog: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.spark_catalog.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "etsy-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" ``` to: ```bash spark.sql.defaultCatalog: "default_iceberg" spark.sql.catalog.default_iceberg: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.catalog-impl: "org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.io-impl: "org.apache.iceberg.io.ResolvingFileIO" spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-etsy/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "etsy-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" spark.sql.catalog.default_bigquery: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" ``` ## Checklist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved internal table processing by restructuring class integrations and enhancing error messaging when a table isn’t found. - **Tests** - Updated integration settings and adjusted reference parameters to ensure validations remain aligned with the new catalog implementation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> <!-- av pr metadata This information is embedded by the av CLI when creating PRs to track the status of stacks when using Aviator. Please do not delete or edit this section of the PR. ``` {"parent":"main","parentHead":"","trunk":"main"} ``` --> --------- Co-authored-by: Thomas Chow <[email protected]>
## Summary - Do not use the `DelegatingBigQueryMetastore` as a session catalog, just have it be a custom catalog. This will change the following configuration set From: ```bash spark.sql.catalog.spark_catalog.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.spark_catalog.gcp_location: "us" spark.sql.catalog.spark_catalog.gcp_project: "our clients-zipline-dev" spark.sql.catalog.spark_catalog.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.spark_catalog: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.spark_catalog.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "our clients-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" ``` to: ```bash spark.sql.defaultCatalog: "default_iceberg" spark.sql.catalog.default_iceberg: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.catalog-impl: "org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.io-impl: "org.apache.iceberg.io.ResolvingFileIO" spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "our clients-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" spark.sql.catalog.default_bigquery: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" ``` ## Checklist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved internal table processing by restructuring class integrations and enhancing error messaging when a table isn’t found. - **Tests** - Updated integration settings and adjusted reference parameters to ensure validations remain aligned with the new catalog implementation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> <!-- av pr metadata This information is embedded by the av CLI when creating PRs to track the status of stacks when using Aviator. Please do not delete or edit this section of the PR. ``` {"parent":"main","parentHead":"","trunk":"main"} ``` --> --------- Co-authored-by: Thomas Chow <[email protected]>
## Summary - Do not use the `DelegatingBigQueryMetastore` as a session catalog, just have it be a custom catalog. This will change the following configuration set From: ```bash spark.sql.catalog.spark_catalog.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.spark_catalog.gcp_location: "us" spark.sql.catalog.spark_catalog.gcp_project: "our clients-zipline-dev" spark.sql.catalog.spark_catalog.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.spark_catalog: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.spark_catalog.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "our clients-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" ``` to: ```bash spark.sql.defaultCatalog: "default_iceberg" spark.sql.catalog.default_iceberg: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.catalog-impl: "org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.io-impl: "org.apache.iceberg.io.ResolvingFileIO" spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "our clients-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" spark.sql.catalog.default_bigquery: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" ``` ## Checklist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved internal table processing by restructuring class integrations and enhancing error messaging when a table isn’t found. - **Tests** - Updated integration settings and adjusted reference parameters to ensure validations remain aligned with the new catalog implementation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> <!-- av pr metadata This information is embedded by the av CLI when creating PRs to track the status of stacks when using Aviator. Please do not delete or edit this section of the PR. ``` {"parent":"main","parentHead":"","trunk":"main"} ``` --> --------- Co-authored-by: Thomas Chow <[email protected]>
## Summary - Do not use the `DelegatingBigQueryMetastore` as a session catalog, just have it be a custom catalog. This will change the following configuration set From: ```bash spark.sql.catalog.spark_catalog.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.spark_catalog.gcp_location: "us" spark.sql.catalog.spark_catalog.gcp_project: "our clients-zipline-dev" spark.sql.catalog.spark_catalog.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.spark_catalog: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.spark_catalog.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg: ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.catalog-impl: org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog spark.sql.catalog.default_iceberg.io-impl: org.apache.iceberg.io.ResolvingFileIO spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "our clients-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" ``` to: ```bash spark.sql.defaultCatalog: "default_iceberg" spark.sql.catalog.default_iceberg: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.catalog-impl: "org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog" spark.sql.catalog.default_iceberg.io-impl: "org.apache.iceberg.io.ResolvingFileIO" spark.sql.catalog.default_iceberg.warehouse: "gs://zipline-warehouse-our clients/data/tables/" spark.sql.catalog.default_iceberg.gcp_location: "us" spark.sql.catalog.default_iceberg.gcp_project: "our clients-zipline-dev" spark.sql.defaultUrlStreamHandlerFactory.enabled: "false" spark.kryo.registrator: "ai.chronon.integrations.cloud_gcp.ChrononIcebergKryoRegistrator" spark.sql.catalog.default_bigquery: "ai.chronon.integrations.cloud_gcp.DelegatingBigQueryMetastoreCatalog" ``` ## Cheour clientslist - [ ] Added Unit Tests - [ ] Covered by existing CI - [ ] Integration tested - [ ] Documentation update <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved internal table processing by restructuring class integrations and enhancing error messaging when a table isn’t found. - **Tests** - Updated integration settings and adjusted reference parameters to ensure validations remain aligned with the new catalog implementation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> <!-- av pr metadata This information is embedded by the av CLI when creating PRs to traour clients the status of staour clientss when using Aviator. Please do not delete or edit this section of the PR. ``` {"parent":"main","parentHead":"","trunk":"main"} ``` --> --------- Co-authored-by: Thomas Chow <[email protected]>
Summary
DelegatingBigQueryMetastore
as a session catalog, just have it be a custom catalog.This will change the following configuration set
From:
to:
Checklist
Summary by CodeRabbit