You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2020/04/01 21:19:50 UTC

[GitHub] [flink] walterddr commented on a change in pull request #11586: [FLINK-5552][runtime] make JMXServer static per JVM

walterddr commented on a change in pull request #11586: [FLINK-5552][runtime] make JMXServer static per JVM
URL: https://github.com/apache/flink/pull/11586#discussion_r401913457
 
 

 ##########
 File path: flink-core/src/main/java/org/apache/flink/configuration/JMXServerOptions.java
 ##########
 @@ -0,0 +1,46 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.configuration;
+
+import org.apache.flink.annotation.PublicEvolving;
+import org.apache.flink.annotation.docs.Documentation;
+
+import static org.apache.flink.configuration.ConfigOptions.key;
+
+/**
+ * The set of configuration options relating to heartbeat manager settings.
+ */
+@PublicEvolving
+public class JMXServerOptions {
+
+	/** Port configured to enable JMX server for metrics and debugging. */
+	@Documentation.Section(Documentation.Sections.COMMON_MISCELLANEOUS)
 
 Review comment:
   there are 2 usages I can think of with JMXServer 
     - for remote RMI attachment (jconsole/jvisualvm/...)
     - for metrics reporting (jmx.reporter). 
   
   There's definitely a chance where user want to only enable JMXRMI capability, not the reporter 
     - JMXRMI during normal operation doesn't attach any MBean to the JMX MBeanServer; ( there's only performance implication when a remote console is attached)
     - JMX reporter will always register MBeans for reporting purpose. 
   
   do you think there is any other place more suitable to put this config? 

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services