Vitali Lovich

Results 180 comments of Vitali Lovich

@glommer since right now CI is bitrotted in master, I've rebased this branch onto #680 to verify this PR passes CI. PR is ready for merging but may require a...

NOTE: In CI cargo test doesn't fail so I'm assuming this issue doesn't reproduce there. My CI is running Ubuntu 24.04.2. On my local machine I'm running Arch. I'm guessing...

Interestingly while putting a mutex just around the construction fixes the crash in this particular test case, it does not fix it within my test suite that actually uses the...

Interesting. Enabling the `unsafe_use_unprotected_platform` feature stops my tests from crashing although I obviously don't know if it fixes the problem or just turns into non-crashing UB. Again, this crash only...

I've run into this as well. It's weird to not be able to create the index before there's data - index creation is frequently a DDL operation you do up-front...

Discussed previously in #554. Probably just needs someone to run things under a profiler to figure it out. I know that monoio relies on nightly features (e.g. fast thread local)...

@bryandmc do you know if this impacts disk I/O performance at all or if this is just issues in the net stack?

Can the performance be mitigated by checking if the thread being run on is still the same as the one the span was created on and only if there's a...

@hawkw any tips on how to get started fixing this? Happy to contribute a PR.