You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by GitBox <gi...@apache.org> on 2021/07/07 12:14:43 UTC

[GitHub] [hadoop] wojiaodoubao commented on a change in pull request #3141: HDFS-16087. Fix stuck issue in rbfbalance tool.

wojiaodoubao commented on a change in pull request #3141:
URL: https://github.com/apache/hadoop/pull/3141#discussion_r665311980



##########
File path: hadoop-hdfs-project/hadoop-hdfs-rbf/src/test/java/org/apache/hadoop/hdfs/rbfbalance/TestRouterDistCpProcedure.java
##########
@@ -0,0 +1,120 @@
+/**
+ * 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
+ * <p>
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * <p>
+ * 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.hadoop.hdfs.rbfbalance;
+
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.permission.FsPermission;
+import org.apache.hadoop.ha.HAServiceProtocol;
+import org.apache.hadoop.hdfs.DFSClient;
+import org.apache.hadoop.hdfs.server.federation.MiniRouterDFSCluster;
+import org.apache.hadoop.hdfs.server.federation.RouterConfigBuilder;
+import org.apache.hadoop.hdfs.server.federation.StateStoreDFSCluster;
+import org.apache.hadoop.hdfs.server.federation.resolver.ActiveNamenodeResolver;
+import org.apache.hadoop.hdfs.server.federation.resolver.MountTableManager;
+import org.apache.hadoop.hdfs.server.federation.router.RBFConfigKeys;
+import org.apache.hadoop.hdfs.server.federation.router.Router;
+import org.apache.hadoop.hdfs.server.federation.store.StateStoreService;
+import org.apache.hadoop.hdfs.server.federation.store.impl.MountTableStoreImpl;
+import org.apache.hadoop.hdfs.server.federation.store.protocol.AddMountTableEntryRequest;
+import org.apache.hadoop.hdfs.server.federation.store.protocol.AddMountTableEntryResponse;
+import org.apache.hadoop.hdfs.server.federation.store.records.MountTable;
+import org.apache.hadoop.ipc.RemoteException;
+import org.apache.hadoop.tools.fedbalance.DistCpProcedure.Stage;
+import org.apache.hadoop.tools.fedbalance.FedBalanceContext;
+import org.apache.hadoop.tools.fedbalance.TestDistCpProcedure;
+import org.apache.hadoop.util.Time;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+
+import java.net.InetSocketAddress;
+import java.net.URI;
+import java.util.Collections;
+
+import static org.apache.hadoop.hdfs.server.federation.FederationTestUtils.createNamenodeReport;
+import static org.apache.hadoop.test.LambdaTestUtils.intercept;
+import static org.junit.Assert.assertTrue;
+
+
+public class TestRouterDistCpProcedure extends TestDistCpProcedure {
+    private static StateStoreDFSCluster cluster;
+    private static MiniRouterDFSCluster.RouterContext routerContext;
+    private static Configuration routerConf;
+    private static StateStoreService stateStore;
+
+    @BeforeClass
+    public static void globalSetUp() throws Exception {
+        cluster = new StateStoreDFSCluster(false, 1);
+        // Build and start a router with State Store + admin + RPC
+        Configuration conf = new RouterConfigBuilder()
+                .stateStore()
+                .admin()
+                .rpc()
+                .build();
+        cluster.addRouterOverrides(conf);
+        cluster.startRouters();
+        routerContext = cluster.getRandomRouter();
+        Router router = routerContext.getRouter();
+        stateStore = router.getStateStore();
+
+        // Add one name services for testing
+        ActiveNamenodeResolver membership = router.getNamenodeResolver();
+        membership.registerNamenode(createNamenodeReport("ns0", "nn1",
+                HAServiceProtocol.HAServiceState.ACTIVE));
+        stateStore.refreshCaches(true);
+
+        routerConf = new Configuration();
+        InetSocketAddress routerSocket = router.getAdminServerAddress();
+        routerConf.setSocketAddr(RBFConfigKeys.DFS_ROUTER_ADMIN_ADDRESS_KEY,
+                routerSocket);
+    }
+
+    @Override
+    public void testDisableWrite() throws Exception {
+        // Firstly add mount entry: /test-write->{ns0,/test-write}.
+        String mount = "/test-write";
+        MountTable newEntry = MountTable
+                .newInstance(mount, Collections.singletonMap("ns0", mount),
+                        Time.now(), Time.now());
+        MountTableManager mountTable =
+                routerContext.getAdminClient().getMountTableManager();
+        AddMountTableEntryRequest addRequest =
+                AddMountTableEntryRequest.newInstance(newEntry);
+        AddMountTableEntryResponse addResponse =
+                mountTable.addMountTableEntry(addRequest);
+        assertTrue(addResponse.getStatus());
+        stateStore.loadCache(MountTableStoreImpl.class, true); // load cache.
+
+        // Construct client.
+        URI address = routerContext.getFileSystemURI();
+        DFSClient routerClient = new DFSClient(address, routerConf);
+
+        FedBalanceContext context = new FedBalanceContext
+                .Builder(null, null, mount, routerConf).build();
+        RouterDistCpProcedure dcProcedure = new RouterDistCpProcedure();
+        executeProcedure(dcProcedure, Stage.FINAL_DISTCP,
+                () -> dcProcedure.disableWrite(context));

Review comment:
       I think we can set the stage to Stage.DISABLE_WRITE and then call ()->dcProcedure.execute() instead of calling dcProcedure.disableWrite(context).  This is to test whether DistCpProcedure handles Stage.DISABLE_WRITE as expected.

##########
File path: hadoop-hdfs-project/hadoop-hdfs-rbf/src/test/java/org/apache/hadoop/hdfs/rbfbalance/TestRouterDistCpProcedure.java
##########
@@ -0,0 +1,120 @@
+/**
+ * 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
+ * <p>
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * <p>
+ * 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.hadoop.hdfs.rbfbalance;
+
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.permission.FsPermission;
+import org.apache.hadoop.ha.HAServiceProtocol;
+import org.apache.hadoop.hdfs.DFSClient;
+import org.apache.hadoop.hdfs.server.federation.MiniRouterDFSCluster;
+import org.apache.hadoop.hdfs.server.federation.RouterConfigBuilder;
+import org.apache.hadoop.hdfs.server.federation.StateStoreDFSCluster;
+import org.apache.hadoop.hdfs.server.federation.resolver.ActiveNamenodeResolver;
+import org.apache.hadoop.hdfs.server.federation.resolver.MountTableManager;
+import org.apache.hadoop.hdfs.server.federation.router.RBFConfigKeys;
+import org.apache.hadoop.hdfs.server.federation.router.Router;
+import org.apache.hadoop.hdfs.server.federation.store.StateStoreService;
+import org.apache.hadoop.hdfs.server.federation.store.impl.MountTableStoreImpl;
+import org.apache.hadoop.hdfs.server.federation.store.protocol.AddMountTableEntryRequest;
+import org.apache.hadoop.hdfs.server.federation.store.protocol.AddMountTableEntryResponse;
+import org.apache.hadoop.hdfs.server.federation.store.records.MountTable;
+import org.apache.hadoop.ipc.RemoteException;
+import org.apache.hadoop.tools.fedbalance.DistCpProcedure.Stage;
+import org.apache.hadoop.tools.fedbalance.FedBalanceContext;
+import org.apache.hadoop.tools.fedbalance.TestDistCpProcedure;
+import org.apache.hadoop.util.Time;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+
+import java.net.InetSocketAddress;
+import java.net.URI;
+import java.util.Collections;
+
+import static org.apache.hadoop.hdfs.server.federation.FederationTestUtils.createNamenodeReport;
+import static org.apache.hadoop.test.LambdaTestUtils.intercept;
+import static org.junit.Assert.assertTrue;
+
+
+public class TestRouterDistCpProcedure extends TestDistCpProcedure {

Review comment:
       Good work. Some minor comments. The indentation should be 2 space not 4.

##########
File path: hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/rbfbalance/RouterDistCpProcedure.java
##########
@@ -44,6 +44,7 @@ protected void disableWrite(FedBalanceContext context) throws IOException {
     Configuration conf = context.getConf();
     String mount = context.getMount();
     MountTableProcedure.disableWrite(mount, conf);
+    updateStage(Stage.FINAL_DISTCP);

Review comment:
       Thanks @lipppppp for your nice report ! The change is correct. The DISABLE_WRITE is a stage of the DistCpProcedure. In DistCpProcedure it disables write by cancel the permission. The RouterDistCpProcedure extends DistCpProcedure and disables write by set mount point read only. But RouterDistCpProcedure forgets to update the stage.
   Hi @lipppppp, could you also help adding a test case?




-- 
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-unsubscribe@hadoop.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org