Ishan Anilbhai Koradiya
09/26/2024, 6:52 AMException in thread "main" io.airbyte.workers.workload.exception.DocStoreAccessException: Unable to write output for 71607ba1-c0ac-4799-8049-7f4b90dd50f7_f13c68bc-d22e-46c1-a74a-4d1d5823d7df_0_check
user
09/26/2024, 6:53 AMPoorva
09/26/2024, 6:57 AMuser
09/26/2024, 6:57 AMuser
09/26/2024, 6:58 AMbash docker logs airbyte-server
If you're running Airbyte on Kubernetes, you can use kubectl
to view the logs. Here's an example command provided in one of the GitHub issues: bash kubectl --kubeconfig ~/.airbyte/abctl/abctl.kubeconfig -n airbyte-abctl logs [POD NAME]
Replace [POD NAME]
with the name of the pod you want to view logs for ([source](https://github.com/airbytehq/airbyte/issues/43893)). Please note that the exact command might vary depending on your specific setup and configuration.Poorva
09/26/2024, 6:59 AMuser
09/26/2024, 6:59 AMuser
09/26/2024, 6:59 AMkubectl
command. Here's an example: bash kubectl --kubeconfig ~/.airbyte/abctl/abctl.kubeconfig -n airbyte-abctl logs [POD NAME]
In this command, replace [POD NAME]
with the name of the pod you want to view logs for. This command assumes that you have a kubeconfig file located at ~/.airbyte/abctl/abctl.kubeconfig
and that your Airbyte deployment is running in the airbyte-abctl
namespace. Adjust these values according to your specific setup ([source](https://github.com/airbytehq/airbyte/issues/43893)). To view the list of pods, you can use the following command: bash kubectl --kubeconfig ~/.airbyte/abctl/abctl.kubeconfig -n airbyte-abctl get pods
This will output the names of all pods running in the airbyte-abctl
namespace, which you can then use to view the logs of a specific pod.