DDL Operations on CarbonData

This tutorial will guide you through the data definition language support provided by CarbonData.

Overview

The following DDL operations are supported in CarbonData :

CREATE TABLE

This command can be used to create carbon table by specifying the list of fields along with the table properties.

CREATE TABLE [IF NOT EXISTS] [db_name.]table_name 
                 [(col_name data_type , ...)]               
           STORED BY 'carbondata'
                 [TBLPROPERTIES (property_name=property_value, ...)]
                 // All Carbon's additional table options will go into properties

Parameter Description

ParameterDescriptionOptional
db_nameName of the Database. Database name should consist of Alphanumeric characters and underscore(_) special character.Yes
field_listComma separated List of fields with data type. The field names should consist of Alphanumeric characters and underscore(_) special character.No
table_nameThe name of the table in Database. Table Name should consist of Alphanumeric characters and underscore(_) special character.No
STORED BY“org.apache.carbondata.format”, identifies and creates carbon table.No
TBLPROPERTIESList of carbon table properties.

Usage Guideline

Following are the table properties usage.

  • Dictionary Encoding Configuration

    By Default dictionary encoding will be enabled for all String columns, and disabled for non-String columns. User can include and exclude columns for dictionary encoding.

    TBLPROPERTIES ("DICTIONARY_EXCLUDE"="column1, column2") 
    TBLPROPERTIES ("DICTIONARY_INCLUDE"="column1, column2") 
    

    Here, DICTIONARY_EXCLUDE will exclude dictionary creation. This is applicable for high-cardinality columns and is an optional parameter. DICTIONARY_INCLUDE will generate dictionary for the columns specified in the list.

  • Row/Column Format Configuration

    Column groups with more than one column are stored in row format, instead of columnar format. By default, each column is a separate column group.

    TBLPROPERTIES ("COLUMN_GROUPS"="(column1,column3),(Column4,Column5,Column6)") 
    
  • Table Block Size Configuration

    The block size of table files can be defined using the property TABLE_BLOCKSIZE. It accepts only integer values. The default value is set to 1024MB and supports a range of 1MB to 2048MB. If the user does'nt specify this value in the DDL command , default value is used.

    TBLPROPERTIES ("TABLE_BLOCKSIZE"="512 MB")
    

    Here 512 MB means the block size of this table is 512 MB, user also can set it as 512M or 512.

  • Inverted Index Configuration

    Inverted index is very useful to improve compression ratio and query speed, especially for those low-cardinality columns who are in reward position. By default inverted index is enabled. The user can disable the inverted index creation for some columns.

    TBLPROPERTIES ("NO_INVERTED_INDEX"="column1,column3")
    

    No inverted index shall be generated for the columns specified in NO_INVERTED_INDEX. This property is applicable on columns with high-cardinality and is an optional parameter.

    Note :

    • By default all columns other than numeric datatype are treated as dimensions and all columns of numeric datatype are treated as measures.

    • All dimensions except complex datatype columns are part of multi dimensional key(MDK). This behavior can be overridden by using TBLPROPERTIES, If the user wants to keep any column (except columns of complex datatype) in multi dimensional key then he can keep the columns either in DICTIONARY_EXCLUDE or DICTIONARY_INCLUDE.

Example:

CREATE TABLE IF NOT EXISTS productSchema.productSalesTable (
                             productNumber Int,
                             productName String, 
                             storeCity String, 
                             storeProvince String, 
                             productCategory String, 
                             productBatch String,
                             saleQuantity Int,
                             revenue Int)       
                  STORED BY 'carbondata' 
                  TBLPROPERTIES ('COLUMN_GROUPS'='(productName,productCategory)',
                                'DICTIONARY_EXCLUDE'='productName',
                                'DICTIONARY_INCLUDE'='productNumber',
                                'NO_INVERTED_INDEX'='productBatch')

SHOW TABLE

This command can be used to list all the tables in current database or all the tables of a specific database.

SHOW TABLES [IN db_Name];

Parameter Description

ParameterDescriptionOptional
IN db_NameName of the database. Required only if tables of this specific database are to be listed.Yes

Example:

SHOW TABLES IN ProductSchema;

DROP TABLE

This command can be used to delete the existing table.

DROP TABLE [IF EXISTS] [db_name.]table_name;

Parameter Description

ParameterDescriptionOptional
db_NameName of the database. If not specified, current database will be selected.YES
table_nameName of the table to be deleted.NO

Example:

DROP TABLE IF EXISTS productSchema.productSalesTable;

COMPACTION

This command will merge the specified number of segments into one segment. This will enhance the query performance of the table.

ALTER TABLE [db_name.]table_name COMPACT 'MINOR/MAJOR';

To get details about Compaction refer to Data Management

Parameter Description

ParameterDescriptionOptional
db_nameDatabase name, if it is not specified then it uses current database.YES
table_nameThe name of the table in provided database.NO

Syntax

  • Minor Compaction
ALTER TABLE carbontable COMPACT MINOR;
  • Major Compaction
ALTER TABLE carbontable COMPACT MAJOR;