Hey <@U04SE163WC8> i am facing this error while ad...
# ask-ai
i
Hey @kapa.ai i am facing this error while adding a google sheets connector in kubernetes setup
Exception 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
u
Hmm, I don't know enough to give you a confident answer yet. The error you're facing seems to be related to writing output for a specific process in Airbyte, but the knowledge sources provided do not contain specific information about this error or how to resolve it. However, there are some general troubleshooting steps you can take: 1. Check the logs for more detailed error messages. This might give you more context about what's going wrong. 2. Make sure your Kubernetes setup is correctly configured. There are some known issues with certain characters in image names, for example, that can prevent containers from being created ([source](https://discuss.airbyte.io/t/646)). 3. Ensure that you have the necessary permissions to write to the location specified in the error message. For more specific help, I would recommend reaching out to the Airbyte community on their [discussion forum](https://discuss.airbyte.io/) or checking the [Airbyte documentation](https://docs.airbyte.com/).
p
@kapa.ai Where are connector logs located?
u
A message from kapa.ai
u
In Airbyte, logs for connectors can be found in the server logs. If you're running Airbyte locally, you can use Docker to view these logs. Here's how you can do it:
Copy code
bash 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:
Copy code
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.
p
@kapa.ai where are connector logs located in Kubernetes environment?
u
A message from kapa.ai
u
In a Kubernetes environment, you can view the logs of a specific pod (which could be running a connector) using the
kubectl
command. Here's an example:
Copy code
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:
Copy code
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.