Neo4j APOC 用户手册 4.4-0008-从 CSV 导入数据
发布网友
发布时间:2024-10-04 20:37
我来回答
共1个回答
热心网友
时间:2024-10-05 12:13
CSV files that comply with the Neo4j import tool’s header format can be imported using the apoc.import.csv procedure. This procedure can be used to load small- to medium-sized data sets in an online database. For importing larger data sets, it is recommended to perform a batch import using the ( import tool, which loads data in bulk to an offline (initially empty) database.
遵从 N 导入工具头格式的豆粉文件可以使用 a.i.c 过程导入。该过程可以用来载入小到中等体量的数据集到在线数据库。对于导入大数据集,推荐使用 导入工具( it)批量将数据导入离线(初始为空库)数据库。
The parameters of theapoc.import.csv(, , ) procedure are as follows.
a.i.c 过程的参数如下。
The parameter is a list, where each element is a map defining a source file (fileName) to be loaded with a set of labels (labels):
节点 n 参数是一个列表,每个元素是一个迈普,定义了将要加载源文件(fN)作为标签 l 集合:
The parameter is also a list, where each element is a map defining a source file (fileName) to be loaded with a given relationship type (type):
关系 r 参数也是列表,每个元素是一个迈普,定义了将要加载源文件(fN)作为给定的关系类型 t:
The parameter is a map containing optional configurations.
配置 c 参数是一个迈普,包含了可选配置。
The procedure support the following config parameters:
过程支持以下配置参数:
* ID spaces are supported, using the import tool’s syntax.
支持编码空间,使用 导入工具语法。
* Node labels can be specified with the :LABEL field.
可以使用 :L 字段指定节点标签。
* Relationship types can be specified with the :TYPE field.
可以使用 :T 字段指定关系类型。
Given the following CSV files and procedure call, the database loads two Person nodes and a KNOWS relationship between them (with the value of the since property set). Note that both the field terminators and the array delimiters are changed from the default value, and the CSVs use numeric ids.
给定下面的豆粉文件和过程调用,数据库会装载 2 个人员 P 节点和一个他俩之间的知道 K 关系(带自从 s 属性值设置)。注意字段终结符和数组分隔符都不是默认值,同时豆粉使用了数字编号。
The loader supports advanced features of the import tool:
加载器支持导入工具的高级特性:
* ID spaces are supported, using the import tool’s syntax.
支持编码空间,使用 导入工具语法。
* Node labels can be specified with the :LABEL field.
可以使用 :L 字段指定节点标签。
* Relationship types can be specified with the :TYPE field.
可以使用 :T 字段指定关系类型。
Load 翻译为了装载
Import 翻译为了导入
就酱