Alec Mocatta

Results 38 comments of Alec Mocatta

A good starting point might be the below in conjunction with `tc qdisc add dev lo root netem delay 5ms 10ms 25% distribution normal loss 5% duplicate 5% reorder 40%...

The helpers here unfortunately break amadeus on stable. Ideally they impl `serde_closure::traits::FnMut` (which work on stable) rather than `std::ops::FnMut` (which don't yet). Implementing that is currently pretty rough https://github.com/constellation-rs/amadeus/blob/7f071aac9ae05a80c499ab3f1b24e9b69fc8ac6c/amadeus-serde/src/json.rs#L45-L51 I've...

> it would mean all adapter operations for parallel streams would have to change to using serde closures to support the change Oh right, I see the issue. Yes agreed...

Hi Mahmut and thanks for the issue! Apologies I’m on my phone on holiday this week but I’ll try my best to respond. > * There is no standalone parquet...

I’m glad you’ve got it working! FWIW for the schema you wrote before I would also expect the following to work: #[derive(Data, Debug, Clone)] pub struct Event { pub event_id:...

Thanks for checking out the project @alexkreidler! Totally agree, Amadeus could really do with some user-oriented docs. And some docs, period :) I've just got back from holiday and have...

#80 fixed most of the fallout from #51, so `type_length_limit` no longer needs upping and compile times are back to bearable.

Thanks for the heads up @XVilka!

Related issue I posted to the cargo repo https://github.com/rust-lang/cargo/issues/10673

Serializing a trait object without boxing it is possible, see here for an example: https://github.com/alecmocatta/serde_traitobject/blob/d1a59ffa47f8945976cafb1f86ed9703dd96acac/tests/test.rs#L77-L81 Though that doesn't work for deserializing, which does need to create a Box.