Using CarbonData from Scratch
This section is for MRS 3.x or earlier. For MRS 3.x or later, see Using CarbonData (for MRS 3.x or Later).
This section describes the procedure of using Spark CarbonData. All tasks are based on the Spark-beeline environment. The tasks include:
- Connecting to Spark
Before performing any operation on CarbonData, users must connect CarbonData to Spark.
- Creating a CarbonData table
After connecting to Spark, users must create a CarbonData table to load and query data.
- Loading data to the CarbonData table
Users load data from CSV files in HDFS to the CarbonData table.
- Querying data from the CarbonData table
After data is loaded to the CarbonData table, users can run query commands such as groupby and where.
Prerequisites
A client has been installed. For details, see Using an MRS Client.
Procedure
- Connect CarbonData to Spark.
- Prepare a client based on service requirements and use user root to log in to the node where the client is installed.
For example, if you have updated the client on the Master2 node, log in to the Master2 node to use the client. For details, see Using an MRS Client.
- Run the following commands to switch the user and configure environment variables:
source /opt/client/bigdata_env
- For clusters with Kerberos authentication enabled, run the following command to authenticate the user. For clusters with Kerberos authentication disabled, skip this step.
The user needs to be added to user groups hadoop (primary group) and hive.
- Run the following command to connect to the Spark environment.
- Prepare a client based on service requirements and use user root to log in to the node where the client is installed.
- Create a CarbonData table.
Run the following command to create a CarbonData table, which is used to load and query data.
CREATE TABLE x1 (imei string, deviceInformationId int, mac string, productdate timestamp, updatetime timestamp, gamePointId double, contractNumber double)
STORED BY 'org.apache.carbondata.format'
TBLPROPERTIES ('DICTIONARY_EXCLUDE'='mac','DICTIONARY_INCLUDE'='deviceInformationId');
The command output is as follows:
+---------+--+ | result | +---------+--+ +---------+--+ No rows selected (1.551 seconds)
- Load data from CSV files to the CarbonData table.
Run the command to load data from CSV files based on the required parameters. Only CSV files are supported. The CSV column name and sequence configured in the LOAD command must be consistent with those in the CarbonData table. The data formats and number of data columns in the CSV files must also be the same as those in the CarbonData table.
The CSV files must be stored on HDFS. You can upload the files to OBS and import them from OBS to HDFS on the Files page of the MRS console.
If Kerberos authentication is enabled, prepare the CSV files in the work environment and import them to HDFS using open-source HDFS commands. In addition, assign the Spark user with the read and execute permissions of the files on HDFS by referring to 5.
For example, the data.csv file is saved in the tmp directory of HDFS with the following contents:
x123,111,dd,2017-04-20 08:51:27,2017-04-20 07:56:51,2222,33333
The command for loading data from that file is as follows:
LOAD DATA inpath 'hdfs://hacluster/tmp/data.csv' into table x1 options('DELIMITER'=',','QUOTECHAR'='"','FILEHEADER'='imei, deviceinformationid,mac,productdate,updatetime,gamepointid,contractnumber');
The command output is as follows:
+---------+--+ | Result | +---------+--+ +---------+--+ No rows selected (3.039 seconds)
- Query data from the CarbonData.
- Obtaining the number of records
Run the following command to obtain the number of records in the CarbonData table:
select count(*) from x1;
- Querying with the groupby condition
Run the following command to obtain the deviceinformationid records without repetition in the CarbonData table:
select deviceinformationid,count (distinct deviceinformationid) from x1 group by deviceinformationid;
- Querying with the where condition
Run the following command to obtain specific deviceinformationid records:
select * from x1 where deviceinformationid='111';
- Obtaining the number of records
- Run the following command to exit the Spark environment.
!quit
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot