<@U04SE163WC8> I have had the troubleshooting: "ai...
# ask-ai
j
@kapa.ai I have had the troubleshooting: "airbyte/source-facebook-marketing:3.1.0 not found locally. Attempting to pull the image... Image does not exist" How to fix this?
k
The error message "airbyte/source-facebook-marketing:3.1.0 not found locally. Attempting to pull the image... Image does not exist" indicates that the Docker image for the Facebook Marketing source connector is not available locally and cannot be pulled from the repository. Here are some steps you can take to troubleshoot and resolve this issue: 1. Check the Connector Version: Ensure that you are using a valid and existing version of the Facebook Marketing source connector. The error message suggests that version
3.1.0
is not available. You might want to check the [Airbyte documentation](https://docs.airbyte.com/integrations/sources/facebook-marketing#set-up-facebook-marketing-as-a-source-in-airbyte) or the Airbyte GitHub repository for the latest available versions. 2. Update Airbyte: Make sure your Airbyte instance is up to date. Sometimes, updating Airbyte can resolve issues related to missing images. 3. Manually Pull the Image: If the image is available but not being pulled automatically, you can try to pull it manually using Docker. Run the following command in your terminal:
Copy code
sh     docker pull airbyte/source-facebook-marketing:3.1.0
If the image does not exist, you will need to use a different version. 4. Check for Typos: Ensure there are no typos in the image name or version. The correct format should be
airbyte/source-facebook-marketing:<version>
. 5. Review Logs for More Information: Check the Airbyte logs for more detailed error messages that might provide additional context or clues about why the image cannot be found. 6. Consult Airbyte Community or Support: If the issue persists, consider reaching out to the Airbyte community or support for further assistance. You can post your issue on the [Airbyte GitHub Issues page](https://github.com/airbytehq/airbyte/issues) or the [Airbyte forum](https://discuss.airbyte.io/). Here is an example of a similar issue from the Airbyte GitHub repository: - [Issue #26290](https://github.com/airbytehq/airbyte/issues/26290): Source Facebook Marketing: Airbyte Cloud Facebook Marketing Sync Worker fails with "Source didn't exit properly - check the logs!" By following these steps, you should be able to resolve the issue with the missing Docker image for the Facebook Marketing source connector.