We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
after closing #100 and bringing in crate/crate-python#391, we may want to look at SQLAlchemy support for Python asyncio. Currently, trying to invoke the CrateDB driver like postgresql+asyncpg:// croaks like
postgresql+asyncpg://
>>> from sqlalchemy.ext.asyncio import create_async_engine >>> create_async_engine("crate+asyncpg://crate@localhost/test") sqlalchemy.exc.NoSuchModuleError: Can't load plugin: sqlalchemy.dialects:crate.asyncpg
So, the CrateDB dialect will have to be accompanied by a special asyncio mediation layer, like dialects/postgresql/asyncpg.py.
With kind regards, Andreas.
The text was updated successfully, but these errors were encountered:
Couldn't async be implemented with aiohttp so that support for connecting to a cluster instead of a single node would still be available?
Is there a way to connect to Crate from asyncpg so that it will round-robin requests between nodes?
Sorry, something went wrong.
asyncpg
psycopg3
Hi. This patch will add relevant support for asyncpg. It has been lingering for quite some time, we hope to be able to wrap it up soon.
No branches or pull requests
Hi there,
after closing #100 and bringing in crate/crate-python#391, we may want to look at SQLAlchemy support for Python asyncio. Currently, trying to invoke the CrateDB driver like
postgresql+asyncpg://
croaks likeSo, the CrateDB dialect will have to be accompanied by a special asyncio mediation layer, like dialects/postgresql/asyncpg.py.
With kind regards,
Andreas.
The text was updated successfully, but these errors were encountered: