This is not a big deal, but I noticed that hourly ...
# feedback-and-requests
a
This is not a big deal, but I noticed that hourly syncs shifts by a couple of minutes every day. My syncs take more than 10 minutes each, so it's not due to the sync duration (a priori)
u
Hello Anatole, can you access the database of airbyte to get some info to us? I created one sync with 5min and its working fine. You need to
docker exec -ti airbyte psql -U docker airbyte
then run the query
airbyte=# select id, started_at, created_at, updated_at from jobs where "scope" = '<CONNECTION-ID>' order by id asc;
The connection id is possible to get from the URL in the web app accessing the specific connection.
u
Hey Marcos, I will do this. But I believe you are replicating the issue, as you can see your sync should be trigerred every 5 minutes, but it's actually trigerred every 5 minutes and 5 seconds
u
Hey @Anatole Callies here is an example for how we schedule https://docs.airbyte.io/understanding-airbyte/connections#sync-schedules. Isn't it the same for you ?
u
i’ve noticed this behaviour too. I guess what Anatole expected is that if sync started at 200010, the next sync would happen at 200510, 201010, and so on. Currently, it slowly drifts away.