Franco Bocci
Franco Bocci
> Thank you for proposing this feature, @franco-bocci ! Adding index sounds valuable for the large scale use case of the model registry. However, one concern is the migration effort...
Hey! Sure. From my side, this are the next steps: 1) add this index to our DB 2) compare CPU usage before and after adding the index 3) sharing the...
Hey! Apologies for the long delay. It was a simple change, but as DB migrations can go wrong, this went stale as I had to focus on other things. We...
I was having this same issue. ```python from snowflake.connector import connect as snowflake_connect with snowflake_connect(**self.credentials) as conn: cursor = conn.cursor().execute(query) return cursor.fetch_pandas_all() ``` handling it like this solve the issue...