本地连接hbase:
Configuration config = HBaseConfiguration.create(); config.set("hbase.zookeeper.quorum", "localhost"); config.set("hbase.zookeeper.property.clientPort", "2181"); HBaseAdmin.checkHBaseAvailable(config); HTable table = new HTable(config, "mytable"); System.out.println("Table testTable obtained!");
线上连接hbase:
config = HBaseConfiguration.create(); config.set("hbase.hbase.zookeeper.quorum", "192.168.1.1,192.168.1.2,192.168.1.3"); config.set("hbase.hbase.zookeeper.property.clientPort", "3325"); config.set("hbase.rpc.timeout", "60000"); config.set("hbase.client.retries.number", "3"); config.set("hbase.client.pause", "100"); config.set("hbase.rpc.timeout", "900000"); config.set("hbase.client.operation.timeout", "900000"); config.set("hbase.regionserver.lease.period", "900000");
相关推荐
### HBase Shell 常用命令详解 #### 一、HBase Shell 概述 HBase Shell 是一个基于命令行的工具,用于与HBase进行交互。它提供了一系列丰富的命令来执行基本的数据管理任务,例如创建表、插入数据、查询数据等。...
这个压缩包文件“hadoop_example_dfng_2nd”包含了书中所提到的所有示例代码,旨在帮助读者更好地理解和实践Hadoop技术。 1. Hadoop核心组件 - HDFS(Hadoop Distributed File System):Hadoop的核心存储系统,它...
Example code for "Hadoop: The Definitive Guide, Third Edition" by Tom White. Copyright (C) 2011 Tom White, 978-1-449-31152-0 http://www.hadoopbook.com/ http://oreilly.com/catalog/9781449311520/ The ...
在这个压缩包中,我们看到的是书中的实例代码,名为“Hadoop-MapReduce-Cookbook-Example-Code-master”。这个项目主要是用Java编写的,反映了MapReduce在大数据处理中的核心应用。 MapReduce是Google提出的一种...
在Hadoop-Real-World-Solutions-Cookbook-Example-Code-master这个压缩包中,包含的代码示例可能涵盖以下Hadoop核心组件和关键概念: 1. **MapReduce**:这是Hadoop的核心组件,用于分布式计算。Map阶段将输入数据...
Generated Code 530 Additional Serialization Systems 531 Database Imports: A Deeper Look 531 Controlling the Import 534 Imports and Consistency 534 Direct-mode Imports 534 Working with Imported Data ...