Ted Mielczarek

Results 181 comments of Ted Mielczarek

It's currently targeted at building Rust crates, but I think it'd be interesting to find out if synchronicity could be used for that: https://github.com/iqlusioninc/synchronicity

Hi there! Thanks for the suggestion! In general, this repository exists purely as a way to utilize the [FullStory Client API](https://developer.fullstory.com/introduction) via an npm package. Because of that, this isn't...

Aside from the API nicety of allowing a `Read` object (which could be nice), the only thing this buys you is lower memory usage by not storing the entire file...

I believe this would also be useful for people using `sccache` in distributed compilation mode, as they could have an exaggerated version of this problem similar to what's described in...

> As this is focusing on the problem of OOM, I'm going to close in favor of #12912 so we keep the conversations in one place. I suppose, although this...

> FWIW, there is a `--no-keep-memory` flag for GNU linker. Haven't tried it but might help before we make some progress on this. I suspect this will make performance much...

It looks like all of these changes are within `op_analysis.rs`, right? If so it seems like we ought to be able to write unit tests for them using the patterns...

If you do want to have more thorough tests using checked-in sample minidumps, you can explore using something like [`sadness-generator`](https://github.com/EmbarkStudios/crash-handling/blob/7b8700d376047c648ca4c3e571a4180c7626b5f4/sadness-generator/src/lib.rs) to crash in very specific ways. I wrote a number...

You'll pretty much never have that info since the stackwalker doesn't load the associated binaries. That's not infeasible to implement, it's just extra work that the system doesn't currently do....

This is probably only a few tweaks away from actually working. the `minidump-processor` crate has [a `debuginfo` feature](https://github.com/rust-minidump/rust-minidump/blob/d235cbbfb73c4f985214d08dee04560d7ea2ae67/minidump-processor/Cargo.toml#L16-L17) which enables its use of [the `wholesym` crate](https://docs.rs/wholesym/latest/wholesym/) internally. That feature *is*...