This document investigates the issue of large stop-the-world (STW) pauses in Java Virtual Machines (JVMs) affecting latency-sensitive applications deployed on Platform as a Service (PaaS). It identifies that some of these pauses are caused by operating system mechanisms rather than garbage collection (GC) events, specifically due to blocking during write operations for GC logging. The authors propose various solutions spanning different layers to mitigate these pauses and enhance JVM performance, sharing their findings and methodologies in the process.