JVM performance tuning for large applications

前端 未结 7 675
生来不讨喜
生来不讨喜 2021-01-29 20:10

The default JVM parameters are not optimal for running large applications. Any insights from people who have tuned it on a real application would be helpful. We are running the

相关标签:
7条回答
  • 2021-01-29 20:54

    I suggest you profile your application with CPU sampling and object allocation monitoring turned on at the same time. You will find you get very different results which can be helpful in tuning your code. Also try using the built in hprof profiler, it can give very different results as well.

    In general profiling your application makes much more difference than JVM args.

    0 讨论(0)
提交回复
热议问题