Alec Mocatta

Results 38 comments of Alec Mocatta

I'm also seeing this with WASM: there's an undefined reference to `_ZN4core9panicking5panic17he4861068bc6d1d99E` in `__multi3` which causes `wasm-bindgen` to fail with `cannot import from modules ('env') with '--no-modules'`. I see the...

@sadikovi Thanks for your response! Good questions. > schema column names that cannot be struct fields in Rust I haven't implemented this yet but I intend to use the same...

@sadikovi An estimate based on my experimentation so far: 50% of the speedup is from avoiding allocation (and the resulting optimisations the compiler can make; allocation is an optimisation blocker),...

@sunchao I've been on holiday but will PR this next week. I intend to open a JIRA and PR against https://github.com/apache/arrow/tree/master/rust/parquet/src, is that the right thing to do?

My fork is here: https://github.com/alecmocatta/parquet-rs It currently triggers an ICE on usage https://github.com/rust-lang/rust/issues/53443 and much is currently commented out until I finish refactoring. I'll investigate, finish the refactor, clean up...

My similar backtrace from vulkano-examples triangle example: ``` 0 triangle 0x00000001009ec7da alloc_system::platform::_$LT$impl$u20$alloc..allocator..Alloc$u20$for$u20$$RF$$u27$a$u20$alloc_system..System$GT$::oom::h7ba03423480c6435 + 90 (lib.rs:210) 1 triangle 0x00000001009ec778 _$LT$alloc_system..System$u20$as$u20$alloc..allocator..Alloc$GT$::oom::h1cf7c566a518ba1a + 40 (lib.rs:81) 2 triangle 0x00000001009c535c __rde_oom + 44 (lib.rs:126) 3...

I just bumped into this. 42% of my application runtime is consumed by `__rust_realloc` due to the conservative capacity passed to `Vec::with_capacity`. In my use case there's no risk of...

Thank you @yvendruscolo! You're spot on and I would love to see for example Kubernetes usable as a backend with Constellation. I think networking might be a little tricky but...

@harksin `quinn` integrates with `std::future::Future` and `tokio`, whereas `quiche` necessitates an explicit event loop (probably `mio`). I value the former paradigm more. I got the sense that `quinn` is more...