Felix Barnsteiner
Felix Barnsteiner
> I don't think we officially support running two different majors of the stack (7.11 and 8.0 for instance). How does the process look like when doing a rolling upgrade...
I think it makes a lot of sense to populate those fields in the agents and/or the server. But I'm a bit skeptical whether relying on these fields to be...
Isn't that how it is working at the moment? The pool starts empty and gets filled as segments are recycled. But if the total size of the byte arrays of...
Isn't that the same as having no limit at all?
I think it does makes sense to have some kind of limit for this in order to avoid the pool to grow indefinitely. As it is currently implemented, it only...
This problem is most likely a result of a misuse of the `GzipSink`: https://github.com/elastic/apm-agent-java/blob/acf494923fe9e2346876313990565d41fe2aa502/apm-agent-core/src/main/java/co/elastic/apm/report/ApmServerHttpPayloadSender.java#L100-L109 ```java public void writeTo(BufferedSink sink) throws IOException { if (useGzip(payload)) { GzipSink gzipSink = new GzipSink(sink);...
I'm not entirely sure that this is the way it's supposed to work. @swankjesse do you know about best practices around gzipping the content that is written into the sink?...
This is just what I initially did, but that leads to buffering tree times, which leads to a higher consumption of Segments, which leads to the SegmentPool being empty, which...
That's a pitty. Do you know of alternatives which don't require to buy a license if the image is just used in integration tests?
Thanks for the tip. Do I see it right that there is currently no out-of-the-box docker image for Oracle XE that I can just pull from docker hub?