本文將通過參數說明和範例程式碼為您介紹如何使用 Go SDK 建立資料表。在建立資料表時,您需要指定資料表的結構資訊和配置資訊。高效能型執行個體中的資料表還可以根據需要設定預留讀寫輸送量。
注意事項
前提條件
已通過控制台建立執行個體。具體操作,請參見建立執行個體。
已初始化 OTSClient。具體操作,請參見初始化 OTSClient。
介面
//說明:根據指定表結構資訊建立資料表。
//當建立一個資料表後,通常需要等待幾秒鐘時間使partition load完成,才能進行各種操作。
//返回:CreateTableResponse
CreateTable(request *CreateTableRequest) (*CreateTableResponse, error)
參數說明
request
包含以下參數:
參數 | 說明 |
TableMeta(必選) | 資料表的結構資訊,包括如下內容:
|
TableOption(必選) | 資料表的配置資訊,包括如下內容:
|
IndexMetas(可選) | 索引列表。每個索引包含以下內容:
|
ReservedThroughput(必選) | 預留讀寫輸送量,單位為 CU。預設值為 0。 重要 僅高效能型執行個體支援設定資料表的預留讀寫輸送量為非零值。 |
StreamSpec(可選) | 資料表的 Stream 配置資訊,包括如下內容:
|
SSESpecification(可選) | 資料表的加密配置。 重要 資料表建立後,不支援修改加密相關配置。 |
EnableLocalTxn(可選) | 是否開啟局部事務功能。預設值為 false,表示不開啟局部事務功能。 重要
|
樣本
建立資料表
以下樣本用於建立資料表。
func CreateTableSample(client *tablestore.TableStoreClient, tableName string) {
createTableRequest := new(tablestore.CreateTableRequest)
tableMeta := new(tablestore.TableMeta)
//設定資料表名稱。
tableMeta.TableName = tableName
//為資料表添加主鍵列。主鍵為pk1(String類型)和pk2(Integer類型),其中pk1主鍵列為分區鍵,pk2主鍵列為自增列。
tableMeta.AddPrimaryKeyColumn("pk1", tablestore.PrimaryKeyType_STRING)
tableMeta.AddPrimaryKeyColumnOption("pk2", tablestore.PrimaryKeyType_INTEGER, tablestore.AUTO_INCREMENT)
tableOption := new(tablestore.TableOption)
//資料的到期時間,-1表示永不到期。
tableOption.TimeToAlive = -1
//最大版本數,屬性列值最多保留1個版本,即儲存最新的版本。
tableOption.MaxVersion = 1
//有效版本偏差,即寫入資料的時間戳記與系統目前時間的偏差允許最大值為86400秒(1天)。
tableOption.DeviationCellVersionInSec = 86400
//設定預留讀寫輸送量,容量型執行個體下的資料表只能設定為0,高效能型執行個體下的資料表可以設定為非零值。
reservedThroughput := new(tablestore.ReservedThroughput)
reservedThroughput.Readcap = 0
reservedThroughput.Writecap = 0
createTableRequest.TableMeta = tableMeta
createTableRequest.TableOption = tableOption
createTableRequest.ReservedThroughput = reservedThroughput
_, err := client.CreateTable(createTableRequest)
if err != nil {
fmt.Println("Failed to create table with error:", err)
} else {
fmt.Println("Create table finished")
}
}
建立資料表時配置二級索引
建立資料表時配置全域二級索引
以下樣本用於同時建立資料表和全域二級索引。
func CreateTableWithGlobalIndexSample(client *tablestore.TableStoreClient, tableName string) {
createTableRequest := new(tablestore.CreateTableRequest)
tableMeta := new(tablestore.TableMeta)
//設定資料表名稱。
tableMeta.TableName = tableName
//為資料表添加主鍵列。主鍵為pk1(String類型)和pk2(Integer類型)。
tableMeta.AddPrimaryKeyColumn("pk1", tablestore.PrimaryKeyType_STRING)
tableMeta.AddPrimaryKeyColumn("pk2", tablestore.PrimaryKeyType_INTEGER)
//為資料表添加預定義列。預定義列為defcol1(String類型)和defcol2(Integer類型)。
tableMeta.AddDefinedColumn("defcol1", tablestore.DefinedColumn_STRING)
tableMeta.AddDefinedColumn("defcol2", tablestore.DefinedColumn_INTEGER)
tableOption := new(tablestore.TableOption)
//資料永不到期,-1表示永不到期。
tableOption.TimeToAlive = -1
//最大版本數,屬性列值最多保留1個版本,即儲存最新的版本。。
tableOption.MaxVersion = 1
reservedThroughput := new(tablestore.ReservedThroughput)
//全域二級索引
indexMeta := new(tablestore.IndexMeta)
//設定索引名稱。
indexMeta.IndexName = "<INDEX_NAME>"
//為索引添加主鍵列。主鍵列為defcol1、pk1和pk2
indexMeta.AddPrimaryKeyColumn("defcol1")
indexMeta.AddPrimaryKeyColumn("pk1")
indexMeta.AddPrimaryKeyColumn("pk2")
//為索引添加預定義列。預定義列為defcol2。
indexMeta.AddDefinedColumn("defcol2")
createTableRequest.TableMeta = tableMeta
createTableRequest.TableOption = tableOption
createTableRequest.ReservedThroughput = reservedThroughput
createTableRequest.AddIndexMeta(indexMeta)
_, err := client.CreateTable(createTableRequest)
if err != nil {
fmt.Println("Failed to create table with error:", err)
} else {
fmt.Println("Create table finished")
}
}
建立資料表時配置本地二級索引
以下樣本用於同時建立資料表和本地二級索引。
func CreateTableWithLocalIndexSample(client *tablestore.TableStoreClient, tableName string) {
createTableRequest := new(tablestore.CreateTableRequest)
tableMeta := new(tablestore.TableMeta)
//設定資料表名稱。
tableMeta.TableName = tableName
//為資料表添加主鍵列。主鍵為pk1(String類型)和pk2(Integer類型)。
tableMeta.AddPrimaryKeyColumn("pk1", tablestore.PrimaryKeyType_STRING)
tableMeta.AddPrimaryKeyColumn("pk2", tablestore.PrimaryKeyType_INTEGER)
//為資料表添加預定義列。預定義列為defcol1(String類型)和defcol2(Integer類型)。
tableMeta.AddDefinedColumn("defcol1", tablestore.DefinedColumn_STRING)
tableMeta.AddDefinedColumn("defcol2", tablestore.DefinedColumn_INTEGER)
tableOption := new(tablestore.TableOption)
//資料永不到期,-1表示永不到期。
tableOption.TimeToAlive = -1
//最大版本數,屬性列值最多保留1個版本,即儲存最新的版本。
tableOption.MaxVersion = 1
reservedThroughput := new(tablestore.ReservedThroughput)
//本地二級索引
indexMeta := new(tablestore.IndexMeta)
//設定索引名稱。
indexMeta.IndexName = "<INDEX_NAME>"
//設定索引類型為本地二級索引(IT_LOCAL_INDEX)。
indexMeta.IndexType = tablestore.IT_LOCAL_INDEX
//為索引添加主鍵列。主鍵列為pk1、defcol1和pk2。
indexMeta.AddPrimaryKeyColumn("pk1")
indexMeta.AddPrimaryKeyColumn("defcol1")
indexMeta.AddPrimaryKeyColumn("pk2")
//為索引添加預定義列。預定義列為defcol2。
indexMeta.AddDefinedColumn("defcol2")
createTableRequest.TableMeta = tableMeta
createTableRequest.TableOption = tableOption
createTableRequest.ReservedThroughput = reservedThroughput
createTableRequest.AddIndexMeta(indexMeta)
_, err := client.CreateTable(createTableRequest)
if err != nil {
fmt.Println("Failed to create table with error:", err)
} else {
fmt.Println("Create table finished")
}
}
建立資料表時開啟局部事務
以下樣本用於建立資料表時開啟局部事務功能。
func CreateTableWithEnableLocalTxnSample(client *tablestore.TableStoreClient, tableName string) {
createTableRequest := new(tablestore.CreateTableRequest)
tableMeta := new(tablestore.TableMeta)
//設定資料表名稱。
tableMeta.TableName = tableName
//為資料表添加主鍵列。主鍵為pk1(String類型)和pk2(Integer類型)。
tableMeta.AddPrimaryKeyColumn("pk1", tablestore.PrimaryKeyType_STRING)
tableMeta.AddPrimaryKeyColumn("pk2", tablestore.PrimaryKeyType_INTEGER)
tableOption := new(tablestore.TableOption)
//資料的到期時間,-1表示永不到期。
tableOption.TimeToAlive = -1
//最大版本數,屬性列值最多保留1個版本,即儲存最新的版本。
tableOption.MaxVersion = 1
reservedThroughput := new(tablestore.ReservedThroughput)
//開啟局部事務。如果資料表配置了主鍵自增列,則開啟局部事務配置不會生效。
enableLocalTxn := proto.Bool(true)
createTableRequest.TableMeta = tableMeta
createTableRequest.TableOption = tableOption
createTableRequest.ReservedThroughput = reservedThroughput
createTableRequest.EnableLocalTxn = enableLocalTxn
_, err := client.CreateTable(createTableRequest)
if err != nil {
fmt.Println("Failed to create table with error:", err)
} else {
fmt.Println("Create table finished")
}
}