You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Sakthi (JIRA)" <ji...@apache.org> on 2018/07/30 22:34:00 UTC

[jira] [Created] (HBASE-20984) Add/Modify test case to check custom hbase.wal.dir outside hdfs filesystem

Sakthi created HBASE-20984:
------------------------------

             Summary: Add/Modify test case to check custom hbase.wal.dir outside hdfs filesystem
                 Key: HBASE-20984
                 URL: https://issues.apache.org/jira/browse/HBASE-20984
             Project: HBase
          Issue Type: Bug
            Reporter: Sakthi
            Assignee: Sakthi


The currentĀ setup in TestWALFactory tries to create custom WAL directory outside hdfs but ends up creating a custom WAL directory inside hdfs.

{code:java}
public static void setUpBeforeClass() throws Exception {
    CommonFSUtils.setWALRootDir(TEST_UTIL.getConfiguration(), new Path("file:///tmp/wal")); // A local filesytem WAL is attempted
...
    hbaseDir = TEST_UTIL.createRootDir();
    hbaseWALDir = TEST_UTIL.createWALRootDir(); // But a directory inside hdfs is created here using HBaseTestingUtility#getNewDataTestDirOnTestFS
}
{code}

The change was made in HBASE-20723





--
This message was sent by Atlassian JIRA
(v7.6.3#76005)