Summary: HBase Notes
Reference link: http://abloz.com/hbase/book.html#d613e75
The final version: https://mirrors.tuna.tsinghua.edu.cn/apache/hbase/1.3.5/hbase-1.3.5-bin.tar.gz
I. installation
Extract it, then modify hbase-site.xml to specify the storage path of the data;
Entering HBase Environment
./bin/hbase shell
3. Other relevant orders
Enter help and < ...
Posted by pas07920 on Tue, 01 Oct 2019 09:35:56 -0700
Four deployment modes and basic operations of HBase
This paper mainly includes two parts. The first part mainly includes four installation methods of HBase, which are: (1) stand-alone mode, (2) pseudo-cluster mode, (3) using zookeeper which comes with HBase to build distributed cluster, and (4) using zookeeper which is installed independently to build distributed cluster. The second part shows t ...
Posted by simpli on Sat, 21 Sep 2019 07:50:49 -0700
Tech | Hbase Migration to SequoiaDB
background
In traditional bank IT architecture, online trading and statistical analysis systems often use different technologies and physical devices to migrate online trading data to the analysis system through ETL which is executed regularly. As a data service resource pool, the same data may be accessed by different types of microservices. ...
Posted by WinterDragon on Wed, 18 Sep 2019 01:50:15 -0700
compact Source of Hbase Source Code
In compact 1, the scheduling process of HBASE compact is introduced. This article mainly introduces the actual process of compact. First access from the chore in the above, in the compact Checker chore method in HRegionserver, we will determine whether compact is needed, as follows:
protected void chore() {
//Loop detection by travers ...
Posted by gizzmo on Tue, 06 Aug 2019 02:52:14 -0700
Hbase High Availability Cluster Building
Cluster Resource and Role Planning
node1
node2
node3
node4
node5
zookeeper
zookeeper
zookeeper
nn1
nn2
datanode
datanode
datanode
datanode
datanode
journal
journal
journal
rm1
rm2
nodemanager
nodemanager
nodemanager
nodemanager
nodemanager
HMaster
HMaster
HRegionServe ...
Posted by nikkio3000 on Tue, 30 Jul 2019 14:17:05 -0700
Prepartitioning of HBase
1. Why pre-partition?
* Increase data read-write efficiency
* Load balancing to prevent data skewing
* Convenient cluster disaster relief dispatch region
* Optimize the number of Map s
2. How to pre-partition?
Each region maintains the startRow and endRowKey, and if the data added matches the r ...
Posted by ChrisFlynn on Tue, 30 Jul 2019 10:48:52 -0700
Construction of Hadoop Pseudo-Distribution Environment and hbase Configuration in ubantu System
I don't know much about hadoop, but I have encountered a lot of unexpected mistakes in the course of construction. Now I summarize how to build and common error solutions, hoping to help you all.
If the following contents are infringed, please contact the author to delete, thank you!
First of all, the author uploaded the software version used ...
Posted by BRUm on Mon, 15 Jul 2019 16:09:43 -0700
Phoenix Installation and Its Use
Introduction to Phoenix
Phoenix is an open source SQL engine for HBase. You can use the standard JDBC API instead of the HBase client API to create tables, insert data, and query your HBase data.Phoenix is an SQL engine built on HBase. You may have "Will Phoenix reduce the efficiency of HBase?" Or "Is Phoenix inefficient?" ...
Posted by n14charlie on Sun, 07 Jul 2019 13:17:47 -0700
HBase Coprocessor Details
1. Brief description
When using HBase, if you have billions of rows or millions of columns of data, the ability to return a large amount of data in a query is subject to the bandwidth of the network, and even if the network conditions allow, the client's computing may not be able to meet the requirements.In this case, Coprocessors arise.It all ...
Posted by richard-elland on Sun, 23 Jun 2019 09:53:31 -0700
Full Link Monitoring Tool Pinpoint 1.8.2 Deployment
Reference resources
https://github.com/naver/pinpoint-dockerhttps://www.cnblogs.com/zz0412/p/9333296.htmlhttps://blog.csdn.net/qq_21816375/article/details/80455681
brief introductionPinpoint is a full-link analysis tool, which provides non-intrusive call chain monitoring, method execution details viewing, application status information monit ...
Posted by deejay1111 on Sat, 18 May 2019 22:44:55 -0700