skorotkov commented on code in PR #11536:
URL: https://github.com/apache/ignite/pull/11536#discussion_r1762259973
##########
modules/ducktests/tests/ignitetest/services/utils/jvm_utils.py:
##########
@@ -31,14 +31,14 @@
def create_jvm_settings(heap_size=DEFAULT_HEAP, gc_settings=JVM_PARAMS_GC_G1,
generic_params=JVM_PARAMS_GENERIC,
- gc_dump_path=None, oom_path=None, vm_error_path=None):
+ gc_dump_path=None, oom_path=None, vm_error_path=None,):
"""
Provides settings string for JVM process.
param opts: JVM options to merge. Adds new or rewrites default values. Can
be list or string.
"""
gc_dump = ""
if gc_dump_path:
- gc_dump = "-verbose:gc -Xloggc:" + gc_dump_path
+ gc_dump = "-Xlog:gc:" + gc_dump_path
Review Comment:
Please use more readable settings for log file like
-Xlog:gc*=debug,gc+stats*=debug,gc+ergo*=debug:/mnt/service/logs/gc.log:uptime,time,level,tags
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]