Creating Configuration
Function
HBase obtain configuration items by using the login method. The configuration items include user login information and security authentication information.
Example Codes
The following code snippet belongs to the init method in the TestMain class of the com.huawei.bigdata.hbase.examples package.
private static void init() throws IOException {
// Default load from conf directory
conf = HBaseConfiguration.create();
//In Windows environment
String userdir = TestMain.class.getClassLoader().getResource("conf").getPath() + File.separator;
//In Linux environment
//String userdir = System.getProperty("user.dir") + File.separator + "conf" + File.separator;
conf.addResource(new Path(userdir + "core-site.xml"), false);
conf.addResource(new Path(userdir + "hdfs-site.xml"), false);
conf.addResource(new Path(userdir + "hbase-site.xml"), false);
} Last Article: Configuring Log4j Log Output
Next Article: Creating Connection
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.