2021SC@SDUSC HBase project code analysis - RPC communication
2021SC@SDUSC
1, Introduction to RPC
As a distributed system, the design of HBase is a typical master save architecture. HBase mainly has three roles: Master, RegionServer and Client, and RPC is the communication link between master, RegionServer and Client. Client There are many clients, such as hbase shell, java client API, etc. the cli ...
Posted by dragonfly4 on Wed, 06 Oct 2021 16:29:35 +0200
How to connect hbase stand-alone version (using external zk) and java api
How to connect hbase stand-alone version (using external zk) and java api
0 create modify information
timecontentremarks20210927create documents
0 version
Component nameeditionDownload addressoperating systemcentos7CentOS-7-x86_64-DVD-2009.isojdk1.8jdk-8u301-linux-x64.tar.gzhadoop3.0.0hadoop-3.0.0.tar.gzzookeeper3.4.5zookeeper-3.4.5.tar.gzhb ...
Posted by Savahn on Sat, 02 Oct 2021 03:07:21 +0200
2021SC@SDUSC HBase project analysis: installation, configuration and division of labor
2021SC@SDUSC
catalogue
HBase overview
HBase cluster installation
Hadoop installation and configuration
ZooKeeper installation and configuration
Hbase installation and configuration
Hbase source code download
Intra group division of labor
2021SC@SDUSC
HBase overview
HBase is a distributed, high reliable The NoSQL ...
Posted by Jordi_E on Tue, 28 Sep 2021 19:54:25 +0200
From Hadoop high availability to HBase environment construction
From Hadoop high availability to HBase environment construction (in virtual machine)
Objective: to build and install HBase in the environment
Idea: after completing the basic configuration of the master master, use cloning to complete the high availability cluster
1. Configure network
First, check the network address of the local computer ...
Posted by detrox on Tue, 21 Sep 2021 05:05:35 +0200
Basic common commands and examples of hbase
Basic commands and examples of hbase
ddl command
1. Create table
2. Add column family
3. Delete a column family
4. View table structure
5. Check whether the table exists
6. Delete table
Create a tablespace and create tables under it
1. Create a tablespace
2. Create table in table space
3. View the ...
Posted by sherri on Thu, 25 Jun 2020 12:47:05 +0200
Detailed explanation of RowFilter of HBase Filter
**This paper introduces the use of the Java & shell API of HBase RowFilter in detail, and posts the relevant sample code for reference. RowFilter filters based on row keys. When it comes to data filtering through HBase Rowkey, you can consider using it. For details and principle of comparator, please refer to the previous revision: Comparat ...
Posted by jonners on Tue, 05 May 2020 08:00:28 +0200
Hadoop 8-day course - day 6, MapReduce details
hive
About hive
A tool for translating sql statements into mapreduce programs.
Create table statement
CREATE TABLE page_view(viewTime INT, userid BIGINT,
page_url STRING, referrer_url STRING,
ip STRING COMMENT 'IP Address of the User')
COMMENT 'This is the page view table'
PARTITIONED BY(dt STRING, country STRING)
ROW FORMAT DELIMI ...
Posted by mainewoods on Wed, 29 Apr 2020 14:54:07 +0200
Source code interpretation - (3) HBase examples multithreadedclientexample
Address: http://aperise.iteye.com/blog/2372534
Source code interpretation - (1)hbase client source code
http://aperise.iteye.com/blog/2372350
Source code interpretation - (2) HBase examples bufferedmutator example
http://aperise.iteye.com/blog/2372505
Source code interpretation - (3) HBase examples multithreadedc ...
Posted by point86 on Thu, 02 Apr 2020 02:58:55 +0200
Phoenix + HBase, let you operate HBase like MySQL
Operation of Phoenix associated HBase (three cases)
Situation 1: Hbase already has existing tables. You can create corresponding views in Phoenix. Views can only be queried, not added, deleted or modified
Table has been created and data exists in hbase, table name: phoenix
Create the corresponding view in phoenix
create view "phoenix"(
pk ...
Posted by estero2002 on Wed, 01 Apr 2020 21:47:10 +0200
HBase shell command create table and add data operation
Create a table with the NAME hbase_. The HBase table is composed of Key values. In this table, the Key is NAME
This table has two column families, CF1 and CF2. Under CF1 and CF2, there are two columns, name and gender, Chinese and Math
1. There are two column families CF1 and CF2 in creating table HBase
hbase(main):041:0&g ...
Posted by delickate on Wed, 11 Dec 2019 22:08:13 +0100