I can see on MySQL connector docu site: <https://d...
# ask-ai
w
I can see on MySQL connector docu site: https://docs.airbyte.com/integrations/sources/mysql?_gl=1*b61l25*_gcl_au*ODM4MTc3OTU0LjE3Mjk1MTEyNTc that MySQL is already available along with pyairbyte. However when I am trying to use it in get_source method (source-mysql) I am getting following error: airbyte.exceptions.AirbyteConnectorNotPyPiPublishedError: AirbyteConnectorNotPyPiPublishedError: Connector found, but not published to PyPI. Is MySQL available for pyAirbyte? If yes which pip url to use? How to resolve this issue?
u
Yes, MySQL is available for PyAirbyte. However, to use it, you need to ensure that PyPi publishing is enabled for the MySQL connector. This is done by setting
remoteRegistries.pypi.enabled
to
true
in the
metadata.yaml
file of the connector. This is to ensure that all connectors can be published to PyPi and can be used in PyAirbyte [[source](https://docs.airbyte.com/contributing-to-airbyte/resources/qa-checks#python-connectors-must-have-pypi-publishing-enabled)]. However, please note that currently no automated publishing will occur. The
remoteRegistries
property allows you to configure how a connector should be published to registries like Pypi. The
packageName
property of the
pypi
section is the name of the installable package in the PyPi registry. If not specified, all remote registry configurations are disabled by default [[source](https://docs.airbyte.com/connector-development/connector-metadata-file#remoteregistries)]. If you continue to face issues, it might be helpful to check the MySQL troubleshooting guide provided by Airbyte [[source](https://docs.airbyte.com/integrations/sources/mysql#limitations--troubleshooting)].
w
@kapa.ai Could you please elaborate a liitle bit more how to configure pyairbyte to use MySQL source-mysql connector?
u
I'm sorry, but the provided knowledge sources do not contain specific information on how to configure the PyAirbyte client to use the MySQL source-mysql connector. I recommend checking the official PyAirbyte and Airbyte documentation or the Airbyte GitHub repository for more detailed instructions.