aliyun-tablestore-go-sdk
aliyun-tablestore-go-sdk copied to clipboard
TableStore SDK for Golang
支持ORM操作
目前TableStore Golang SDK的操作特别繁琐,代码量较多,请考虑支持ORM框架的实现,比如gorm。
支持并发导出数据
请问有计划支持并发导出数据吗?
SDK should export error value stead of let users using string [compare err.Error()](https://github.com/aliyun/aliyun-tablestore-go-sdk/blob/fbfb6ccbcb61ed85f667d7e267ff7191262d01c8/timeline/store.go#L256)
It's a common requirement that user may ensure the table exists, if not, EnsureTable should create table automatically, something like [Sync](https://github.com/aliyun/aliyun-tablestore-go-sdk/blob/fbfb6ccbcb61ed85f667d7e267ff7191262d01c8/timeline/store.go#L60) in timeline pkg
场景:1、在实例上创建表 2、go客户端连接实例操作数据。 在Sample代码中,遇到两个问题: 1、插入数据时如果不添加pk主键,不返回内容,也不报错,数据库也没有内容 2、客户端数据类型和实例数据类型不一致会导致客户端崩溃,报以下错误: `[HTTP Server] http: panic serving 127.0.0.1:62204: [tablestore] invalid input goroutine 43 [running]: net/http.(*conn).serve.func1(0xc000294aa0)` 例如:主键或者某一列在实例中是int(11),在客户端是int8
feature of columnMap implement in GetRowResponse this is request adding columnMap to Row of GetRange
Given that `EnableStream = true`, now to disable stream, when calling ``` UpdateTable(&tablestore.UpdateTableRequest{ TableName: "...", StreamSpec: &tablestore.StreamSpecification{ EnableStream: false, }, }) ``` the following error is returned: ``` OTSParameterInvalid Expiration...