There are four configuration parameter for http/2 in quarkus:
- quarkus.http.limits.header-table-size
- quarkus.http.limits.max-concurrent-streams
- quarkus.http.limits.max-frame-size
- quarkus.http.limits.max-header-list-size
https://quarkus.io/guides/all-config
First up, trying to increase quarkus.http.limits.max-header-list-size
parameter, but it wasn’t enough.
Current configuration parameters measure in octets. Quarkus using Vert.x server (https://github.com/eclipse-vertx/vert.x/blob/4.5.7/src/main/java/io/vertx/core/http/Http2Settings.java).
How to increase the size of the headers using HTTP/2 protocol?
How do they affect one another?
How do I convert our byte values to current configuration parameters?
liubagha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.