Github user rajkrrsingh commented on the issue:
https://github.com/apache/storm/pull/2670
@priyank5485 I actually verified that STORM_JAR_JVM_OPTS is not propagating
to the java args, the test I ran to confirm is
without the change java command look like
```
+ exec /usr/jdk64/jdk1.8.0_112/bin/java -cp
/usr/hdp/2.6.2.0-205/storm/toollib/storm-kafka-monitor-1.1.0.2.6.2.0-205.jar
org.apache.storm.kafka.monitor.KafkaOffsetLagUtil
```
while with the change and setting STORM_JAR_JVM_OPTS=-Xmx1024m the command
look like
```
+ exec /usr/jdk64/jdk1.8.0_112/bin/java -Xmx1024m -cp
/usr/hdp/2.6.2.0-205/storm/toollib/storm-kafka-monitor-1.1.0.2.6.2.0-205.jar
org.apache.storm.kafka.monitor.KafkaOffsetLagUtil
```
---