使用

本文档将介绍 Spark-SequoiaDB 的使用。

Spark-SequoiaDB 使用

下述以通过 SparkSQL 创建 SequoiaDB 表为例,创建语句如下:

create <[temporary] table| temporary view> <tableName> [(schema)] using com.sequoiadb.spark options (<option>, <option>, ...)
  • temporary:临时表或视图,只在创建表或视图的会话中有效,会话退出后自动删除。

  • schema:可不填,连接器会自动生成。自动生成的 schema 字段顺序与集合中记录的顺序不一致,因此如果对 schema 的字段顺序有要求,应该显式定义 schema 。

  • option:参数列表,参数是键和值都为字符串类型的键值对,其中值的前后需要有单引号,多个参数之间用逗号分隔。

option 参数说明

名称 类型 默认值 描述 是否必填
host string - SequoiaDB 协调节点地址,多个地址以","分隔,例如:"server1:11810,server2:11810"
collectionspace string - 集合空间名称
collection string - 集合名称(不包含集合空间名称)
username string "" 用户名
passwordtype string "cleartext" 密码类型,取值如下:
"cleartext":表示参数 password 为明文密码
"file":表示参数 password 为密码文件路径
password string "" 用户名对应的密码
connecttimeout int32 1000 连接 SequoiaDB 节点超时时间(单位:ms)
samplingratio double 1 schema 采样率,取值范围为(0, 1.0]
samplingnum int64 1000 schema 采样数量(每个分区),取值大于 0
samplingwithid boolean FALSE schema 采样时是否带 _id 字段,取值为 true 或 false
samplingsingle boolean TRUE schema 采样时使用一个分区,取值为 true 或 false
bulksize int32 500 向 SequoiaDB 集合插入数据时批插的数据量,取值大于 0
partitionmode string auto 分区模式,默认值为"auto",取值如下:
"auto":自动选择模式
"sharding":以分区为单位进行并发读取
"datablock":以集合为单位进行并发读取
该参数取值为"auto"时,如果查询使用了索引则自动选择"sharding"模式,未使用索引则选择"datablock"模式
partitionblocknum int32 4 每个分区的数据块数,在按 datablock 分区时有效,取值大于 0
partitionmaxnum int32 1000 最大分区数量,在按 datablock 分区时有效,取值大于等于 0,等于 0 时表示不限制分区最大数量
由于 partitionMaxNum 的限制,每个分区的数据块数可能与 partitionBlockNum 不同
preferredinstance string "A" 指定分区优先选择的节点实例,取值可参考 preferredinstance
preferredinstancemode string "random" 在 preferredinstance 有多个实例符合时的选择模式,取值可参考 preferredinstancemode
preferredinstancestrict boolean TRUE 在 preferredinstance 指定的实例 ID 都不符合时是否报错
ignoreduplicatekey boolean FALSE 向表中插入数据时忽略主键重复的错误
ignorenullfield boolean FALSE 向表中插入数据时忽略值为 null 的字段
configpath string - 配置文件路径
如果同时在 options 和配置文件中指定同一参数,将优先使用 options 参数进行配置
pagesize int32 65536 create table as select 创建集合空间时指定数据页大小,如果集合空间已存在则忽略该参数
domain string - create table as select 创建集合空间时指定所属域,如果集合空间已存在则忽略该参数
shardingkey json - create table as select 创建集合时指定分区键
shardingtype string "hash" create table as select 创建集合时指定分区类型,取值可以是"hash"和"range"
replsize int32 1 create table as select 创建集合时指定副本写入数
compressiontype string "none" create table as select 创建集合时指定压缩类型,取值可以是"none"、"lzw"和"snappy","none"表示不压缩
autosplit boolean FALSE create table as select 创建集合时指定是否自动切分,必须配合散列分区和域使用,且不能与 group 同时使用
group string - create table as select 创建集合时指定创建在某个复制组,group 必须存在于集合空间所属的域中
ensureshardingindex boolean TRUE create table as select 创建集合时指定是否使用 ShardingKey 包含的字段创建名字为"$shard"的索引
autoindexid boolean TRUE create table as select 创建集合时指定是否自动使用字段 _id 创建名字为"$id"的唯一索引
strictdatamode boolean FALSE create table as select 创建集合时指定对该集合的操作是否开启严格数据模式
开启严格数据模式后对数值操作将存在以下限制:
1)运算过程不改数据类型
2)数值运算出现溢出时直接报错
autoincrement json - create table as select 创建集合时指定集合使用的自增字段
自增字段相关说明可参考 autoincrement

示例

  1. 假设集合名为 test.data ,协调节点在 sdbserver1 和 sdbserver2 上,通过 spark-sql 创建一个表来对应 SequoiaDB 的集合

    spark-sql> create table datatable(c1 string, c2 int, c3 int) using com.sequoiadb.spark options(host 'sdbserver1:11810,sdbserver2:11810', collectionspace 'test', collection 'data');
  2. 从 SequoiaDB 的表 t1 向表 t2 插入数据

    spark-sql> insert into table t2 select * from t1;
回到顶部