-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Log full vacuum info #26633
Log full vacuum info #26633
Conversation
Before Merging a Connector Pull RequestWow! What a great pull request you have here! 🎉 To merge this PR, ensure the following has been done/considered for each connector added or updated:
If the checklist is complete, but the CI check is failing,
|
/test connector=connectors/source-postgres
Build PassedTest summary info:
|
/connector-performance connector=connectors/source-postgres Note: The following
|
Affected Connector ReportNOTE
|
Connector | Version | Changelog | Publish |
---|---|---|---|
source-alloydb |
2.0.28 |
✅ | ✅ |
source-alloydb-strict-encrypt |
2.0.28 |
🔵 (ignored) |
🔵 (ignored) |
source-postgres-strict-encrypt |
2.0.31 |
🔵 (ignored) |
🔵 (ignored) |
- See "Actionable Items" below for how to resolve warnings and errors.
✅ Destinations (0)
Connector | Version | Changelog | Publish |
---|
- See "Actionable Items" below for how to resolve warnings and errors.
✅ Other Modules (0)
Actionable Items
(click to expand)
Category | Status | Actionable Item |
---|---|---|
Version | ❌ mismatch |
The version of the connector is different from its normal variant. Please bump the version of the connector. |
⚠ doc not found |
The connector does not seem to have a documentation file. This can be normal (e.g. basic connector like source-jdbc is not published or documented). Please double-check to make sure that it is not a bug. |
|
Changelog | ⚠ doc not found |
The connector does not seem to have a documentation file. This can be normal (e.g. basic connector like source-jdbc is not published or documented). Please double-check to make sure that it is not a bug. |
❌ changelog missing |
There is no chnagelog for the current version of the connector. If you are the author of the current version, please add a changelog. | |
Publish | ⚠ not in seed |
The connector is not in the cloud or oss registry, so its publication status cannot be checked. This can be normal (e.g. some connectors are cloud-specific, and only listed in the cloud seed file). Please double-check to make sure that you have added a metadata.yaml file and the expected registries are enabled. |
...ource-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresQueryUtils.java
Outdated
Show resolved
Hide resolved
...ource-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresQueryUtils.java
Outdated
Show resolved
Hide resolved
...ource-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresQueryUtils.java
Show resolved
Hide resolved
* Log full vacuum info * sanity * commit change to force CI check * improve queries * Improve warning * bump version and release note
What
This change logs before syncing the result of 2 queries that will allow us to get information about whether a full vacuum of the table is currently running or ran.
How
Performs two queries showing information about currently running full vacuum and also system information that allows gauging whether a full sync ran in between source-postgres attempts (relation filename).
See tech spec for more information.
🚨 User Impact 🚨
This is only adding logging.