[ 
https://issues.apache.org/jira/browse/HDFS-16400?focusedWorklogId=707207&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-707207
 ]

ASF GitHub Bot logged work on HDFS-16400:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 12/Jan/22 01:28
            Start Date: 12/Jan/22 01:28
    Worklog Time Spent: 10m 
      Work Description: tomscut commented on a change in pull request #3843:
URL: https://github.com/apache/hadoop/pull/3843#discussion_r782644814



##########
File path: 
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataNode.java
##########
@@ -647,13 +650,37 @@ public String reconfigurePropertyImpl(String property, 
String newVal)
       }
       break;
     }
+    case DFS_DATANODE_MAX_RECEIVER_THREADS_KEY:
+      return reconfDataXceiverParameters(property, newVal);
     default:
       break;
     }
     throw new ReconfigurationException(
         property, newVal, getConf().get(property));
   }
 
+  private String reconfDataXceiverParameters(String property, String newVal)
+      throws ReconfigurationException {
+    String result;
+    try {
+      LOG.info("Reconfiguring {} to {}", property, newVal);
+      if (property.equals(DFS_DATANODE_MAX_RECEIVER_THREADS_KEY)) {

Review comment:
       Thanks @tasanuma for your review. I agree with your suggestion. There is 
only one parameter at present. I will fix it.




-- 
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: common-issues-unsubscr...@hadoop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 707207)
    Time Spent: 1h 20m  (was: 1h 10m)

> Reconfig DataXceiver parameters for datanode
> --------------------------------------------
>
>                 Key: HDFS-16400
>                 URL: https://issues.apache.org/jira/browse/HDFS-16400
>             Project: Hadoop HDFS
>          Issue Type: New Feature
>            Reporter: tomscut
>            Assignee: tomscut
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> To avoid frequent rolling restarts of the DN, we should make DataXceiver 
> parameters reconfigurable.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to