Skip to content

Conversation

@eric-maynard
Copy link
Contributor

@eric-maynard eric-maynard commented May 24, 2025

When running regtests or the CLI, we should run ./gradlew regeneratePythonClient in order to run against the most up-to-date Python client.

As part of this change, I've also updated the generator to 7.12 to match what's in the libs.version.toml and regenerated the code managed in github.

Once the automatic generation works as part of CI, we can remove the generated code from the repo altogether. In the future, it can be added to .gitignore.

@github-project-automation github-project-automation bot moved this to PRs In Progress in Basic Kanban Board May 24, 2025
eric-maynard added a commit that referenced this pull request Jun 2, 2025
It looks like this method lost the `prefix` and `namespace` parameters in #1347. They're re-introduced to the spec here, and then I've run:
```
redocly bundle spec/polaris-catalog-service.yaml -o spec/generated/bundled-polaris-catalog-service.yaml
./gradlew regeneratePythonClient
```

Then, some manual reverts:
```
alias gitrevert='git checkout upstream/main --'
gitrevert client/python/.github/workflows/python.yml
gitrevert client/python/.gitlab-ci.yml
gitrevert client/python/pyproject.toml
```

I still hope to automate this process as part of CI soon; see #1675
Copy link
Contributor

@HonahX HonahX left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for making the auto-generation works!

@github-project-automation github-project-automation bot moved this from PRs In Progress to Ready to merge in Basic Kanban Board Jun 4, 2025
@eric-maynard eric-maynard merged commit 3b18e0d into apache:main Jun 4, 2025
9 checks passed
@github-project-automation github-project-automation bot moved this from Ready to merge to Done in Basic Kanban Board Jun 4, 2025
HonahX pushed a commit that referenced this pull request Jun 11, 2025
After #1675, we now generate the Python client on-demand when it's needed by tests or the CLI. With this, we can safely remove the Python client from being tracked in the repo and add its files to .gitignore
snazy added a commit to snazy/polaris that referenced this pull request Jun 13, 2025
* Fix regression test docker setup for purge (apache#1768)

* Use canonical catalog property names in tests (apache#1766)

* In `PolarisPolicyServiceIntegrationTest`
* In `PolarisRestCatalogIntegrationTest`

Following up to apache#1557

* Unblock test `createViewWithCustomMetadataLocation` (apache#1320)

* Add test for invalid custom metadata location

* Add missing properties during table/view creation

* main: Update docker.io/prom/prometheus Docker tag to v3.4.1 (apache#1767)

* Testing: silence a bunch of harmless test warnings (apache#1773)

* `OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended`
* Hibernate Validator cannot instrument static methods (`Hibernate Validator does not support constraints on static methods yet. ...`)
* ForkJoinPool test lifecycle warning
* Couple of split-package warnings

* Add unit test for legacy config lookup (apache#1774)

Following up on apache#1766

* Handle RequestScoped instance injection gracefully for DefaultConfigurationStore (apache#1758)

Although we do a check of !realmContextInstance.isUnsatisfied() it only checks if there is matching bean, however, it doesn't check if the context is active or not. Similarly isResolvable also don't check if the scope is active. Therefore if getConfiguration is called when there is no active scope, it will get Exception like ContextNotActiveException.
This actually fails the TaskExecutor because it runs in a separate thread.

In order to fix the problem, we introduces a new getConfiguration function to handle the background tasks, and also use isResolvable instead of isUnsatisfied to handle ambiguities.

* Restructure the directory and package name for persistence modules (apache#1724)

* Re-add missing parameters to create_table python API (apache#1778)

It looks like this method lost the `prefix` and `namespace` parameters in apache#1347. They're re-introduced to the spec here, and then I've run:
```
redocly bundle spec/polaris-catalog-service.yaml -o spec/generated/bundled-polaris-catalog-service.yaml
./gradlew regeneratePythonClient
```

Then, some manual reverts:
```
alias gitrevert='git checkout upstream/main --'
gitrevert client/python/.github/workflows/python.yml
gitrevert client/python/.gitlab-ci.yml
gitrevert client/python/pyproject.toml
```

I still hope to automate this process as part of CI soon; see apache#1675

* Replace getConfiguration usage with PolarisCallContext to use RealmContext (PART 1) (apache#1780)

* JDBC: Fix getting started config (apache#1781)

Fix typo in the JDBC config for getting started, the config should be max_duration_in_ms instead of max_delay_in_ms

* main: Pin dependencies (apache#1701)

* main: Update dependency pytest to v8 (apache#1710)

* main: Update dependency boto3 to v1.38.28 (apache#1777)

* Run renovatebot only on the main branch (apache#1786)

* INFO: last merged commit a827d26

---------

Co-authored-by: gh-yzou <167037035+gh-yzou@users.noreply.github.com>
Co-authored-by: Dmitri Bourlatchkov <dmitri.bourlatchkov@gmail.com>
Co-authored-by: Liam Bao <liam.zw.bao@gmail.com>
Co-authored-by: Mend Renovate <bot@renovateapp.com>
Co-authored-by: Yufei Gu <yufei@apache.org>
Co-authored-by: Eric Maynard <eric.maynard+oss@snowflake.com>
Co-authored-by: Prashant Singh <35593236+singhpk234@users.noreply.github.com>
Co-authored-by: JB Onofré <jbonofre@apache.org>
snazy added a commit to snazy/polaris that referenced this pull request Jun 13, 2025
* main: Update dependency software.amazon.awssdk:bom to v2.31.54 (apache#1769)

* main: Update dependency org.apache.spark:spark-sql_2.12 to v3.5.6 (apache#1752)

* main: Update docker.io/apache/spark Docker tag to v3.5.6 (apache#1795)

* main: Update dependency org.apache.spark:spark-sql_2.12 to v3.5.6 (apache#1794)

* main: Update apache/spark Docker tag to v3.5.6 (apache#1791)

* feat(cdi): Remove CallContext.close() (apache#1776)

Now that every catalog created by PolarisCallContextCatalogFactory is correctly closed by IcebergCatalogAdapter, we can finally remove the CallContext.close() method and the associated cloaseables group.

This simplification will hopefully pave the way to a more robust handling of request-scoped beans in task executor threads.

* Remove the unused field in CallContextCatalogFactory (apache#1784)

* Test: silence CDS warning from admin tool tests (apache#1800)

* Update ascii banner (apache#1654)

* Don't rotate root's credentials on startup in JdbcMetaStoreManagerFactory (apache#1804)

* Core: Consolidate CallContext with PolarisCallContext part 1(apache#1806)

* Automate regeneration of Python client (apache#1675)

When running regtests or the CLI, we should run `./gradlew regeneratePythonClient` in order to run against the most up-to-date Python client.

As part of this change, I've also updated the generator to 7.12 to match what's in the `libs.version.toml` and regenerated the code managed in github.

Once the automatic generation works as part of CI, we can remove the generated code from the repo altogether. In the future, it can be added to .gitignore.

* Remove deprecated constructor for PolarisCallContext (apache#1813)

After pr apache#1806, the original constructor is marked as deprecated and is not suppose to be used anymore.
This PR removes the usage of the old constructors.

* Remove CallContext.of (apache#1812)

This PR is a follow-up of apache#1806 to remove all usage of CallContext.of() in tests and the method itself

* Remove CallContext.getDiagnostics (apache#1815)

This shall be part of the CallContext cleanup process. `CallContext.getDiagnostics` is never used anywhere

* Turn CallContext.copyOf into an interface instead of static function (apache#1816)

* Refactor getConfiguration to use RealmContext (Part 2) (apache#1783)

* main: Update dependency gradle to v8.14.2 (apache#1820)

* main: Update dependency gradle to v8.14.2

* adjust to Polaris build

---------

Co-authored-by: Dmitri Bourlatchkov <dmitri.bourlatchkov@dremio.com>

* NoSQL: merge-conflict fixes

* Last merged commit: 553b644

---------

Co-authored-by: Mend Renovate <bot@renovateapp.com>
Co-authored-by: Alexandre Dutra <adutra@users.noreply.github.com>
Co-authored-by: Yufei Gu <yufei@apache.org>
Co-authored-by: Scott Teal <s.teal726@gmail.com>
Co-authored-by: Eric Maynard <eric.maynard+oss@snowflake.com>
Co-authored-by: gh-yzou <167037035+gh-yzou@users.noreply.github.com>
Co-authored-by: Honah (Jonas) J. <honahx@apache.org>
Co-authored-by: Dmitri Bourlatchkov <dmitri.bourlatchkov@dremio.com>
snazy added a commit to snazy/polaris that referenced this pull request Nov 20, 2025
* main: Update dependency io.projectreactor.netty:reactor-netty-http to v1.2.7 (apache#1845)

* docs: fix broken 'Polaris Overview' link in README.md (apache#1846)

docs: fix broken 'Polaris Overview' link in README.md

Co-authored-by: Joy Haldar <Joy.Haldar@target.com>

* Update spark client license (apache#1839)

* Update LICENCE (apache#1851)

* Add Yun Zou as the new committer

Co-authored-by: Yufei Gu <yufei.apache.org>

* main: Update docker.io/jaegertracing/all-in-one Docker tag to v1.70.0 (apache#1853)

* main: Update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.34.0 (apache#1850)

* main: Update dependency boto3 to v1.38.34 (apache#1852)

* main: Update dependency org.postgresql:postgresql to v42.7.7 (apache#1859)

* [SPEC] Add base-location keyword for GenericTable API (apache#1543)

* Update LICENSE for binary distributions (apache#1855)

* Add integration tests to Python Client (apache#1856)

* Update JDBC Getting-started example's README.md to use localhost for curl commands (apache#1872)

* Remove PolarisConfiguration.loadConfig (v2) (apache#1858)

* Enhance EclipseLink quickstart (apache#1870)

1. Update the name catalog name used to `quickstart_catalog` from `polaris` to make it consistent
2. Update the name of `eclipselink-trino-1` to `polaris-trino-1`
3. make the polaris server url consistent with using `localhost` to avoid failures

* Remove generated Python client from git tracking (apache#1810)

After apache#1675, we now generate the Python client on-demand when it's needed by tests or the CLI. With this, we can safely remove the Python client from being tracked in the repo and add its files to .gitignore

* Fix telemetry quickstart example for 1.0 release (apache#1873)

* main: Update gradle/actions digest to ac638b0 (apache#1877)

* main: Update dependency boto3 to v1.38.35 (apache#1874)

* Removing star import and adding errorprone rule (apache#1831)

Fixes apache#1100

* NoSQL: merge related changes

* Last merged commit 0faf948

---------

Co-authored-by: Mend Renovate <bot@renovateapp.com>
Co-authored-by: Joy Haldar <joyno.23@gmail.com>
Co-authored-by: Joy Haldar <Joy.Haldar@target.com>
Co-authored-by: gh-yzou <167037035+gh-yzou@users.noreply.github.com>
Co-authored-by: Yufei Gu <yufei@apache.org>
Co-authored-by: Yun Zou <yunzou.colostate@gmail.com>
Co-authored-by: Honah (Jonas) J. <honahx@apache.org>
Co-authored-by: Eric Maynard <eric.maynard+oss@snowflake.com>
Co-authored-by: William Hyun <william@apache.org>
Co-authored-by: gfakbar20 <gfakbar20@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants