Camunda Spring Boot VIRT memory issue on Linux

HI All,

I created a camunda Spring Boot application having 2 bpmn and 1 dmn and is using h2 database(There are no other java class except SpringBoot main class). This application was deployed on RHEL. When performance is examined with linux top command we observed VIRT is showing almost 6gb.

Is there any way it can be optimized or is it the expected behavior.

Camunda Version - 7.11.0

Gradle dependencies used -

dependencies {

    annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"

    implementation group: 'org.camunda.bpm.springboot', name: 'camunda-bpm-spring-boot-starter', version: '3.3.2'

    implementation group: 'org.camunda.bpm.springboot', name: 'camunda-bpm-spring-boot-starter-webapp', version: '3.3.2'

    implementation group: 'org.camunda.bpm.springboot', name: 'camunda-bpm-spring-boot-starter-rest', version: '3.3.2'

    implementation group: 'org.camunda.bpm', name: 'camunda-engine-plugin-spin', version: '7.11.0'

    implementation group: 'org.camunda.spin', name: 'camunda-spin-dataformat-json-jackson', version: '1.6.7'

    implementation group: 'org.camunda.spin', name: 'camunda-spin-dataformat-xml-dom', version: '1.6.7'

    implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.4.13'

    implementation group: 'org.springframework', name: 'spring-tx', version: '5.1.8.RELEASE'

    implementation group: 'com.h2database', name: 'h2', version: '1.4.199'

}

@Niall - Any help or comment on this ?