Glen Aultman-Bettridge
10/22/2024, 9:11 PMuser
10/22/2024, 9:12 PMwal_keep_size
and max_slot_wal_keep_size
. Here's an example of how you can do this: sql ALTER SYSTEM SET wal_keep_size = '10GB'; ALTER SYSTEM SET max_slot_wal_keep_size = '10GB';
3. Increase sync frequency: If your sync jobs are too far apart, the WAL might be purged before Airbyte has a chance to process it. Try running your sync jobs more frequently. 4. Extend the auto-cancellation timeout: If your sync jobs are taking too long and getting cancelled before they can finish, try extending the auto-cancellation timeout. 5. Recreate the connection: If you're switching from a different PostgreSQL plugin, you might need to recreate the connection in Airbyte. Remember to apply these changes and then try to sync again. If the problem persists, you might want to consider reaching out to the Airbyte community for further assistance. Sources: [Github Issue](https://github.com/airbytehq/airbyte/issues/46571), [Forum Post](https://discuss.airbyte.io/t/2675), [Github Discussion](https://github.com/airbytehq/airbyte/discussions/45096)