键值存储服务 KVS-扫描所有kv:请求参数

时间:2024-12-09 15:46:54

请求参数

表2 请求Body参数

参数

是否必选

参数类型

描述

table_name

String

表名,仓内唯一。

  • 长度:[3, 63]

  • 取值字符限制:[a-z0-9_-]+

hint_index_name

String

create_table时指定的索引名,默认空表示主索引。

  • 长度:[3, 63]

  • 取值字符限制:[a-z0-9_-]+

limit

Integer

返回的文档个数,最大100个。

说明:

默认100个文档。

start_key

Document

起始主键或索引键值。

  • 默认空,表示从头遍历,左闭。

说明:

分页返回时,该值使用上次响应返回的cursor_key。

end_key

Document

终止主键或索引键值。

  • 默认空,表示直到最后,右开。

filter_expression

condition_expression object

过滤表达式。

说明:
  • 允许键字段作为条件。

  • 在满足start_key和endkey的范围内,执行filter逻辑。

sample_segments_count

Integer

对表进行采样,尽最大努力保证返回的段列表均分整张表。举例:sample_segments_count=4,返回的段列表[MinKey, KV1)、[KV1,KV2)、[KV2,KV3)和[KV3,MaxKey)。用户可以使用scan-kv对这四个分区执行并发扫描,提高遍历效率。

  • 范围: [1, 10000]。默认值:不执行采样。

  • sample_segments_count仅能和table_name、start_key和end_key字段配合使用。Range分区模式下支持全表采样和范围采样;Hash分区模式仅支持全表扫描。

  • 仅支持对Primary key进行采样,不支持本地/全局二级索引。

  • 返回的段列表仅包含主键,不包含键值;且段列表是编码后的数据 ,不可修改。

return_count_only

Boolean

是否只返回满足条件的KV个数;

  • true:响应rsp只返回"returned_count"、"filtered_count"和"cursor_key"(如果有"cursor_key")。

  • false:scan-kv的标准响应体定义返回消息。

returned_segment_items

Array of returned_segment_item objects

采样段区间列表。

表3 condition_expression

参数

是否必选

参数类型

描述

single_field_expression

single_field_expression object

单字段条件。

multi_field_expression

multi_field_expression object

多字段条件,多个相同优先级的单字段条件。

composed_expression

composed_expression object

组合条件, 逐层同级的子表达式嵌套。

表4 multi_field_expression

参数

是否必选

参数类型

描述

logic

String

多字段条件,多个相同优先级的单字段条件。

expressions

Array of single_field_expression objects

多个相同逻辑操作的单字段条件。

表5 single_field_expression

参数

是否必选

参数类型

描述

field

String

条件字段。

func

String

条件函数,取值如"$gt", $lt","$gte", $lte" "$eq", "$ne", "$prefix", "$exists"。

value

Document

value和value_array二选一。

  • value条件值,适用于除"$in", "$nin"外的func。

  • 字段名无意义,可以传空,也可以传字段名。

  • $exists值为true/false。

说明:

$prefix操作只适用于string和binary类型。

value_array

Array of strings

"value"和"value_array"二选一。

  • "value_array" 条件值列表, 值用于"$in", "$nin"。

表6 composed_expression

参数

是否必选

参数类型

描述

logic

String

逻辑关系,取值如"$and", "$or", "$nor"。

expressions

Array of expression objects

多个相同优先级且相同逻辑的单字段或多字段条件。

表7 expression

参数

是否必选

参数类型

描述

single_field_expression

single_field_expression object

单字段条件。

multi_field_expression

single_field_expression object

多字段条件,多个相同优先级的单字段条件。

composed_expression

composed_expression object

组合条件, 逐层同级的子表达式嵌套。

表8 returned_segment_item

参数

是否必选

参数类型

描述

segment_min_key

Document

采样段区间起始值。

segment_max_key

Document

采样段区间终止值。

support.huaweicloud.com/api-kvs/ScanKv.html