All Products
Search
Document Center

Tablestore:Create a data table

Last Updated:Dec 10, 2024

This topic describes how to use Tablestore SDK for .NET to create a data table by using parameters and sample code. When you create a data table, you must specify the schema information and configuration information about the data table. You can specify the reserved read and write throughput for a data table in a high-performance instance.

Usage notes

  • After you create a data table, a few seconds are required to load the data table. During this period, all read and write operations on the data table fail. Perform operations on the data table after the data table is loaded.

  • In scenarios that require an auto-increment primary key column, such as item IDs on e-commerce websites and post IDs in forums, you can specify an auto-increment primary key column when you create a data table. For more information, see Configure an auto-increment primary key column.

Prerequisites

API operation

/// <summary>
/// Create a data table based on the specified table schema. 
/// </summary>
/// <param name="request">The request parameters</param>
/// <returns>The information returned by the CreateTable operation. The result is null. </returns>
public CreateTableResponse CreateTable(CreateTableRequest request);

/// <summary>
/// The asynchronous mode of the CreateTable operation. The parameters and calling method are the same as those of the CreateTable operation. 
/// </summary>
public Task<CreateTableResponse> CreateTableAsync(CreateTableRequest request);

Parameters

The following table describes the parameters that are included in request.

Parameter

Description

tableMeta (required)

The schema information about the data table. You can configure the following parameters to specify the schema information:

  • tableName: This parameter is required and specifies the name of the data table.

  • primaryKeySchema: This parameter is required and specifies the schema of the primary key for the data table. For more information, see Core components.

    • The type of a primary key column can be String, Integer, or Binary.

    • You can specify one to four primary key columns. Tablestore generates the primary key in the order in which the primary key columns are specified. By default, the rows in a data table are sorted in descending order by primary key.

    • The first primary key column is the partition key.

  • definedColumnSchema: This parameter is optional and specifies the predefined columns of the data table. The type of a predefined column can be String, Integer, Binary, Double, or Boolean.

    Note
    • Predefined columns are non-primary key columns that can be used as primary key columns or predefined columns of a secondary index that is created for the data table to accelerate data queries.

    • You do not need to specify the schema of attribute columns when you create a data table. You can specify different numbers of attribute columns and different attribute column names for each row when you write data to a data table.

tableOptions (optional)

The configuration information about the data table. You can configure the following parameters to specify the configuration information:

  • timeToLive: This parameter is optional and specifies the retention period of data in the data table. Unit: seconds.

    Default value: -1. A value of -1 specifies that the data never expires. You can set this parameter to a value that is greater than or equal to 86400 or -1. A value of 86400 specifies one day.

    Important

    If you want to create a search index or secondary index for the data table, you must set this parameter to -1 or set the AllowUpdate parameter to false.

  • maxVersions: This parameter is optional and specifies the maximum number of versions that can be retained for the data in each attribute column.

    Default value: 1. A value of 1 specifies that only the latest version of data is retained for each attribute column.

    Important

    If you want to create a search index or secondary index for the data table, you must set this parameter to 1.

  • deviationCellVersionInSec: This parameter is optional and specifies the maximum difference between the current system time and the timestamp of the written data. Unit: seconds.

    Default value: 86400. The valid version range of data in an attribute column is a left-closed, right-open interval, which is calculated by using the following formula: Valid version range = [max{Data write time - Max version offset, Data write time - TTL value}, Data write time + Max version offset).

  • allowUpdate: This parameter is optional and specifies whether to allow update operations on the data table. Default value: true.

    Important

    If you want to use the time to live (TTL) feature of the search index that is created for the data table, you must set this parameter to false. If you want to update data in the data table, you can call the PutRow operation to write data to the data table.

indexMetas (optional)

The list of indexes. You can configure the following parameters for each index:

  • indexName: This parameter is required and specifies the name of the index.

  • primaryKey: This parameter is required and specifies the primary key columns of the index. The primary key columns of an index are a combination of primary key columns and predefined columns of the data table for which the index is created.

    Important

    If you want to create a local secondary index, the first primary key column of the index must be the first primary key column of the data table.

  • definedColumns: This parameter is optional and specifies the predefined columns of the index. The predefined columns of an index are a combination of predefined columns of the data table for which the index is created.

  • indexType: This parameter is optional and specifies the type of the index. Only global secondary indexes are supported.

  • indexUpdateModel: This parameter is optional and specifies the update mode of the index. Only the asynchronous update mode is supported.

Note

In Tablestore, secondary indexes are classified into global secondary indexes and local secondary indexes. Tablestore SDK for .NET supports only global secondary indexes.

reservedThroughput (required)

The reserved read and write throughput. Unit: capacity unit (CU). Default value: 0.

Important

You can set the reserved read or write throughput to a value other than 0 only for a data table in a high-performance instance.

streamSpecification (optional)

The Stream configuration information about the data table. You can configure the following parameters to specify the Stream configuration information:

  • enableStream: This parameter is optional and specifies whether to enable the Stream feature. Default value: false. A value of false specifies that the Stream feature is disabled.

  • expirationTime: This parameter is optional and specifies the validity period of incremental logs. Unit: hours. Maximum value: 168. A value of 168 specifies seven days.

    Note

    When the Stream feature is enabled, you must configure the expirationTime parameter.

Examples

Create a data table

The following sample code provides an example on how to create a data table:

// Create a schema for the primary key columns, including the number, names, and data types of the primary key columns. 
 // The first primary key column is named pk0 and is of the Integer type. The first primary key column is the partition key. 
 // The second primary key column is named pk1 and is of the String type. 
 var primaryKeySchema = new PrimaryKeySchema();
 primaryKeySchema.Add("pk0", ColumnValueType.Integer);
 primaryKeySchema.Add("pk1", ColumnValueType.String);

 // Create a tableMeta instance based on the table name and the schema of the primary key columns. 
 var tableMeta = new TableMeta("SampleTable", primaryKeySchema);

 // Set the reserved read throughput and the reserved write throughput to 0. 
 var reservedThroughput = new CapacityUnit(0, 0);

 try
 {
     // Construct a CreateTableRequest object. 
     var request = new CreateTableRequest(tableMeta, reservedThroughput);

     // Call the CreateTable operation of the client. If no exception is returned, a table is created. 
     otsClient.CreateTable(request);

     Console.WriteLine("Create table succeeded.");
 }
 // If an exception is returned, no table is created and you must handle the exception. 
 catch (Exception ex)
 {
     Console.WriteLine("Create table failed, exception:{0}", ex.Message);
 }
            

Create a data table and a global secondary index

The following sample code provides an example on how to create a data table and a global secondary index for the data table at the same time:

public static void CreateTableWithGlobalIndex()
{
    // Create a data table that contains two primary key columns Pk1 and Pk2 and two predefined columns Col1 and Col2. 
    // Create an index table and set the primary key column to Col1 and the predefined column to Col2. 
    OTSClient otsClient = Config.GetClient();

    Console.WriteLine("Start create table with globalIndex...");
    PrimaryKeySchema primaryKeySchema = new PrimaryKeySchema
        {
            { Pk1, ColumnValueType.String },
            { Pk2, ColumnValueType.String }
        };
    TableMeta tableMeta = new TableMeta(TableName, primaryKeySchema);
    tableMeta.DefinedColumnSchema = new DefinedColumnSchema {
            { Col1, DefinedColumnType.STRING},
            { Col2, DefinedColumnType.STRING}
        };

    IndexMeta indexMeta = new IndexMeta(IndexName);
    indexMeta.PrimaryKey = new List<string>() { Col1 };
    indexMeta.DefinedColumns = new List<string>() { Col2 };
    //indexMeta.IndexType = IndexType.IT_GLOBAL_INDEX;
    //indexMeta.IndexUpdateModel = IndexUpdateMode.IUM_ASYNC_INDEX;

    List<IndexMeta> indexMetas = new List<IndexMeta>() { };
    indexMetas.Add(indexMeta);

    CapacityUnit reservedThroughput = new CapacityUnit(0, 0);
    CreateTableRequest request = new CreateTableRequest(tableMeta, reservedThroughput, indexMetas);
    otsClient.CreateTable(request);

    Console.WriteLine("Table is created: " + TableName);
}

References