imbajin commented on code in PR #2906:
URL: 
https://github.com/apache/incubator-hugegraph/pull/2906#discussion_r2544826117


##########
hugegraph-pd/hg-pd-core/src/main/java/org/apache/hugegraph/pd/raft/RaftReflectionUtil.java:
##########
@@ -0,0 +1,93 @@
+/*
+ * 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.hugegraph.pd.raft;
+
+import com.alipay.sofa.jraft.Node;
+import com.alipay.sofa.jraft.ReplicatorGroup;
+import com.alipay.sofa.jraft.core.Replicator;
+import com.alipay.sofa.jraft.entity.PeerId;
+import com.alipay.sofa.jraft.util.ThreadId;
+
+import lombok.extern.slf4j.Slf4j;
+
+@Slf4j
+public class RaftReflectionUtil {
+
+    public static Replicator.State getReplicatorState(Node node, PeerId 
peerId) {
+        if (node == null || peerId == null) {
+            return null;
+        }
+
+        // Get ReplicatorGroup from Node
+        var clz = node.getClass();
+        ReplicatorGroup replicateGroup = null;
+        try {
+            var f = clz.getDeclaredField("replicatorGroup");
+            f.setAccessible(true);
+            try {
+                replicateGroup = (ReplicatorGroup)f.get(node);
+            }
+            finally {
+                f.setAccessible(false);
+            }
+        }
+        catch (NoSuchFieldException | IllegalAccessException e) {
+            log.info("getReplicatorGroup: error {}", e.getMessage());
+            return null;
+        }
+
+        if (replicateGroup == null) {
+            return null;
+        }
+
+        ThreadId threadId = replicateGroup.getReplicator(peerId);
+        if (threadId == null) {
+            return null;
+        }
+        else {
+            Replicator r = (Replicator)threadId.lock();
+            try {
+                if (r == null) {
+                    return Replicator.State.Probe;
+                }
+                Replicator.State result = null;
+
+                // Get state from Replicator
+
+                var replicatorClz = r.getClass();
+                try {
+                    var f = replicatorClz.getDeclaredField("state");
+                    f.setAccessible(true);
+                    try {
+                        result = (Replicator.State)f.get(r);
+                    }
+                    finally {
+                        f.setAccessible(false);
+                    }
+                }
+                catch (NoSuchFieldException | IllegalAccessException e) {
+                    log.info("getReplicatorState: error {}", e.getMessage());

Review Comment:
   🧹 **日志信息不一致**
   
   在获取 Replicator state 时的错误日志中,方法名仍然写的是 "getReplicatorGroup",但实际应该是 
"getReplicatorState":
   
   ```java
   log.info("getReplicatorState: error {}", e.getMessage());
   ```
   
   建议统一日志格式,并考虑使用 `log.warn` 或 `log.error` 而不是 `log.info`,因为这是一个异常情况:
   
   ```suggestion
   log.warn("Failed to get replicator state via reflection: {}", 
e.getMessage(), e);
   ```
   
   同时建议在第 50 行的日志也做类似修改。



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to