Results 16 comments of Harshit Singhai

@DevKazonovic I'm down for it if you want to work together...

This only happens when we query the database inside a for loop... Anyhow, I switched it back to the official clickhouse python driver. Which is synchronous in nature, but gets...

Thanks a lot made. It really helped. It's people like you who make it easier for other developers. Thanks again.

I'm also facing the same issue. Did you find any other alternative ?

I am getting the same problem. It says Request failed with status code 400

I need to load the existing table in memory using `MetaData` ```python engine = create_async_engine(url) metadata = MetaData(bind=engine) my_table = metadata.reflect(only=["harshit_table"]) ``` But I'm getting an error ``` sqlalchemy.exc.NoInspectionAvailable: Inspection...

Update: I got the workaround... ```python engine = create_async_engine(url) def load_table(conn): metadata = MetaData(bind=conn) metadata.reflect(only=["harshit_table"]) harshit_table = Table("harshit_table", metadata, autoload_with=engine) return harshit_table async def async_main(self): async with engine.connect() as conn:...

> you cant bind an async engine to a MetaData object. dont use bound metadata in general. to reflect with asyncio use https://docs.sqlalchemy.org/en/14/orm/extensions/asyncio.html#sqlalchemy.ext.asyncio.AsyncConnection.run_sync : > > ```python > async with...

> you cant bind an async engine to a MetaData object. dont use bound metadata in general. to reflect with asyncio use https://docs.sqlalchemy.org/en/14/orm/extensions/asyncio.html#sqlalchemy.ext.asyncio.AsyncConnection.run_sync : > > ```python > async with...

Hey, Yeah, I missed the parenthesis in `async with async_engine.connect() as conn`. My bad. `async_engine.connect()` is taking around 3-4 sec. Here's my code ```python tic = time.perf_counter() async with engine.connect()...