Skip to content

How to customize JVM options on Azure Functions

Ahmed El Sayed edited this page Dec 15, 2021 · 9 revisions
  • Dedicated and Premium Functions:
    Create an app setting named JAVA_OPTS with a value of your customizing parameters for example “-Dexample=true”. If you already have the JAVA_OPTS app setting set, just append “-Dexample=true” to the existing value.

  • Consumption Functions:
    Linux: Create an app setting named “languageWorkers__java__arguments” with a value of “-Dexample=true”.
    Windows: Create an app setting named “languageWorkers:java:arguments” with a value of “-Dexample=true”.

Clone this wiki locally