From 3d6ec027bc51513847cef355f9c86db3692c4929 Mon Sep 17 00:00:00 2001 From: foesa <35463247+foesa-yang@users.noreply.github.com> Date: Thu, 2 Feb 2023 11:46:43 +0800 Subject: [PATCH] Update use-importer.md (#2533) --- docs-2.0/nebula-importer/use-importer.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs-2.0/nebula-importer/use-importer.md b/docs-2.0/nebula-importer/use-importer.md index 841466a71fe..c5315a3bf57 100644 --- a/docs-2.0/nebula-importer/use-importer.md +++ b/docs-2.0/nebula-importer/use-importer.md @@ -248,6 +248,12 @@ schema: vertex: vid: index: 1 + concatItems: # "c1{index0}c2{index1}2" + - "c1" + - 0 + - c2 + - 1 + - "2" function: hash prefix: abc tags: @@ -281,6 +287,7 @@ schema: |:---|:---|:---|:---| |`files.schema.type`|-|是|Schema 的类型,可选值为`vertex`和`edge`。| |`files.schema.vertex.vid.index`|-|否|点 ID 对应 CSV 文件中列的序号。| +|`files.schema.vertex.vid.concatItem`|-|否|用于连接两个或多个数组,连接项可以是`string`、`int`或者混合。`string`代表常量,`int`表示索引列。如果设置了`concatItem`,`index`参数将不生效。| |`files.schema.vertex.vid.function`|-|否|生成 VID 的函数。目前,我们只支持 `hash` 函数。| |`files.schema.vertex.vid.type`|-|否|点 ID 的数据类型,可选值为`int`和`string`。| |`files.schema.vertex.vid.prefix`|-|否|给 原始vid 添加的前缀,当同时指定了 `function` 时, 生成 VID 的方法是先添加 `prefix` 前缀, 再用 `function`生成 VID。|