Apache9 commented on PR #6981: URL: https://github.com/apache/hbase/pull/6981#issuecomment-2876137925
I checked the test, the problem is because of the test itself. Before restarting the cluster, it does not flush the master, and when cleaning up WALs, it deletes both MasterRegion's store dir and wal dir, not only the wal dir... The correct way to simulate what we actually do on cloud, is to use a differtent rootDir and walRootDir, and delete the walRootDir and zk data, right? Just modify the code like this https://github.com/Apache9/hbase/commit/b4305658acd40ad5fa3512784ccca9b4664f41d1 You can find out that all the 4 tests can pass... -- 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]
