dmagda commented on a change in pull request #8630:
URL: https://github.com/apache/ignite/pull/8630#discussion_r555213699



##########
File path: docs/_docs/setup.adoc
##########
@@ -278,6 +278,49 @@ directory to discover other Ignite nodes.
 |=======================================================================
 
 
+== Setting JVM Options
+
+There are several ways you can set JVM options when starting a node with the 
`ignite.sh` script.
+These ways are described in the following sections.
+
+=== JVM_OPTS System Variable
+
+You can set the `JVM_OPTS` environment variable:
+
+[source, shell]
+----
+export JVM_OPTS="$JVM_OPTS -Xmx6G -DIGNITE_TO_STRING_INCLUDE_SENSITIVE=false"; 
$IGNITE_HOME/bin/ignite.sh
+----
+
+=== Command Line Arguments
+
+You can also pass JVM options by using the `-J` prefix:
+
+[source, shell]
+----
+./ignite.sh -J-Xmx6G -J-DIGNITE_TO_STRING_INCLUDE_SENSITIVE=false

Review comment:
       Could you add two tabs here for Unix and Windows respectively? The 
latter will run the same command but using "ignite.bat"

##########
File path: docs/_docs/setup.adoc
##########
@@ -278,6 +278,49 @@ directory to discover other Ignite nodes.
 |=======================================================================
 
 
+== Setting JVM Options
+
+There are several ways you can set JVM options when starting a node with the 
`ignite.sh` script.
+These ways are described in the following sections.
+
+=== JVM_OPTS System Variable
+
+You can set the `JVM_OPTS` environment variable:
+
+[source, shell]
+----
+export JVM_OPTS="$JVM_OPTS -Xmx6G -DIGNITE_TO_STRING_INCLUDE_SENSITIVE=false"; 
$IGNITE_HOME/bin/ignite.sh
+----
+
+=== Command Line Arguments
+
+You can also pass JVM options by using the `-J` prefix:
+
+[source, shell]
+----
+./ignite.sh -J-Xmx6G -J-DIGNITE_TO_STRING_INCLUDE_SENSITIVE=false
+----
+
+== Setting Ignite System Properties
+
+In addition to public configuration settings, you can adjust specific, usually 
low-level, Ignite behavior with internal system properties. You can find all 
the properties with their descriptions and default values by using the command 
below:
+
+[source, shell]
+----
+./ignite.sh -systemProps

Review comment:
       Could you add two tabs here for Unix and Windows respectively? The 
latter will run the same command but using "ignite.bat"




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to