tasanuma commented on a change in pull request #4069:
URL: https://github.com/apache/hadoop/pull/4069#discussion_r841243967
##########
File path:
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestDataNodeReconfiguration.java
##########
@@ -756,4 +759,33 @@ public void testDfsUsageParameters() throws
ReconfigurationException {
}
}
}
+
+ public static class DummyCachingGetSpaceUsed extends CachingGetSpaceUsed {
+ public DummyCachingGetSpaceUsed(Builder builder) throws IOException {
+ super(builder.setInterval(1000).setJitter(0L));
+ }
+
+ @Override
+ protected void refresh() {
+ counter++;
+ }
+ }
+
+ @Test
+ public void testDfsUsageKlass() throws IOException, ReconfigurationException,
+ InterruptedException {
+
+ long lastCounter = counter;
+ Thread.sleep(5000);
+ assertTrue(counter > lastCounter);
+
+ for (int i = 0; i < NUM_DATA_NODE; i++) {
+ DataNode dn = cluster.getDataNodes().get(i);
+ dn.reconfigurePropertyImpl(FS_GETSPACEUSED_CLASSNAME, null);
+ }
+
+ lastCounter = counter;
+ Thread.sleep(5000);
+ assertEquals(lastCounter, counter);
+ }
Review comment:
@singer-bin
- As well as other reconfiguring properties of DataNode, I prefer to be able
to update parameters by calling `reconf.. .Parameters(property, newVal)`.
- I think this PR is similar to #3863. Instead of creating the new method of
`reconfSpaceUsedKlass()`, how about extending `reconfDfsUsageParameters` to
update `fs.getspaceused.classname`?
--
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]