Zverev Konstantin

Results 24 comments of Zverev Konstantin
trafficstars

Having `__slots__` only means that you can't add attributes to instances, not class itself . Class object would still have `__dict__.`

[NameSpace ](https://github.com/pola-rs/polars/blob/5bca54b0148b01e08efd88fe40fa31d385990070/py-polars/polars/api.py#L34C1-L34C16) class that wraps plugins is already is a descriptor. And it seems like it's registered on classes in [_create_namespace](https://github.com/pola-rs/polars/blob/5bca54b0148b01e08efd88fe40fa31d385990070/py-polars/polars/api.py#L50C5-L50C22), and that should not interact with `__dict__ `of instances...

Yes. Builtin namespaces, like str, list, etc also good candidates.

Any news on this? Really like to see this in v3-next.

What are possible cause of this? I'm getting this consistently with these peer options ``` let mut result = PeerOptions::new(); result.tcp_keepalive = Some(TcpKeepalive { count: 3, idle: Duration::from_secs(60), interval: Duration::from_secs(20),...

Tried disabling logging and prometheus. Still leaks with auth_query (build on `Possible fix for mem leak` https://github.com/yandex/odyssey/pull/685) Static user configuration is too much hussle for my case. Have to restart...

Not official, but if anyone interested I made this Dockerfile, to be compatible with zalando-postgres operator. Can be used without it too. https://gitlab.com/Object905/zalando-odyssey Sadly, it's slowly leaking memory (seems like...

Same here. First thought that It's happening because of updates to the app (when user tries to load css/js by hashed name of previous version), but since then migrated to...

Facing similar issue. @ming-afk Might I ask how you fixed this?

Since publishing this [gist](https://gist.github.com/Object905/6cafd5e8e56dd60670149296411a407f) I've updated code to be more self-contained, removed dependency on crossbeam and made it work with kube-rs>[0.92.0](https://github.com/kube-rs/kube/releases/tag/0.92.0), because it changed store internals and old version was...