CassioML / cassio

A framework-agnostic Python library to seamlessly integrate Cassandra with ML/LLM/genAI workloads
Apache License 2.0
103 stars 18 forks source link

Add async methods #132

Closed cbornet closed 8 months ago

cbornet commented 8 months ago

One thing not nice is that a blocking db_setup() is done in BaseTable's constructor. And it is really bad to block in the event loop. So async tables shall be created with skip_provisionning=True atm

cbornet commented 8 months ago

So async tables shall be created with skip_provisionning=True atm

Added is_async param to contructor that will spawn an async task to setup the db.

hemidactylus commented 8 months ago

LGTM