skip to Main Content

My Airbyte docker image installation on Azure VM went fine, but while executing sync from any database , facing this issue
Anyone faced similar?

Failure reason: Something went wrong within the source connector
Source process exited with non-zero exit code 125
platform > readFromSource: source exception
121
io.airbyte.workers.internal.exception.SourceException: Source process exited with non-zero exit code 125
io.airbyte.workers.internal.exception.DestinationException: Destination process exited with non-zero exit code 125
source > docker: Error response from daemon: Range of CPUs is from 0.01 to 1.00, as there are only 1 CPUs available.

2

Answers


  1. Chosen as BEST ANSWER

    Resolution: After ignoring misleading error messages, I looked at docker daemon response

    I spin up other B series VM with 2 vcpus, 8 gb ram and it did solve the problem (Azure B2ms Ubuntu VM)


  2. Apparently, a problem with the configuration of the image in Azure VM. Airbyte proposes guidelines for this issue at https://docs.airbyte.com/deploying-airbyte/on-azure-vm-cloud-shell. Probably you can find your solution there. Keep an eye on what they suggest. Though they say that "The instructions have been tested on a standard DS1 v2 (1 vcpu, 3.5 GiB memory) Microsoft Azure VM with Ubuntu 18.04.", you should try by scaling it up to be sure it will support the workload.

    Note that Airbyte creates additional resources (containers) when new connectors are added in the pipelines. So, it would require to monitor the performance.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search