my local airbyte isn't starting the sync, my logs ...
# ask-ai
r
my local airbyte isn't starting the sync, my logs are just full of
Copy code
024-05-28 01:03:35 destination > 2024-05-28 01:03:35 INFO i.a.c.i.d.b.BufferManager(printQueueInfo):118 - [ASYNC QUEUE INFO] Global: max: 296.96 MB, allocated: 10 MB (10.0 MB), % used: 0.03367428551701215 | State Manager memory usage: Allocated: 10 MB, Used: 0 bytes, percentage Used 0.000000
2024-05-28 01:03:35 destination > 2024-05-28 01:03:35 INFO i.a.c.i.d.FlushWorkers(printWorkerInfo):146 - [ASYNC WORKER INFO] Pool queue size: 0, Active threads: 0
2024-05-28 01:04:35 destination > 2024-05-28 01:04:35 INFO i.a.c.i.d.FlushWorkers(printWorkerInfo):146 - [ASYNC WORKER INFO] Pool queue size: 0, Active threads: 0
2024-05-28 01:04:35 destination > 2024-05-28 01:04:35 INFO i.a.c.i.d.b.BufferManager(printQueueInfo):118 - [ASYNC QUEUE INFO] Global: max: 296.96 MB, allocated: 10 MB (10.0 MB), % used: 0.03367428551701215 | State Manager memory usage: Allocated: 10 MB, Used: 0 bytes, percentage Used 0.000000
2024-05-28 01:05:35 destination > 2024-05-28 01:05:35 INFO i.a.c.i.d.FlushWorkers(printWorkerInfo):146 - [ASYNC WORKER INFO] Pool queue size: 0, Active threads: 0
2024-05-28 01:05:35 destination > 2024-05-28 01:05:35 INFO i.a.c.i.d.b.BufferManager(printQueueInfo):118 - [ASYNC QUEUE INFO] Global: max: 296.96 MB, allocated: 10 MB (10.0 MB), % used: 0.03367428551701215 | State Manager memory usage: Allocated: 10 MB, Used: 0 bytes, percentage Used 0.000000
2024-05-28 01:06:35 destination > 2024-05-28 01:06:35 INFO i.a.c.i.d.b.BufferManager(printQueueInfo):118 - [ASYNC QUEUE INFO] Global: max: 296.96 MB, allocated: 10 MB (10.0 MB), % used: 0.03367428551701215 | State Manager memory usage: Allocated: 10 MB, Used: 0 bytes, percentage Used 0.000000
2024-05-28 01:06:35 destination > 2024-05-28 01:06:35 INFO i.a.c.i.d.FlushWorkers(printWorkerInfo):146 - [ASYNC WORKER INFO] Pool queue size: 0, Active threads: 0
2024-05-28 01:07:35 destination > 2024-05-28 01:07:35 INFO i.a.c.i.d.FlushWorkers(printWorkerInfo):146 - [ASYNC WORKER INFO] Pool queue size: 0, Active threads: 0
2024-05-28 01:07:35 destination > 2024-05-28 01:07:35 INFO i.a.c.i.d.b.BufferManager(printQueueInfo):118 - [ASYNC QUEUE INFO] Global: max: 296.96 MB, allocated: 10 MB (10.0 MB), % used: 0.03367428551701215 | State Manager memory usage: Allocated: 10 MB, Used: 0 bytes, percentage Used 0.000000
2024-05-28 01:08:35 destination > 2024-05-28 01:08:35 INFO i.a.c.i.d.b.BufferManager(printQueueInfo):118 - [ASYNC QUEUE INFO] Global: max: 296.96 MB, allocated: 10 MB (10.0 MB), % used: 0.03367428551701215 | State Manager memory usage: Allocated: 10 MB, Used: 0 bytes, percentage Used 0.000000
k
Hmm, I don't know enough to give you a confident answer yet. However, it seems like your Airbyte instance is emitting a lot of logs related to buffer management and worker information, but not actually performing any sync operations. Based on the provided logs, it looks like the system is not utilizing the allocated memory and there are no active threads in the worker pool. This could indicate a configuration issue or a problem with the connection setup. Here are a few steps you can take to troubleshoot the issue: 1. Check Connection Configuration: Ensure that the source and destination configurations are correct. Verify that the credentials and connection details are accurate. 2. Review Airbyte Logs: Look for any error messages or warnings in the Airbyte logs that might indicate what is going wrong. The logs you provided are informational, but there might be other logs that provide more insight. 3. Increase Log Level: If the current logs are not providing enough information, you can increase the log level to
DEBUG
to get more detailed logs. This might help in identifying the root cause. 4. Resource Allocation: Ensure that your local environment has enough resources (CPU, memory) allocated to Airbyte. Sometimes, insufficient resources can cause the system to behave unexpectedly. 5. Update Airbyte: Make sure you are using the latest version of Airbyte. Sometimes, bugs are fixed in newer releases that might resolve your issue. 6. Consult Documentation: Refer to the [Airbyte documentation](https://docs.airbyte.com/) for any specific configuration or setup instructions that you might have missed. If none of these steps resolve the issue, you might want to reach out to the Airbyte community or support for further assistance. For more detailed troubleshooting, you can refer to the [Airbyte GitHub Issues](https://github.com/airbytehq/airbyte/issues) to see if others have encountered similar problems and how they resolved them.