Anders Øen Fylling
Anders Øen Fylling
Same issue here. Sway on arch linux. However, so far QT_QPA_PLATFORM=xcb seems to fix it.
Any way to set any limits on this? We have a 5MiB file that trigger OOM error with 14GiB of ram. The allocations seems to be related to rasterizing and...
How does coroutine support matter here?
coroutine scheduling happens within a single thread. Given this is CPU bound, you won't be able to execute any other coroutines at the time. Meaning, it will actually harm your...
Just tested this locally with poetry and python v3.10.10. `poetry init` go with defaults `poetry add [email protected]` `poetry add [email protected]` create main.py containing: ```python from pydantic import BaseModel, Field class...
This is the same issue as described in the thread. While it works at runtime, mypy complains. The message above fails when using the mypy plugin and without the mypy...
I'm successfully using aiohttp as well, and we saw a change from around 40rps to 130rps improvement. Ofcourse our service does more than just query weaviate, but it really helps...
Any reason you don't commit to a pure async implementation, and then have a lightweight sync wrapper around it?
It's documented in code that it's optimized for up till 34m entries. It would be very interesting to see how it scales compared to other algs, and how increasing the...
Just want to throw in my two cents as I use [mise](https://github.com/jdx/mise) for my python related work. Python can be a little messy imo and it seems to be doing...