0

I'm Quarkus 1.11.0 and trying to set the heap size of my app using...

quarkus.jib.jvm-arguments=-Xms1024m -Xmx1024m -agentpath:/app/resources/libyjpagent.so=listen=all also tried with capital M and I get Invalid initial heap size and the app exits.

I also tried through the env JAVA_OPTS and JAVA_TOOL_OPTIONS and these don't seem to do anything, the app just runs but the heap size is not set.

user432024
  • 4,392
  • 8
  • 49
  • 85

1 Answers1

1

You can use quarkus.jib.jvm-additional-arguments if you just want to add arguments.

geoand
  • 60,071
  • 24
  • 172
  • 190