Alexander Kapustin

Results 6 comments of Alexander Kapustin

Thank you, @zzzeek In my case it does not work. I found in : https://github.com/sqlalchemy/sqlalchemy/blob/master/lib/sqlalchemy/dialects/postgresql/asyncpg.py#L747 ```python await_only(self.asyncpg.connect(*arg, **kw)) ``` in **kw we does not pass statement_cache_size. If i add: ```python...

Yes, i use this: ```python engine = create_async_engine("postgresql+asyncpg://user:pass@hostname/dbname?prepared_statement_cache_size=0") ```

I try this. But for some reason this is not help. (sometimes an error appears but sometimes not...)

Yes, this is a reason.. Also in [AsyncAdapt_asyncpg_cursor._prepare_and_execute](https://github.com/sqlalchemy/sqlalchemy/blob/master/lib/sqlalchemy/dialects/postgresql/asyncpg.py#L372) We actively use prepared statements for executing queries. In asyncpg, as i can see, for not prepared queries they does not use...

For some new projects maybe a good choice to use async support of `sqlalchemy` [asyncio extension in sqlalchemy](https://docs.sqlalchemy.org/en/14/orm/extensions/asyncio.html?highlight=create_async_engine#synopsis-core) I am thinking about this transition. I think it would be good...

Hi, Maybe we can simply add `sidecar.istio.io/inject="false"` in https://github.com/senthilrch/kube-fledged/blob/master/pkg/images/image_helpers.go#L52 ? I can create pr for this.