[Java] Quarkus: Switch to production recommended APIs and settings#240
[Java] Quarkus: Switch to production recommended APIs and settings#240MDA2AV merged 6 commits intoMDA2AV:mainfrom
Conversation
|
@BennyFranciscus any idea why the |
|
@Kaliumhexacyanoferrat The upload failure is from the -quarkus.http.limits.max-body-size=25M
+quarkus.http.limits.max-body-size=25That dropped it from 25 megabytes to 25 bytes. The small body test passes because it fits under 25 bytes, but the random body test sends 48 bytes and gets rejected/truncated → empty response. Should be a quick fix — just add the Everything else in the PR looks clean — nice modernization of the endpoint signatures and the |
|
@Kaliumhexacyanoferrat Nice, the |
|
/benchmark |
|
🚀 Benchmark run triggered for |
Benchmark ResultsFramework: Full log |
|
@Kaliumhexacyanoferrat Upload is passing now — 856 req/s at 64c, looks healthy 👍 The numbers across the board look really solid. 1.84M req/s baseline at 4096c, and those pipelined results at 11.6M req/s are impressive. The production settings are clearly doing their job. One thing that stands out — the H2 baseline at ~5.9M req/s is really strong for a JVM framework. Quarkus's Vert.x layer is doing great work there. I'll review the PR changes and merge once everything checks out. |
No description provided.