diff --git a/frameworks/helidon-production/README.md b/frameworks/helidon-production/README.md index bf9eb1239..19f403ab5 100644 --- a/frameworks/helidon-production/README.md +++ b/frameworks/helidon-production/README.md @@ -13,6 +13,7 @@ The current subscribed benchmark profiles are: - `latency-10k` - `pipelined` - `limited-conn` +- `async` - `json-comp` - `json-tls` - `static-tls` @@ -30,7 +31,7 @@ The current subscribed benchmark profiles are: Profiles not currently supported here: -- application profiles: `async`, `fortunes` +- application profiles: `fortunes` - HTTP/3: `baseline-h3`, `static-h3` - composed deployments: `gateway-64`, `gateway-h3`, `production-stack` @@ -58,4 +59,10 @@ That means the implementation is benchmark-contract correct, but it does not follow the async-driver recommendation literally. This is an intentional tradeoff for the current Helidon/Níma production entry. +## `async` uses virtual threads + Helidon WebServer is designed for Java Virtual Threads and optimized for blocking operations. + +The `async` delay handler uses `Thread.sleep` on Helidon's request virtual +thread. The virtual thread is suspended for the requested delay without +occupying its carrier thread. diff --git a/frameworks/helidon-production/meta.json b/frameworks/helidon-production/meta.json index 47c6507f1..b5f623598 100644 --- a/frameworks/helidon-production/meta.json +++ b/frameworks/helidon-production/meta.json @@ -17,6 +17,7 @@ "baseline", "latency-1m", "latency-10k", "pipelined", "limited-conn", + "async", "json-comp", "json-tls", "static-tls", diff --git a/frameworks/helidon-production/src/main/java/com/httparena/BaselineHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/BaselineHandler.java index 5f5aa1aaa..ac5a301ff 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/BaselineHandler.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/BaselineHandler.java @@ -7,13 +7,11 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; class BaselineHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_TEXT_PLAIN); UriQuery query = req.query(); diff --git a/frameworks/helidon-production/src/main/java/com/httparena/BaselinePostHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/BaselinePostHandler.java index 5c23ffc7a..fb6f6fd24 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/BaselinePostHandler.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/BaselinePostHandler.java @@ -8,13 +8,11 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; class BaselinePostHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_TEXT_PLAIN); UriQuery query = req.query(); diff --git a/frameworks/helidon-production/src/main/java/com/httparena/DbHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/DbHandler.java index 94e7bc7f6..f04f53ffc 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/DbHandler.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/DbHandler.java @@ -18,7 +18,6 @@ import com.zaxxer.hikari.HikariConfig; import com.zaxxer.hikari.HikariDataSource; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_JSON; class DbHandler implements Handler { @@ -47,8 +46,6 @@ class DbHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); - if (!databaseConfigured) { // if not configured, fail (maybe local invocation, or manual command line invocation) res.status(Status.INTERNAL_SERVER_ERROR_500) @@ -56,7 +53,6 @@ public void handle(ServerRequest req, ServerResponse res) { return; } - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_JSON); HikariDataSource dataSource = database(); diff --git a/frameworks/helidon-production/src/main/java/com/httparena/DelayHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/DelayHandler.java new file mode 100644 index 000000000..73352ec42 --- /dev/null +++ b/frameworks/helidon-production/src/main/java/com/httparena/DelayHandler.java @@ -0,0 +1,21 @@ +package com.httparena; + +import java.nio.charset.StandardCharsets; + +import io.helidon.webserver.http.Handler; +import io.helidon.webserver.http.ServerRequest; +import io.helidon.webserver.http.ServerResponse; + +import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; + +final class DelayHandler implements Handler { + @Override + public void handle(ServerRequest req, ServerResponse res) throws InterruptedException { + int delay = Integer.parseInt(req.path().pathParameters().get("ms")); + + Thread.sleep(delay); + + res.header(CONTENT_TYPE_TEXT_PLAIN); + res.send(Integer.toString(delay).getBytes(StandardCharsets.US_ASCII)); + } +} diff --git a/frameworks/helidon-production/src/main/java/com/httparena/EchoHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/EchoHandler.java index 98cded526..e62ecaeaa 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/EchoHandler.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/EchoHandler.java @@ -7,12 +7,9 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; - class EchoHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header("Content-Type", "application/octet-stream"); // Collected: the response needs a Content-Length, and a chunked diff --git a/frameworks/helidon-production/src/main/java/com/httparena/JsonHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/JsonHandler.java index 8185be5fc..2fe846801 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/JsonHandler.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/JsonHandler.java @@ -12,7 +12,6 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_JSON; class JsonHandler implements Handler { @@ -24,7 +23,6 @@ class JsonHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_JSON); int requestedCount = req.path().pathParameters().first("count") diff --git a/frameworks/helidon-production/src/main/java/com/httparena/Main.java b/frameworks/helidon-production/src/main/java/com/httparena/Main.java index a287e9c95..38f22f209 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/Main.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/Main.java @@ -1,17 +1,12 @@ package com.httparena; import io.helidon.config.Config; -import io.helidon.http.Header; -import io.helidon.http.HeaderNames; -import io.helidon.http.HeaderValues; import io.helidon.logging.common.LogConfig; import io.helidon.webserver.WebServer; import io.helidon.webserver.grpc.GrpcRouting; import io.helidon.webserver.websocket.WsRouting; public final class Main { - static final Header SERVER_HEADER = HeaderValues.createCached(HeaderNames.SERVER, "helidon"); - static { LogConfig.initClass(); } @@ -37,6 +32,7 @@ public static void main(String[] args) throws Exception { builder.routing(httpRouting -> httpRouting .get("/pipeline", new PipelineHandler()) .get("/baseline11", baselineHandler) + .get("/delay/{ms}", new DelayHandler()) .get("/json/{count}", jsonHandler) .get("/json", jsonHandler) .post("/baseline11", new BaselinePostHandler()) diff --git a/frameworks/helidon-production/src/main/java/com/httparena/PipelineHandler.java b/frameworks/helidon-production/src/main/java/com/httparena/PipelineHandler.java index f8a32cdd3..913657f3a 100644 --- a/frameworks/helidon-production/src/main/java/com/httparena/PipelineHandler.java +++ b/frameworks/helidon-production/src/main/java/com/httparena/PipelineHandler.java @@ -9,7 +9,6 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; class PipelineHandler implements Handler { @@ -18,7 +17,6 @@ class PipelineHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_TEXT_PLAIN); res.header(CONTENT_LENGTH); res.send(RESPONSE); diff --git a/frameworks/helidon-tuned/README.md b/frameworks/helidon-tuned/README.md index d73dd6680..dca11e8b7 100644 --- a/frameworks/helidon-tuned/README.md +++ b/frameworks/helidon-tuned/README.md @@ -13,6 +13,7 @@ The current subscribed benchmark profiles are: - `latency-10k` - `pipelined` - `limited-conn` +- `async` - `json-comp` - `json-tls` - `static-tls` @@ -30,7 +31,7 @@ The current subscribed benchmark profiles are: Profiles not currently supported here: -- application profiles: `async`, `fortunes` +- application profiles: `fortunes` - HTTP/3: `baseline-h3`, `static-h3` - composed deployments: `gateway-64`, `gateway-h3`, `production-stack` @@ -56,6 +57,9 @@ HTTP/2 framing, pseudo-header, and connection-header validation remains enabled. This benchmark-specific setting applies only to `helidon-tuned`; `helidon-production` retains the standard validation configuration. +The `h1-tls` listener also enables `TCP_NODELAY` for the `json-tls`, +`static-tls`, and `8gbit` profiles. + # Divergence from benchmark guidance ## `async-db` uses JDBC + HikariCP @@ -68,4 +72,10 @@ That means the implementation is benchmark-contract correct, but it does not follow the async-driver recommendation literally. This is an intentional tradeoff for the current Helidon/Níma tuned entry. +## `async` uses virtual threads + Helidon WebServer is designed for Java Virtual Threads and optimized for blocking operations. + +The `async` delay handler uses `Thread.sleep` on Helidon's request virtual +thread. The virtual thread is suspended for the requested delay without +occupying its carrier thread. diff --git a/frameworks/helidon-tuned/meta.json b/frameworks/helidon-tuned/meta.json index 52e28d5a2..972e0cb7d 100644 --- a/frameworks/helidon-tuned/meta.json +++ b/frameworks/helidon-tuned/meta.json @@ -17,6 +17,7 @@ "baseline", "latency-1m", "latency-10k", "pipelined", "limited-conn", + "async", "json-comp", "json-tls", "static-tls", diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java index 5f5aa1aaa..ac5a301ff 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselineHandler.java @@ -7,13 +7,11 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; class BaselineHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_TEXT_PLAIN); UriQuery query = req.query(); diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java index 5c23ffc7a..fb6f6fd24 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/BaselinePostHandler.java @@ -8,13 +8,11 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; class BaselinePostHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_TEXT_PLAIN); UriQuery query = req.query(); diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java index 94e7bc7f6..f04f53ffc 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/DbHandler.java @@ -18,7 +18,6 @@ import com.zaxxer.hikari.HikariConfig; import com.zaxxer.hikari.HikariDataSource; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_JSON; class DbHandler implements Handler { @@ -47,8 +46,6 @@ class DbHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); - if (!databaseConfigured) { // if not configured, fail (maybe local invocation, or manual command line invocation) res.status(Status.INTERNAL_SERVER_ERROR_500) @@ -56,7 +53,6 @@ public void handle(ServerRequest req, ServerResponse res) { return; } - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_JSON); HikariDataSource dataSource = database(); diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/DelayHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/DelayHandler.java new file mode 100644 index 000000000..73352ec42 --- /dev/null +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/DelayHandler.java @@ -0,0 +1,21 @@ +package com.httparena; + +import java.nio.charset.StandardCharsets; + +import io.helidon.webserver.http.Handler; +import io.helidon.webserver.http.ServerRequest; +import io.helidon.webserver.http.ServerResponse; + +import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; + +final class DelayHandler implements Handler { + @Override + public void handle(ServerRequest req, ServerResponse res) throws InterruptedException { + int delay = Integer.parseInt(req.path().pathParameters().get("ms")); + + Thread.sleep(delay); + + res.header(CONTENT_TYPE_TEXT_PLAIN); + res.send(Integer.toString(delay).getBytes(StandardCharsets.US_ASCII)); + } +} diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/EchoHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/EchoHandler.java index 98cded526..e62ecaeaa 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/EchoHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/EchoHandler.java @@ -7,12 +7,9 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; - class EchoHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header("Content-Type", "application/octet-stream"); // Collected: the response needs a Content-Length, and a chunked diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java index 06ed1d41b..fb2c31a16 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/JsonHandler.java @@ -19,7 +19,6 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_JSON; class JsonHandler implements Handler { @@ -37,7 +36,6 @@ class JsonHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_JSON); int requestedCount = req.path().pathParameters().first("count") diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java b/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java index 2845d5b02..f6f1055c0 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/Main.java @@ -1,17 +1,12 @@ package com.httparena; import io.helidon.config.Config; -import io.helidon.http.Header; -import io.helidon.http.HeaderNames; -import io.helidon.http.HeaderValues; import io.helidon.logging.common.LogConfig; import io.helidon.webserver.WebServer; import io.helidon.webserver.grpc.GrpcRouting; import io.helidon.webserver.websocket.WsRouting; public final class Main { - static final Header SERVER_HEADER = HeaderValues.createCached(HeaderNames.SERVER, "helidon"); - static { LogConfig.initClass(); } @@ -38,6 +33,7 @@ public static void main(String[] args) throws Exception { builder.routing(httpRouting -> httpRouting .get("/pipeline", new PipelineHandler()) .get("/baseline11", baselineHandler) + .get("/delay/{ms}", new DelayHandler()) .get("/json/{count}", jsonHandler) .get("/json", jsonHandler) .get("/static/{filename}", staticHandler) diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java index f8a32cdd3..913657f3a 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/PipelineHandler.java @@ -9,7 +9,6 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; import static io.helidon.http.HeaderValues.CONTENT_TYPE_TEXT_PLAIN; class PipelineHandler implements Handler { @@ -18,7 +17,6 @@ class PipelineHandler implements Handler { @Override public void handle(ServerRequest req, ServerResponse res) { - res.header(SERVER_HEADER); res.header(CONTENT_TYPE_TEXT_PLAIN); res.header(CONTENT_LENGTH); res.send(RESPONSE); diff --git a/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java b/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java index 2b2665486..ac931e44a 100644 --- a/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java +++ b/frameworks/helidon-tuned/src/main/java/com/httparena/StaticHandler.java @@ -14,8 +14,6 @@ import io.helidon.webserver.http.ServerRequest; import io.helidon.webserver.http.ServerResponse; -import static com.httparena.Main.SERVER_HEADER; - class StaticHandler implements Handler { private static final Header VARY_ACCEPT_ENCODING = HeaderValues.createCached(HeaderNames.VARY, HeaderNames.ACCEPT_ENCODING_NAME); @@ -51,12 +49,10 @@ public void handle(ServerRequest req, ServerResponse res) { Path rawPath = resolveStaticPath(filename); if (rawPath == null || !Files.isRegularFile(rawPath)) { res.status(Status.NOT_FOUND_404) - .header(SERVER_HEADER) .send(); return; } - res.header(SERVER_HEADER); res.header(VARY_ACCEPT_ENCODING); res.header(contentType(filename)); @@ -84,7 +80,6 @@ public void handle(ServerRequest req, ServerResponse res) { res.send(Files.readAllBytes(rawPath)); } catch (IOException e) { res.status(Status.INTERNAL_SERVER_ERROR_500) - .header(SERVER_HEADER) .send(); } } diff --git a/frameworks/helidon-tuned/src/main/resources/application.yaml b/frameworks/helidon-tuned/src/main/resources/application.yaml index 91e455934..be772df3c 100644 --- a/frameworks/helidon-tuned/src/main/resources/application.yaml +++ b/frameworks/helidon-tuned/src/main/resources/application.yaml @@ -58,6 +58,7 @@ server: connection-options: read-timeout: PT0S connect-timeout: PT0S + tcp-no-delay: true # benchmark requires http/1.1 only on this port protocols-discover-services: false protocols: diff --git a/site/data/results/helidon-production.json b/site/data/results/helidon-production.json index e56ed8f68..cb0a4dc0f 100644 --- a/site/data/results/helidon-production.json +++ b/site/data/results/helidon-production.json @@ -4,44 +4,64 @@ "8gbit-512": { "framework": "helidon-production", "language": "Java", - "rps": 49346, - "avg_latency": "161.8us", - "p99_latency": "1839.0us", - "cpu": "707.5%", - "memory": "2.6GiB", + "rps": 49289, + "avg_latency": "157.3us", + "p99_latency": "795.0us", + "cpu": "682.2%", + "memory": "2.2GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "513.20MB/s", - "input_bw": "481.89MB/s", + "bandwidth": "511.77MB/s", + "input_bw": "481.34MB/s", "reconnects": 0, - "status_2xx": 246829, + "status_2xx": 246562, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 33685609, - "cpu_per_req_us": 136.4735, + "cpu_usec": 32404228, + "cpu_per_req_us": 131.4243, "target_rate": 50000, - "rate_ratio": 0.9869, - "p99_9_latency": "7806.0us" + "rate_ratio": 0.9858, + "p99_9_latency": "10756.0us" + }, + "async-32000": { + "framework": "helidon-production", + "language": "Java", + "rps": 278709, + "avg_latency": "60.34ms", + "p99_latency": "73.80ms", + "cpu": "5344.3%", + "memory": "2.2GiB", + "connections": 32000, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "33.75MB/s", + "input_bw": "12.76MB/s", + "reconnects": 0, + "status_2xx": 2787094, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 }, "async-db-1024": { "framework": "helidon-production", "language": "Java", - "rps": 67288, - "avg_latency": "14.44ms", + "rps": 65105, + "avg_latency": "14.66ms", "p99_latency": "42.20ms", - "cpu": "1823.2%", - "memory": "2.3GiB", + "cpu": "1837.0%", + "memory": "2.6GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "263.16MB/s", - "input_bw": "4.49MB/s", - "reconnects": 26507, - "status_2xx": 672886, + "bandwidth": "254.57MB/s", + "input_bw": "4.35MB/s", + "reconnects": 25618, + "status_2xx": 651056, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -49,19 +69,19 @@ "baseline-4096": { "framework": "helidon-production", "language": "Java", - "rps": 1587298, - "avg_latency": "2.37ms", - "p99_latency": "6.89ms", - "cpu": "6023.5%", - "memory": "6.9GiB", + "rps": 1620406, + "avg_latency": "2.23ms", + "p99_latency": "6.65ms", + "cpu": "5986.4%", + "memory": "6.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "217.93MB/s", - "input_bw": "122.61MB/s", + "bandwidth": "196.22MB/s", + "input_bw": "125.17MB/s", "reconnects": 0, - "status_2xx": 7936493, + "status_2xx": 8102030, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -69,18 +89,18 @@ "baseline-h2-1024": { "framework": "helidon-production", "language": "Java", - "rps": 2623129, - "avg_latency": "33.85ms", - "p99_latency": "241.24ms", - "cpu": "6118.4%", - "memory": "15.1GiB", + "rps": 2701852, + "avg_latency": "32.40ms", + "p99_latency": "186.57ms", + "cpu": "6053.5%", + "memory": "15.3GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "129.13MB/s", + "bandwidth": "130.39MB/s", "reconnects": 0, - "status_2xx": 13273035, + "status_2xx": 13671372, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -88,18 +108,18 @@ "baseline-h2-256": { "framework": "helidon-production", "language": "Java", - "rps": 2578257, - "avg_latency": "9.16ms", - "p99_latency": "58.50ms", - "cpu": "6220.3%", + "rps": 2570163, + "avg_latency": "9.11ms", + "p99_latency": "104.11ms", + "cpu": "6183.0%", "memory": "11.2GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "126.15MB/s", + "bandwidth": "123.29MB/s", "reconnects": 0, - "status_2xx": 12968637, + "status_2xx": 12927921, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -107,18 +127,18 @@ "baseline-h2c-1024": { "framework": "helidon-production", "language": "Java", - "rps": 3506644, - "avg_latency": "28.00ms", - "p99_latency": "185.64ms", - "cpu": "6191.8%", - "memory": "14.6GiB", + "rps": 3572644, + "avg_latency": "27.47ms", + "p99_latency": "197.47ms", + "cpu": "6199.3%", + "memory": "15.2GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "174.60MB/s", + "bandwidth": "172.07MB/s", "reconnects": 0, - "status_2xx": 17708555, + "status_2xx": 18041854, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -126,18 +146,18 @@ "baseline-h2c-256": { "framework": "helidon-production", "language": "Java", - "rps": 3353797, - "avg_latency": "7.55ms", - "p99_latency": "62.43ms", - "cpu": "6256.8%", - "memory": "9.4GiB", + "rps": 3353799, + "avg_latency": "7.54ms", + "p99_latency": "66.54ms", + "cpu": "6238.6%", + "memory": "9.2GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "164.10MB/s", + "bandwidth": "160.88MB/s", "reconnects": 0, - "status_2xx": 16869599, + "status_2xx": 16869611, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -145,18 +165,18 @@ "baseline-h2c-4096": { "framework": "helidon-production", "language": "Java", - "rps": 3341069, - "avg_latency": "106.43ms", - "p99_latency": "499.97ms", - "cpu": "5927.1%", - "memory": "23.4GiB", + "rps": 3421685, + "avg_latency": "104.12ms", + "p99_latency": "545.08ms", + "cpu": "5931.0%", + "memory": "22.9GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "165.80MB/s", + "bandwidth": "166.14MB/s", "reconnects": 0, - "status_2xx": 17039454, + "status_2xx": 17416378, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -164,18 +184,18 @@ "echo-ws-16384": { "framework": "helidon-production", "language": "Java", - "rps": 2185360, - "avg_latency": "2.31ms", - "p99_latency": "4.41ms", - "cpu": "6484.9%", - "memory": "1.8GiB", + "rps": 2185833, + "avg_latency": "3.14ms", + "p99_latency": "6.09ms", + "cpu": "6162.5%", + "memory": "2.3GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "14.77MB/s", + "bandwidth": "14.91MB/s", "reconnects": 0, - "status_2xx": 10926800, + "status_2xx": 10929169, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -183,18 +203,18 @@ "echo-ws-4096": { "framework": "helidon-production", "language": "Java", - "rps": 2315265, - "avg_latency": "1.53ms", - "p99_latency": "2.86ms", - "cpu": "6516.7%", - "memory": "1.6GiB", + "rps": 2304596, + "avg_latency": "1.54ms", + "p99_latency": "2.89ms", + "cpu": "6666.1%", + "memory": "1.3GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "15.53MB/s", + "bandwidth": "15.47MB/s", "reconnects": 0, - "status_2xx": 11576327, + "status_2xx": 11522983, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -202,18 +222,18 @@ "echo-ws-512": { "framework": "helidon-production", "language": "Java", - "rps": 2460571, - "avg_latency": "207us", - "p99_latency": "374us", - "cpu": "6727.6%", - "memory": "996MiB", + "rps": 2489368, + "avg_latency": "205us", + "p99_latency": "369us", + "cpu": "6732.9%", + "memory": "990MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "16.42MB/s", + "bandwidth": "16.61MB/s", "reconnects": 0, - "status_2xx": 12302856, + "status_2xx": 12446842, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -221,18 +241,18 @@ "echo-ws-limited-4096": { "framework": "helidon-production", "language": "Java", - "rps": 640431, - "avg_latency": "130us", - "p99_latency": "336us", - "cpu": "4669.4%", + "rps": 638645, + "avg_latency": "128us", + "p99_latency": "343us", + "cpu": "4504.1%", "memory": "1.7GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "14.41MB/s", - "reconnects": 320206, - "status_2xx": 3202159, + "bandwidth": "14.37MB/s", + "reconnects": 319318, + "status_2xx": 3193225, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -240,18 +260,18 @@ "echo-ws-limited-512": { "framework": "helidon-production", "language": "Java", - "rps": 672845, - "avg_latency": "120us", - "p99_latency": "336us", - "cpu": "4665.4%", - "memory": "1.9GiB", + "rps": 638300, + "avg_latency": "124us", + "p99_latency": "340us", + "cpu": "4556.1%", + "memory": "1.8GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "15.14MB/s", - "reconnects": 336411, - "status_2xx": 3364229, + "bandwidth": "14.36MB/s", + "reconnects": 319164, + "status_2xx": 3191500, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -259,18 +279,18 @@ "echo-ws-pipeline-16384": { "framework": "helidon-production", "language": "Java", - "rps": 15240002, - "avg_latency": "5.47ms", - "p99_latency": "14.50ms", - "cpu": "6036.9%", - "memory": "5.0GiB", + "rps": 14963765, + "avg_latency": "5.98ms", + "p99_latency": "14.90ms", + "cpu": "6325.5%", + "memory": "3.2GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "101.90MB/s", + "bandwidth": "100.07MB/s", "reconnects": 0, - "status_2xx": 76200010, + "status_2xx": 74818826, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -278,18 +298,18 @@ "echo-ws-pipeline-4096": { "framework": "helidon-production", "language": "Java", - "rps": 15294822, - "avg_latency": "3.82ms", - "p99_latency": "10.30ms", - "cpu": "6131.6%", - "memory": "3.8GiB", + "rps": 15219073, + "avg_latency": "3.73ms", + "p99_latency": "10.00ms", + "cpu": "6080.6%", + "memory": "4.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "102.18MB/s", + "bandwidth": "101.68MB/s", "reconnects": 0, - "status_2xx": 76474113, + "status_2xx": 76095368, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -297,18 +317,18 @@ "echo-ws-pipeline-512": { "framework": "helidon-production", "language": "Java", - "rps": 15599251, - "avg_latency": "524us", - "p99_latency": "1.32ms", - "cpu": "6296.5%", - "memory": "2.2GiB", + "rps": 15633891, + "avg_latency": "523us", + "p99_latency": "1.31ms", + "cpu": "6381.9%", + "memory": "2.6GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "104.11MB/s", + "bandwidth": "104.33MB/s", "reconnects": 0, - "status_2xx": 77996256, + "status_2xx": 78169459, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -316,19 +336,19 @@ "json-comp-16384": { "framework": "helidon-production", "language": "Java", - "rps": 211453, - "avg_latency": "45.33ms", - "p99_latency": "450.20ms", - "cpu": "5119.7%", - "memory": "6.2GiB", + "rps": 205819, + "avg_latency": "45.30ms", + "p99_latency": "430.00ms", + "cpu": "4942.9%", + "memory": "6.4GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "292.62MB/s", - "input_bw": "15.73MB/s", - "reconnects": 36631, - "status_2xx": 1057267, + "bandwidth": "281.67MB/s", + "input_bw": "15.31MB/s", + "reconnects": 35527, + "status_2xx": 1029099, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -336,19 +356,19 @@ "json-comp-4096": { "framework": "helidon-production", "language": "Java", - "rps": 124028, + "rps": 121250, "avg_latency": "30.27ms", - "p99_latency": "43.90ms", - "cpu": "3498.8%", + "p99_latency": "45.90ms", + "cpu": "3387.7%", "memory": "2.9GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "171.70MB/s", - "input_bw": "9.23MB/s", - "reconnects": 23204, - "status_2xx": 620144, + "bandwidth": "165.83MB/s", + "input_bw": "9.02MB/s", + "reconnects": 22670, + "status_2xx": 606253, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -356,18 +376,18 @@ "json-h2c-1024": { "framework": "helidon-production", "language": "Java", - "rps": 669281, - "avg_latency": "47.95ms", - "p99_latency": "342.16ms", - "cpu": "6318.3%", - "memory": "8.4GiB", + "rps": 710502, + "avg_latency": "44.86ms", + "p99_latency": "285.14ms", + "cpu": "6293.6%", + "memory": "8.2GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "2.26GB/s", + "bandwidth": "2.40GB/s", "reconnects": 0, - "status_2xx": 3379872, + "status_2xx": 3588039, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -375,18 +395,18 @@ "json-h2c-4096": { "framework": "helidon-production", "language": "Java", - "rps": 667489, - "avg_latency": "173.37ms", - "p99_latency": "793.14ms", - "cpu": "6201.2%", - "memory": "11.1GiB", + "rps": 698055, + "avg_latency": "162.54ms", + "p99_latency": "858.95ms", + "cpu": "6405.9%", + "memory": "10.8GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "2.28GB/s", + "bandwidth": "2.38GB/s", "reconnects": 0, - "status_2xx": 3404198, + "status_2xx": 3560081, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -394,18 +414,18 @@ "json-tls-4096": { "framework": "helidon-production", "language": "Java", - "rps": 246851, - "avg_latency": "18.83ms", - "p99_latency": "242.20ms", - "cpu": "4249.5%", - "memory": "4.6GiB", + "rps": 249452, + "avg_latency": "18.66ms", + "p99_latency": "193.63ms", + "cpu": "4469.2%", + "memory": "4.8GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "0.85GB", + "bandwidth": "0.86GB", "reconnects": 0, - "status_2xx": 1258198, + "status_2xx": 1272190, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -413,67 +433,67 @@ "latency-10k-1024": { "framework": "helidon-production", "language": "Java", - "rps": 9983, - "avg_latency": "83.4us", - "p99_latency": "119.0us", - "cpu": "67.8%", - "memory": "754MiB", + "rps": 9980, + "avg_latency": "87.3us", + "p99_latency": "115.0us", + "cpu": "67.0%", + "memory": "604MiB", "connections": 1024, "threads": 64, "duration": "20s", "pipeline": 1, - "bandwidth": "1.43MB/s", + "bandwidth": "1.26MB/s", "reconnects": 0, - "status_2xx": 199683, + "status_2xx": 199630, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 14280733, - "cpu_per_req_us": 71.517, + "cpu_usec": 14127429, + "cpu_per_req_us": 70.7681, "target_rate": 10000, - "rate_ratio": 0.9983, - "p99_9_latency": "1894.0us" + "rate_ratio": 0.998, + "p99_9_latency": "1089.0us" }, "latency-1m-1024": { "framework": "helidon-production", "language": "Java", - "rps": 997453, - "avg_latency": "226.7us", - "p99_latency": "1781.0us", - "cpu": "5160.2%", - "memory": "2.1GiB", + "rps": 997228, + "avg_latency": "241.6us", + "p99_latency": "2036.0us", + "cpu": "5131.7%", + "memory": "1.9GiB", "connections": 1024, "threads": 64, "duration": "20s", "pipeline": 1, - "bandwidth": "142.64MB/s", + "bandwidth": "125.65MB/s", "reconnects": 0, - "status_2xx": 19952819, + "status_2xx": 19948575, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "cpu_usec": 961251927, - "cpu_per_req_us": 48.1762, + "cpu_usec": 953537957, + "cpu_per_req_us": 47.7998, "target_rate": 1000000, - "rate_ratio": 0.9975, - "p99_9_latency": "8940.0us" + "rate_ratio": 0.9972, + "p99_9_latency": "16648.0us" }, "limited-conn-4096": { "framework": "helidon-production", "language": "Java", - "rps": 634064, - "avg_latency": "2.02ms", - "p99_latency": "17.10ms", - "cpu": "4815.8%", - "memory": "3.1GiB", + "rps": 656328, + "avg_latency": "1.97ms", + "p99_latency": "16.50ms", + "cpu": "4623.3%", + "memory": "2.8GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "87.05MB/s", - "input_bw": "48.98MB/s", - "reconnects": 317035, - "status_2xx": 3170323, + "bandwidth": "79.46MB/s", + "input_bw": "50.70MB/s", + "reconnects": 328176, + "status_2xx": 3281642, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -481,18 +501,18 @@ "pipelined-4096": { "framework": "helidon-production", "language": "Java", - "rps": 9174500, - "avg_latency": "6.31ms", - "p99_latency": "31.20ms", - "cpu": "5920.4%", - "memory": "7.6GiB", + "rps": 9075564, + "avg_latency": "6.37ms", + "p99_latency": "32.40ms", + "cpu": "5918.0%", + "memory": "6.8GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "1.23GB/s", + "bandwidth": "1.07GB/s", "reconnects": 0, - "status_2xx": 45872501, + "status_2xx": 45377823, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -500,18 +520,18 @@ "static-h2-1024": { "framework": "helidon-production", "language": "Java", - "rps": 21908, - "avg_latency": "1.24s", - "p99_latency": "1.65s", - "cpu": "5943.8%", - "memory": "4.7GiB", + "rps": 22167, + "avg_latency": "1.23s", + "p99_latency": "1.63s", + "cpu": "6213.8%", + "memory": "4.6GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "395.15MB/s", + "bandwidth": "399.44MB/s", "reconnects": 0, - "status_2xx": 110855, + "status_2xx": 112168, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -519,18 +539,18 @@ "static-h2-256": { "framework": "helidon-production", "language": "Java", - "rps": 23056, - "avg_latency": "339.06ms", - "p99_latency": "475.08ms", - "cpu": "6217.3%", - "memory": "3.1GiB", + "rps": 22914, + "avg_latency": "341.77ms", + "p99_latency": "463.10ms", + "cpu": "6177.9%", + "memory": "3.3GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "412.20MB/s", + "bandwidth": "408.73MB/s", "reconnects": 0, - "status_2xx": 115973, + "status_2xx": 115032, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -538,18 +558,18 @@ "static-tls-1024": { "framework": "helidon-production", "language": "Java", - "rps": 26913, - "avg_latency": "37.88ms", - "p99_latency": "115.90ms", - "cpu": "6273.4%", - "memory": "1.7GiB", + "rps": 27152, + "avg_latency": "37.53ms", + "p99_latency": "89.24ms", + "cpu": "6288.7%", + "memory": "1.9GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "478.24MB", + "bandwidth": "482.35MB", "reconnects": 0, - "status_2xx": 136815, + "status_2xx": 138047, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -557,18 +577,18 @@ "unary-grpc-1024": { "framework": "helidon-production", "language": "Java", - "rps": 1088356, - "avg_latency": "90.04ms", - "p99_latency": "441.73ms", - "cpu": "6063.4%", - "memory": "18.6GiB", + "rps": 1090804, + "avg_latency": "89.22ms", + "p99_latency": "364.66ms", + "cpu": "6083.3%", + "memory": "19.7GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "39.93MB/s", + "bandwidth": "40.02MB/s", "reconnects": 0, - "status_2xx": 5507085, + "status_2xx": 5519473, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -576,18 +596,18 @@ "unary-grpc-256": { "framework": "helidon-production", "language": "Java", - "rps": 1092416, - "avg_latency": "23.15ms", - "p99_latency": "147.58ms", - "cpu": "6021.4%", - "memory": "12.3GiB", + "rps": 1095175, + "avg_latency": "23.14ms", + "p99_latency": "117.86ms", + "cpu": "6096.1%", + "memory": "12.7GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "39.83MB/s", + "bandwidth": "39.93MB/s", "reconnects": 0, - "status_2xx": 5494856, + "status_2xx": 5508733, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -595,18 +615,18 @@ "unary-grpc-tls-1024": { "framework": "helidon-production", "language": "Java", - "rps": 957542, - "avg_latency": "99.07ms", - "p99_latency": "617.09ms", - "cpu": "6084.9%", - "memory": "21.8GiB", + "rps": 1002679, + "avg_latency": "94.72ms", + "p99_latency": "433.91ms", + "cpu": "6044.8%", + "memory": "20.0GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "35.07MB/s", + "bandwidth": "36.79MB/s", "reconnects": 0, - "status_2xx": 4835591, + "status_2xx": 5073560, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -614,18 +634,18 @@ "unary-grpc-tls-256": { "framework": "helidon-production", "language": "Java", - "rps": 973338, - "avg_latency": "25.73ms", - "p99_latency": "185.08ms", - "cpu": "6113.3%", - "memory": "14.5GiB", + "rps": 985578, + "avg_latency": "25.45ms", + "p99_latency": "163.57ms", + "cpu": "6113.9%", + "memory": "14.4GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "35.49MB/s", + "bandwidth": "35.86MB/s", "reconnects": 0, - "status_2xx": 4895895, + "status_2xx": 4947604, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/static/logs/8gbit/512/helidon-production.log b/site/static/logs/8gbit/512/helidon-production.log index 858edbd6f..b66bc4187 100644 --- a/site/static/logs/8gbit/512/helidon-production.log +++ b/site/static/logs/8gbit/512/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:30:51 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:43:32 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:30:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x233b5796] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:30:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x216f8321] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:30:52 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:43:33 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:30:52 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:43:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x143c02f4] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:43:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x00f17565] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:43:33 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:30:52 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:43:33 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:30:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2006a00b] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:30:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x49ee2edc] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:30:52 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1058 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:43:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x768ebc59] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:43:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x15e6e3ec] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:43:33 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 37 milliseconds. 1032 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/async-db/1024/helidon-production.log b/site/static/logs/async-db/1024/helidon-production.log index aae9c33ee..661290ab9 100644 --- a/site/static/logs/async-db/1024/helidon-production.log +++ b/site/static/logs/async-db/1024/helidon-production.log @@ -1,31 +1,31 @@ -Aug 30, 2026 5:31:43 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:44:23 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults -Aug 30, 2026 5:31:44 PM com.zaxxer.hikari.HikariDataSource +Aug 31, 2026 9:44:24 PM com.zaxxer.hikari.HikariDataSource INFO: HikariPool-1 - Starting... -Aug 30, 2026 5:31:44 PM com.zaxxer.hikari.pool.HikariPool checkFailFast -INFO: HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@35d6ca49 -Aug 30, 2026 5:31:44 PM com.zaxxer.hikari.HikariDataSource +Aug 31, 2026 9:44:24 PM com.zaxxer.hikari.pool.HikariPool checkFailFast +INFO: HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@12cd9150 +Aug 31, 2026 9:44:24 PM com.zaxxer.hikari.HikariDataSource INFO: HikariPool-1 - Start completed. WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:31:44 PM io.helidon.webserver.ServerListener startIt -INFO: [0x5bf6b912] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:31:44 PM io.helidon.webserver.ServerListener startIt -INFO: [0x226e613a] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:31:44 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:44:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x2cde38b0] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:44:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x165327ca] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:44:24 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:31:44 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:44:24 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:31:44 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:44:24 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:31:44 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2a27777e] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:31:44 PM io.helidon.webserver.ServerListener startIt -INFO: [0x5160275f] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:31:44 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 35 milliseconds. 1116 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:44:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x109c3cf5] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:44:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7c2a4434] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:44:24 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 34 milliseconds. 1133 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/async/32000/helidon-production.log b/site/static/logs/async/32000/helidon-production.log new file mode 100644 index 000000000..e5ec6c727 --- /dev/null +++ b/site/static/logs/async/32000/helidon-production.log @@ -0,0 +1,27 @@ +Aug 31, 2026 9:56:05 PM io.helidon.logging.jul.JulProvider doConfigureLogging +INFO: Logging at runtime configured using defaults +WARNING: A terminally deprecated method in sun.misc.Unsafe has been called +WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) +WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor +WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release +Aug 31, 2026 9:56:06 PM io.helidon.common.features.HelidonFeatures features +INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] +Aug 31, 2026 9:56:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x1b9c38bb] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:56:06 PM io.helidon.common.features.HelidonFeatures features +INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! +Aug 31, 2026 9:56:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3ba57d75] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:56:06 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +INFO: Preview feature: GRPC (WebServer/GRPC) +Aug 31, 2026 9:56:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4235240e] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:56:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x59f030f5] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:56:06 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1055 milliseconds since JVM startup. Java 25.0.4+7-LTS +Helidon HttpArena server started on ports: +plain (8080) +https (8443) +h1tls (8081) +h2c (8082) diff --git a/site/static/logs/baseline-h2/1024/helidon-production.log b/site/static/logs/baseline-h2/1024/helidon-production.log index 2313b83fd..db541c026 100644 --- a/site/static/logs/baseline-h2/1024/helidon-production.log +++ b/site/static/logs/baseline-h2/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:32:49 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:45:29 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:32:50 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:45:30 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:32:50 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6e5ed249] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:32:50 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4e4d5100] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:32:50 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:45:30 PM io.helidon.webserver.ServerListener startIt +INFO: [0x2d0a2e31] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:45:30 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:32:50 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:45:30 PM io.helidon.webserver.ServerListener startIt +INFO: [0x2095dc06] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:45:30 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:32:50 PM io.helidon.webserver.ServerListener startIt -INFO: [0x77655d00] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:32:50 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3d011a25] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:32:50 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 37 milliseconds. 1019 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:45:30 PM io.helidon.webserver.ServerListener startIt +INFO: [0x740a580f] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:45:30 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4bf55c84] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:45:30 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1018 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/baseline-h2/256/helidon-production.log b/site/static/logs/baseline-h2/256/helidon-production.log index ed0b789aa..d1a64fdf0 100644 --- a/site/static/logs/baseline-h2/256/helidon-production.log +++ b/site/static/logs/baseline-h2/256/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:32:23 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:45:03 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:32:24 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:45:04 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:32:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x68a723d5] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:32:24 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:45:04 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:32:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x202c2a81] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:32:24 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:45:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x117379b9] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:45:04 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:32:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3f53ce3f] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:32:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6dcb588e] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:32:24 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 40 milliseconds. 1040 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:45:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x1b11b8fc] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:45:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x43f4079f] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:45:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x16f30467] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:45:04 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 28 milliseconds. 1044 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/baseline-h2c/1024/helidon-production.log b/site/static/logs/baseline-h2c/1024/helidon-production.log index b7ff3ef2e..ed4221bf4 100644 --- a/site/static/logs/baseline-h2c/1024/helidon-production.log +++ b/site/static/logs/baseline-h2c/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:34:26 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:47:07 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:34:27 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:47:08 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:34:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3acee635] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:34:27 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:47:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x299f111c] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:47:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x018d934f] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:47:08 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:34:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x09c2ee9e] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:34:27 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:47:08 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:34:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4a438521] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:34:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6f2124ec] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:34:27 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 38 milliseconds. 1024 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:47:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7cdf1150] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:47:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x6cabad26] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:47:08 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1012 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/baseline-h2c/256/helidon-production.log b/site/static/logs/baseline-h2c/256/helidon-production.log index fa2825b6b..2682e6214 100644 --- a/site/static/logs/baseline-h2c/256/helidon-production.log +++ b/site/static/logs/baseline-h2c/256/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:34:02 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:46:43 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:34:03 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:46:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x26383a1f] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:46:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x256961dd] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:46:44 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:34:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2f9b436a] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:34:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3c6fb44b] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:34:03 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:46:44 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:34:03 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:46:44 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:34:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x5e35b5f5] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:34:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x182feef2] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:34:03 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 38 milliseconds. 1018 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:46:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x510611f2] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:46:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7957e891] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:46:44 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1015 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/baseline-h2c/4096/helidon-production.log b/site/static/logs/baseline-h2c/4096/helidon-production.log index 236e55c70..982a08487 100644 --- a/site/static/logs/baseline-h2c/4096/helidon-production.log +++ b/site/static/logs/baseline-h2c/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:34:51 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:47:32 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:34:52 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:47:33 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:34:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x557b05ca] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:34:52 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:47:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x2a678864] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:47:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x337d488c] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:47:33 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:34:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6a06a365] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:34:52 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:47:33 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:34:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x156c8514] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:34:52 PM io.helidon.webserver.ServerListener startIt -INFO: [0x36fe22f3] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:34:52 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 28 milliseconds. 1030 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:47:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x737c1dfe] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:47:33 PM io.helidon.webserver.ServerListener startIt +INFO: [0x32a96382] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:47:33 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 1061 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/baseline/4096/helidon-production.log b/site/static/logs/baseline/4096/helidon-production.log index 035fad275..5a0d5ea1c 100644 --- a/site/static/logs/baseline/4096/helidon-production.log +++ b/site/static/logs/baseline/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:28:23 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:41:05 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:28:24 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:41:06 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:28:24 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:41:06 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:28:24 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:41:06 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:28:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x51ae399f] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:28:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1d1dda5a] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:28:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x24d6cd3d] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:28:24 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1583fbd3] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:28:24 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 46 milliseconds. 1205 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:41:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x33d46088] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:41:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x5dc60915] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:41:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x00c6b6cb] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:41:06 PM io.helidon.webserver.ServerListener startIt +INFO: [0x499ec904] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:41:06 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 62 milliseconds. 1266 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws-limited/4096/helidon-production.log b/site/static/logs/echo-ws-limited/4096/helidon-production.log index 06668e836..bede4d0bd 100644 --- a/site/static/logs/echo-ws-limited/4096/helidon-production.log +++ b/site/static/logs/echo-ws-limited/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:40:38 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:53:20 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:40:39 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:53:20 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:40:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2f2248a0] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:40:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x40c94377] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:40:39 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:53:20 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:40:39 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:53:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x12fde65b] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:53:20 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:40:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4c3763ca] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:40:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x361b5dad] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:40:39 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 41 milliseconds. 1044 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:53:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4beeca8d] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:53:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x031e649e] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:53:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x13f2f757] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:53:20 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 1014 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws-limited/512/helidon-production.log b/site/static/logs/echo-ws-limited/512/helidon-production.log index 69ca7d0c9..3a7f9bb36 100644 --- a/site/static/logs/echo-ws-limited/512/helidon-production.log +++ b/site/static/logs/echo-ws-limited/512/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:40:12 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:52:55 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:40:13 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:52:56 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:40:13 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:52:56 PM io.helidon.webserver.ServerListener startIt +INFO: [0x058edc3d] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:52:56 PM io.helidon.webserver.ServerListener startIt +INFO: [0x62823ed1] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:52:56 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:40:13 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:52:56 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:40:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x495a5a96] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:40:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x050e456a] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:40:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4c54aba1] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:40:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x7bd2b538] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:40:13 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 45 milliseconds. 1048 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:52:56 PM io.helidon.webserver.ServerListener startIt +INFO: [0x40d3c821] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:52:56 PM io.helidon.webserver.ServerListener startIt +INFO: [0x5b19934d] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:52:56 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 1038 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws-pipeline/16384/helidon-production.log b/site/static/logs/echo-ws-pipeline/16384/helidon-production.log index 216f797b1..d2ba1ffcc 100644 --- a/site/static/logs/echo-ws-pipeline/16384/helidon-production.log +++ b/site/static/logs/echo-ws-pipeline/16384/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:39:48 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:52:31 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:39:49 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:52:32 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:39:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2fffba02] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:39:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x18e104ad] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:39:49 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:52:32 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:39:49 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:52:32 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:39:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3e8fcbbd] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:39:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x647e2c29] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:39:49 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1027 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:52:32 PM io.helidon.webserver.ServerListener startIt +INFO: [0x6ce93fdb] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:52:32 PM io.helidon.webserver.ServerListener startIt +INFO: [0x28da1063] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:52:32 PM io.helidon.webserver.ServerListener startIt +INFO: [0x73522988] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:52:32 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3064ffdd] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:52:32 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 1022 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws-pipeline/4096/helidon-production.log b/site/static/logs/echo-ws-pipeline/4096/helidon-production.log index 6cc6e36ba..9efe5ef73 100644 --- a/site/static/logs/echo-ws-pipeline/4096/helidon-production.log +++ b/site/static/logs/echo-ws-pipeline/4096/helidon-production.log @@ -1,27 +1,56 @@ -Aug 30, 2026 5:39:24 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:52:07 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:39:25 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:52:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x058edc3d] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:52:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4d02e19b] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:52:08 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:39:25 PM io.helidon.webserver.ServerListener startIt -INFO: [0x337d488c] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:39:25 PM io.helidon.webserver.ServerListener startIt -INFO: [0x63bdbd8c] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:39:25 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:52:08 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:39:25 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:52:08 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:39:25 PM io.helidon.webserver.ServerListener startIt -INFO: [0x54b3df76] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:39:25 PM io.helidon.webserver.ServerListener startIt -INFO: [0x784f34d1] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:39:25 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 30 milliseconds. 1002 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:52:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x69ac1b8d] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:52:08 PM io.helidon.webserver.ServerListener startIt +INFO: [0x0c694fde] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:52:08 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 30 milliseconds. 1027 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) h1tls (8081) h2c (8082) +Aug 31, 2026 9:52:08 PM io.helidon.webserver.http.DirectHandlers handle +WARNING: Internal server error +io.helidon.http.RequestException: Internal Server Error + at io.helidon.http.RequestException$Builder.build(RequestException.java:157) + at io.helidon.webserver.http.ErrorHandlers.unhandledError(ErrorHandlers.java:213) + at io.helidon.webserver.http.ErrorHandlers.lambda$handleError$1(ErrorHandlers.java:185) + at java.base/java.util.Optional.ifPresentOrElse(Unknown Source) + at io.helidon.webserver.http.ErrorHandlers.handleError(ErrorHandlers.java:184) + at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:115) + at io.helidon.webserver.http.Filters.filter(Filters.java:83) + at io.helidon.webserver.http.HttpRoutingImpl.routeUpgrade(HttpRoutingImpl.java:99) + at io.helidon.webserver.http1.Http1Connection.handle(Http1Connection.java:226) + at io.helidon.webserver.ConnectionHandler.run(ConnectionHandler.java:191) + at io.helidon.common.task.InterruptableTask.call(InterruptableTask.java:47) + at io.helidon.webserver.ThreadPerTaskExecutor$ThreadBoundFuture.run(ThreadPerTaskExecutor.java:241) + at java.base/java.lang.VirtualThread.run(Unknown Source) +Caused by: java.util.ConcurrentModificationException + at java.base/java.util.ArrayList$Itr.checkForComodification(Unknown Source) + at java.base/java.util.ArrayList$Itr.next(Unknown Source) + at io.helidon.http.Headers.containsToken(Headers.java:88) + at io.helidon.webserver.websocket.WsUpgrader.isWebSocketUpgrade(WsUpgrader.java:219) + at io.helidon.webserver.websocket.WsUpgrader$PreparedUpgrade.upgrade(WsUpgrader.java:405) + at io.helidon.webserver.websocket.WsUpgrader$RoutedUpgrader.lambda$routedUpgrade$0(WsUpgrader.java:447) + at io.helidon.webserver.http.HttpRoutingImpl$UpgradeRoutingExecutor.doRoute(HttpRoutingImpl.java:354) + at io.helidon.webserver.http.HttpRoutingImpl$UpgradeRoutingExecutor.call(HttpRoutingImpl.java:279) + at io.helidon.webserver.http.HttpRoutingImpl$UpgradeRoutingExecutor.call(HttpRoutingImpl.java:247) + at io.helidon.webserver.http.ErrorHandlers.runWithErrorHandling(ErrorHandlers.java:78) + ... 7 more + diff --git a/site/static/logs/echo-ws-pipeline/512/helidon-production.log b/site/static/logs/echo-ws-pipeline/512/helidon-production.log index 0ef6c3fe8..2efb509e0 100644 --- a/site/static/logs/echo-ws-pipeline/512/helidon-production.log +++ b/site/static/logs/echo-ws-pipeline/512/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:39:00 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:51:42 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:39:00 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:51:42 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:39:00 PM io.helidon.webserver.ServerListener startIt -INFO: [0x7a48d525] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:39:00 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:51:42 PM io.helidon.webserver.ServerListener startIt +INFO: [0x561d79eb] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:51:42 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:39:00 PM io.helidon.webserver.ServerListener startIt -INFO: [0x75005b21] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:39:00 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:51:42 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3ffa0e9b] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:51:42 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:39:01 PM io.helidon.webserver.ServerListener startIt -INFO: [0x08119c2d] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:39:01 PM io.helidon.webserver.ServerListener startIt -INFO: [0x429b6139] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:39:01 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1006 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:51:43 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4f7714df] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:51:43 PM io.helidon.webserver.ServerListener startIt +INFO: [0x78616c8b] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:51:43 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 1048 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws/16384/helidon-production.log b/site/static/logs/echo-ws/16384/helidon-production.log index f174376da..de6416bba 100644 --- a/site/static/logs/echo-ws/16384/helidon-production.log +++ b/site/static/logs/echo-ws/16384/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:38:35 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:51:17 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:38:36 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:51:18 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:38:36 PM io.helidon.webserver.ServerListener startIt -INFO: [0x185d4ab2] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:38:36 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:51:18 PM io.helidon.webserver.ServerListener startIt +INFO: [0x0a2716c1] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:51:18 PM io.helidon.webserver.ServerListener startIt +INFO: [0x39cf2969] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:51:18 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:38:36 PM io.helidon.webserver.ServerListener startIt -INFO: [0x14a3a070] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:38:36 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:51:18 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:38:36 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6b810235] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:38:36 PM io.helidon.webserver.ServerListener startIt -INFO: [0x69c507db] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:38:36 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 38 milliseconds. 1020 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:51:18 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3b1119fa] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:51:18 PM io.helidon.webserver.ServerListener startIt +INFO: [0x5c95723d] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:51:18 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1025 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws/4096/helidon-production.log b/site/static/logs/echo-ws/4096/helidon-production.log index 5e169a4d7..9edf9953d 100644 --- a/site/static/logs/echo-ws/4096/helidon-production.log +++ b/site/static/logs/echo-ws/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:38:11 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:50:52 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:38:12 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:50:53 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:38:12 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:50:53 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:38:12 PM io.helidon.webserver.ServerListener startIt -INFO: [0x72059332] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:38:12 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:50:53 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7169e554] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:50:53 PM io.helidon.webserver.ServerListener startIt +INFO: [0x5d9ef5e8] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:50:53 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:38:12 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3c10d6ca] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:38:12 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6b84db85] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:38:12 PM io.helidon.webserver.ServerListener startIt -INFO: [0x5a0cce95] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:38:12 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 27 milliseconds. 1019 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:50:53 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3a059c9c] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:50:53 PM io.helidon.webserver.ServerListener startIt +INFO: [0x45031a4d] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:50:53 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 40 milliseconds. 1055 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/echo-ws/512/helidon-production.log b/site/static/logs/echo-ws/512/helidon-production.log index ab221bd50..fa2cfc68d 100644 --- a/site/static/logs/echo-ws/512/helidon-production.log +++ b/site/static/logs/echo-ws/512/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:37:47 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:50:28 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:37:48 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:50:29 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:37:48 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2c4b7fc3] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:37:48 PM io.helidon.webserver.ServerListener startIt -INFO: [0x031ec393] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:37:48 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:50:29 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:37:48 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:50:29 PM io.helidon.webserver.ServerListener startIt +INFO: [0x659492d5] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:50:29 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:37:48 PM io.helidon.webserver.ServerListener startIt -INFO: [0x77f07e2e] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:37:48 PM io.helidon.webserver.ServerListener startIt -INFO: [0x44d36cb7] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:37:48 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 29 milliseconds. 1031 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:50:29 PM io.helidon.webserver.ServerListener startIt +INFO: [0x18808e6d] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:50:29 PM io.helidon.webserver.ServerListener startIt +INFO: [0x58f1a9d8] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:50:29 PM io.helidon.webserver.ServerListener startIt +INFO: [0x21ff7ee9] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:50:29 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 993 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/json-comp/16384/helidon-production.log b/site/static/logs/json-comp/16384/helidon-production.log index cdbd311e1..0b921b2a8 100644 --- a/site/static/logs/json-comp/16384/helidon-production.log +++ b/site/static/logs/json-comp/16384/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:30:02 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:42:43 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:30:03 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:42:44 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:30:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x285c3698] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:30:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x7ec33cd9] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:30:03 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:42:44 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:30:03 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:42:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x67091080] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:42:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7cc937ad] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:42:44 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:30:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x28a3a5cc] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:30:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x77e448be] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:30:03 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1042 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:42:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x2e0135ce] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:42:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x2defbe6d] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:42:44 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 28 milliseconds. 1009 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/json-comp/4096/helidon-production.log b/site/static/logs/json-comp/4096/helidon-production.log index de83d7727..c06c5affb 100644 --- a/site/static/logs/json-comp/4096/helidon-production.log +++ b/site/static/logs/json-comp/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:29:37 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:42:19 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:29:38 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:42:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x68b6ead1] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:42:20 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:29:38 PM io.helidon.webserver.ServerListener startIt -INFO: [0x238e88f2] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:29:38 PM io.helidon.webserver.ServerListener startIt -INFO: [0x14b846fb] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:29:38 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:42:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x077fed11] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:42:20 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:29:38 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:42:20 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:29:38 PM io.helidon.webserver.ServerListener startIt -INFO: [0x369dd994] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:29:38 PM io.helidon.webserver.ServerListener startIt -INFO: [0x67b8e590] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:29:38 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1007 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:42:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x5c915fad] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:42:20 PM io.helidon.webserver.ServerListener startIt +INFO: [0x6783b445] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:42:20 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 37 milliseconds. 1041 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/json-h2c/1024/helidon-production.log b/site/static/logs/json-h2c/1024/helidon-production.log index a98b4cb40..6fded2066 100644 --- a/site/static/logs/json-h2c/1024/helidon-production.log +++ b/site/static/logs/json-h2c/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:35:17 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:47:59 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:35:18 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:48:00 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:35:18 PM io.helidon.webserver.ServerListener startIt -INFO: [0x416871b9] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:35:18 PM io.helidon.webserver.ServerListener startIt -INFO: [0x58916f3b] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:35:18 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:48:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3a99689d] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:48:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x058edc3d] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:48:00 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:35:18 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:48:00 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:35:18 PM io.helidon.webserver.ServerListener startIt -INFO: [0x15751ff3] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:35:18 PM io.helidon.webserver.ServerListener startIt -INFO: [0x38bcc5b5] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:35:18 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 38 milliseconds. 1007 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:48:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x295bdb9c] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:48:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7351f316] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:48:00 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 40 milliseconds. 1014 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/json-h2c/4096/helidon-production.log b/site/static/logs/json-h2c/4096/helidon-production.log index 4be05d8bc..849eab2b4 100644 --- a/site/static/logs/json-h2c/4096/helidon-production.log +++ b/site/static/logs/json-h2c/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:35:41 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:48:23 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:35:42 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:48:24 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:35:42 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4bdcd288] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:35:42 PM io.helidon.webserver.ServerListener startIt -INFO: [0x34bed3c3] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:35:42 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:48:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x1b11b8fc] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:48:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x441e5efd] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:48:24 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:35:42 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:48:24 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:35:42 PM io.helidon.webserver.ServerListener startIt -INFO: [0x05bfad30] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:35:42 PM io.helidon.webserver.ServerListener startIt -INFO: [0x517e8299] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:35:42 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1047 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:48:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7b8ce4d0] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:48:24 PM io.helidon.webserver.ServerListener startIt +INFO: [0x6d7a3f19] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:48:24 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 1035 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/json-tls/4096/helidon-production.log b/site/static/logs/json-tls/4096/helidon-production.log index 88dfc7af6..e645e46aa 100644 --- a/site/static/logs/json-tls/4096/helidon-production.log +++ b/site/static/logs/json-tls/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:30:26 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:43:08 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:30:27 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:43:09 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:30:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x29221071] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:30:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x202c2a81] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:30:27 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:43:09 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:30:27 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:43:09 PM io.helidon.webserver.ServerListener startIt +INFO: [0x10a24464] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:43:09 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:30:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1ea5944f] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:30:27 PM io.helidon.webserver.ServerListener startIt -INFO: [0x05554da2] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:30:27 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 974 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:43:09 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4a332622] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:43:09 PM io.helidon.webserver.ServerListener startIt +INFO: [0x361912a8] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:43:09 PM io.helidon.webserver.ServerListener startIt +INFO: [0x23450a07] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:43:09 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 997 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/latency-10k/1024/helidon-production.log b/site/static/logs/latency-10k/1024/helidon-production.log index 6497d079e..eba418e1b 100644 --- a/site/static/logs/latency-10k/1024/helidon-production.log +++ b/site/static/logs/latency-10k/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:42:12 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:54:54 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:42:13 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:54:55 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:42:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x780ec4dc] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:42:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x66445fa5] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:42:13 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:54:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x203ad7cb] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:54:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x09d51083] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:54:55 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:42:13 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:54:55 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:42:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x468ba5aa] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:42:13 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1325daf4] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:42:13 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 1014 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:54:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4b31ab5e] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:54:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x50e969f1] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:54:55 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 41 milliseconds. 1030 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/latency-1m/1024/helidon-production.log b/site/static/logs/latency-1m/1024/helidon-production.log index 725924b75..a431224de 100644 --- a/site/static/logs/latency-1m/1024/helidon-production.log +++ b/site/static/logs/latency-1m/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:41:02 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:53:44 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:41:02 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:53:44 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:41:02 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3ceb1242] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:41:02 PM io.helidon.webserver.ServerListener startIt -INFO: [0x192c827e] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:41:02 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:53:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x58c59e10] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:53:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x169a16db] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:53:44 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:41:02 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:53:44 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:41:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x18e77ca4] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:41:03 PM io.helidon.webserver.ServerListener startIt -INFO: [0x7afe19a0] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:41:03 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 41 milliseconds. 1004 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:53:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x16fb4495] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:53:44 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7bcf8ab9] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:53:44 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1003 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/limited-conn/4096/helidon-production.log b/site/static/logs/limited-conn/4096/helidon-production.log index 61996ab35..5ed9c018d 100644 --- a/site/static/logs/limited-conn/4096/helidon-production.log +++ b/site/static/logs/limited-conn/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:29:13 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:41:55 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:29:14 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:41:55 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:29:14 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:41:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x0178a419] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:41:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x34bed3c3] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:41:55 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:29:14 PM io.helidon.webserver.ServerListener startIt -INFO: [0x5b1c2974] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:29:14 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:41:55 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:29:14 PM io.helidon.webserver.ServerListener startIt -INFO: [0x07a77019] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:29:14 PM io.helidon.webserver.ServerListener startIt -INFO: [0x48166e26] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:29:14 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3574bfa9] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:29:14 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 39 milliseconds. 984 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:41:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x255eeb76] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:41:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7a62fd38] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:41:55 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 37 milliseconds. 1028 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/pipelined/4096/helidon-production.log b/site/static/logs/pipelined/4096/helidon-production.log index 383930cae..962bbd991 100644 --- a/site/static/logs/pipelined/4096/helidon-production.log +++ b/site/static/logs/pipelined/4096/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:28:49 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:41:30 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:28:49 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:41:31 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:28:49 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:41:31 PM io.helidon.webserver.ServerListener startIt +INFO: [0x256961dd] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:41:31 PM io.helidon.webserver.ServerListener startIt +INFO: [0x014ddc18] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:41:31 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:28:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x0d56cf68] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:28:49 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:41:31 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:28:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x03edf3e3] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:28:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x26c728c3] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:28:49 PM io.helidon.webserver.ServerListener startIt -INFO: [0x538e3a11] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:28:49 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 27 milliseconds. 984 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:41:31 PM io.helidon.webserver.ServerListener startIt +INFO: [0x02cbaea6] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:41:31 PM io.helidon.webserver.ServerListener startIt +INFO: [0x38cde4b6] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:41:31 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 39 milliseconds. 993 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/static-h2/1024/helidon-production.log b/site/static/logs/static-h2/1024/helidon-production.log index 4866f5740..2fbb28ff1 100644 --- a/site/static/logs/static-h2/1024/helidon-production.log +++ b/site/static/logs/static-h2/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:33:38 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:46:18 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:33:39 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:46:19 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:33:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1734d3b0] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:33:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x0292770e] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:33:39 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:46:19 PM io.helidon.webserver.ServerListener startIt +INFO: [0x1b11b8fc] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:46:19 PM io.helidon.webserver.ServerListener startIt +INFO: [0x3a99689d] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:46:19 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:33:39 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:46:19 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:33:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x70e399e2] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:33:39 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3b83422c] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:33:39 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 28 milliseconds. 1001 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:46:19 PM io.helidon.webserver.ServerListener startIt +INFO: [0x79820f2d] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:46:19 PM io.helidon.webserver.ServerListener startIt +INFO: [0x17eb71fe] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:46:19 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1058 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/static-h2/256/helidon-production.log b/site/static/logs/static-h2/256/helidon-production.log index 05b22b09e..b5183ae93 100644 --- a/site/static/logs/static-h2/256/helidon-production.log +++ b/site/static/logs/static-h2/256/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:33:14 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:45:54 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:33:15 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:45:55 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:33:15 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:45:55 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:33:15 PM io.helidon.webserver.ServerListener startIt -INFO: [0x67929eab] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:33:15 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:45:55 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:33:15 PM io.helidon.webserver.ServerListener startIt -INFO: [0x0f706abe] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:33:15 PM io.helidon.webserver.ServerListener startIt -INFO: [0x73ff8bac] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:33:15 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1d424f31] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:33:15 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 38 milliseconds. 1016 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:45:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x1fc955bc] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:45:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x66c828e5] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:45:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x0f42008b] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:45:55 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7fe7925d] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:45:55 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 29 milliseconds. 1008 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/static-tls/1024/helidon-production.log b/site/static/logs/static-tls/1024/helidon-production.log index 3632d37f1..9c9d2f46d 100644 --- a/site/static/logs/static-tls/1024/helidon-production.log +++ b/site/static/logs/static-tls/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:31:18 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:43:59 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:31:19 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:44:00 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:31:19 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:44:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x74adf77d] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:44:00 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:31:19 PM io.helidon.webserver.ServerListener startIt -INFO: [0x361912a8] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:31:19 PM io.helidon.webserver.ServerListener startIt -INFO: [0x5c855d22] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:31:19 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:44:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x732253e5] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:44:00 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:31:19 PM io.helidon.webserver.ServerListener startIt -INFO: [0x755bb55d] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:31:19 PM io.helidon.webserver.ServerListener startIt -INFO: [0x181b0b7d] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:31:19 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 28 milliseconds. 1032 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:44:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x197df272] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:44:00 PM io.helidon.webserver.ServerListener startIt +INFO: [0x5de2fd6b] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:44:00 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 27 milliseconds. 1010 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/unary-grpc-tls/1024/helidon-production.log b/site/static/logs/unary-grpc-tls/1024/helidon-production.log index fd09bc7a5..1f718f2f5 100644 --- a/site/static/logs/unary-grpc-tls/1024/helidon-production.log +++ b/site/static/logs/unary-grpc-tls/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:37:22 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:50:03 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:37:23 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:50:04 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:37:23 PM io.helidon.webserver.ServerListener startIt -INFO: [0x1f0fa63d] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:37:23 PM io.helidon.webserver.ServerListener startIt -INFO: [0x10de84e8] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:37:23 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:50:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7dcc9650] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:50:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x79464e0c] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:50:04 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:37:23 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:50:04 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:37:23 PM io.helidon.webserver.ServerListener startIt -INFO: [0x03bb246d] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:37:23 PM io.helidon.webserver.ServerListener startIt -INFO: [0x12f743fa] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:37:23 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 37 milliseconds. 1029 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:50:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x7c78b24e] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:50:04 PM io.helidon.webserver.ServerListener startIt +INFO: [0x36594c2e] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:50:04 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 37 milliseconds. 1025 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/unary-grpc-tls/256/helidon-production.log b/site/static/logs/unary-grpc-tls/256/helidon-production.log index 268ee70ae..8308fb94a 100644 --- a/site/static/logs/unary-grpc-tls/256/helidon-production.log +++ b/site/static/logs/unary-grpc-tls/256/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:36:57 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:49:38 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:36:58 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:49:39 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:36:58 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:49:39 PM io.helidon.webserver.ServerListener startIt +INFO: [0x271035bf] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:49:39 PM io.helidon.webserver.ServerListener startIt +INFO: [0x50123392] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:49:39 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:36:58 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4b9f28db] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:36:58 PM io.helidon.webserver.ServerListener startIt -INFO: [0x6bfb95f6] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:36:58 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:49:39 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:36:58 PM io.helidon.webserver.ServerListener startIt -INFO: [0x41c18e8f] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:36:58 PM io.helidon.webserver.ServerListener startIt -INFO: [0x49469c25] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:36:58 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 26 milliseconds. 1002 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:49:39 PM io.helidon.webserver.ServerListener startIt +INFO: [0x12c9eff6] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:49:39 PM io.helidon.webserver.ServerListener startIt +INFO: [0x166fa63b] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:49:39 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1000 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/unary-grpc/1024/helidon-production.log b/site/static/logs/unary-grpc/1024/helidon-production.log index 6addc032e..463c90ff7 100644 --- a/site/static/logs/unary-grpc/1024/helidon-production.log +++ b/site/static/logs/unary-grpc/1024/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:36:31 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:49:12 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:36:32 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:49:13 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:36:32 PM io.helidon.webserver.ServerListener startIt -INFO: [0x3e8fcbbd] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:36:32 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:49:13 PM io.helidon.webserver.ServerListener startIt +INFO: [0x60657b67] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:49:13 PM io.helidon.webserver.ServerListener startIt +INFO: [0x49219cb9] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:49:13 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:36:32 PM io.helidon.webserver.ServerListener startIt -INFO: [0x2140f1b1] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:36:32 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:49:13 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:36:32 PM io.helidon.webserver.ServerListener startIt -INFO: [0x336c3cf8] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:36:32 PM io.helidon.webserver.ServerListener startIt -INFO: [0x106b93e3] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:36:32 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 27 milliseconds. 1005 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:49:13 PM io.helidon.webserver.ServerListener startIt +INFO: [0x30606763] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:49:13 PM io.helidon.webserver.ServerListener startIt +INFO: [0x6b719365] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:49:13 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 38 milliseconds. 1024 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443) diff --git a/site/static/logs/unary-grpc/256/helidon-production.log b/site/static/logs/unary-grpc/256/helidon-production.log index 7f71a4da5..3bb89628f 100644 --- a/site/static/logs/unary-grpc/256/helidon-production.log +++ b/site/static/logs/unary-grpc/256/helidon-production.log @@ -1,25 +1,25 @@ -Aug 30, 2026 5:36:07 PM io.helidon.logging.jul.JulProvider doConfigureLogging +Aug 31, 2026 9:48:48 PM io.helidon.logging.jul.JulProvider doConfigureLogging INFO: Logging at runtime configured using defaults WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::arrayBaseOffset has been called by com.google.protobuf.UnsafeUtil$MemoryAccessor (file:/app/libs/protobuf-java-4.31.1.jar) WARNING: Please consider reporting this to the maintainers of class com.google.protobuf.UnsafeUtil$MemoryAccessor WARNING: sun.misc.Unsafe::arrayBaseOffset will be removed in a future release -Aug 30, 2026 5:36:08 PM io.helidon.webserver.ServerListener startIt -INFO: [0x29710871] http://0.0.0.0:8082 bound for socket 'h2c' -Aug 30, 2026 5:36:08 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:48:49 PM io.helidon.common.features.HelidonFeatures features INFO: Helidon SE 4.5.4 features: [Config, Encoding, JSON, Media, Registry, Tracing, WebServer] -Aug 30, 2026 5:36:08 PM io.helidon.webserver.ServerListener startIt -INFO: [0x4bdcd288] http://0.0.0.0:8080 bound for socket '@default' -Aug 30, 2026 5:36:08 PM io.helidon.common.features.HelidonFeatures features +Aug 31, 2026 9:48:49 PM io.helidon.webserver.ServerListener startIt +INFO: [0x0bcae431] http://0.0.0.0:8082 bound for socket 'h2c' +Aug 31, 2026 9:48:49 PM io.helidon.webserver.ServerListener startIt +INFO: [0x35b4c8a1] http://0.0.0.0:8080 bound for socket '@default' +Aug 31, 2026 9:48:49 PM io.helidon.common.features.HelidonFeatures features INFO: You are using preview features. These APIs are production ready, yet may change more frequently. Please follow Helidon release changelog! -Aug 30, 2026 5:36:08 PM io.helidon.common.features.HelidonFeatures lambda$features$11 +Aug 31, 2026 9:48:49 PM io.helidon.common.features.HelidonFeatures lambda$features$11 INFO: Preview feature: GRPC (WebServer/GRPC) -Aug 30, 2026 5:36:08 PM io.helidon.webserver.ServerListener startIt -INFO: [0x57b41c26] https://0.0.0.0:8443 bound for socket 'h2-tls' -Aug 30, 2026 5:36:08 PM io.helidon.webserver.ServerListener startIt -INFO: [0x69ae63a9] https://0.0.0.0:8081 bound for socket 'h1-tls' -Aug 30, 2026 5:36:08 PM io.helidon.webserver.LoomServer startIt -INFO: Started all channels in 38 milliseconds. 1040 milliseconds since JVM startup. Java 25.0.4+7-LTS +Aug 31, 2026 9:48:49 PM io.helidon.webserver.ServerListener startIt +INFO: [0x1136617c] https://0.0.0.0:8443 bound for socket 'h2-tls' +Aug 31, 2026 9:48:49 PM io.helidon.webserver.ServerListener startIt +INFO: [0x4b881415] https://0.0.0.0:8081 bound for socket 'h1-tls' +Aug 31, 2026 9:48:49 PM io.helidon.webserver.LoomServer startIt +INFO: Started all channels in 37 milliseconds. 993 milliseconds since JVM startup. Java 25.0.4+7-LTS Helidon HttpArena server started on ports: plain (8080) https (8443)