Read node files person.json and company.json and edge file holding.json from sftp (or local directory), import into Ultipa graphset shareholding:
- Generate a sample of configuration file
./ultipa-importer --sample
- Modify configuration file
# Configure data source type
mode: json
# Configure sftp information where the files locate, or read from a local direcotry by default
sftp:
host: 10.132.3.136:22
username: admin
password: abcd1234
# Path of key, configuring this will ignore the 'username' and 'password'
key: ./my_secret
# Configure Ultipa server
server:
# Ultipa server, use comma ',' to separate multiple server nodes of cluster
host: "192.168.2.149:60075"
username: "admin"
password: "abcd1234"
# Graphset name, or use graphset 'default' by default
graphset: "shareholding"
# The directory of the SSL certificate when both Ultipa server and client-end are in SSL mode
crt: ""
# Configure node data
nodeConfig:
- schema: "human"
file: /Data/person.json
properties:
- name: id
type: _id
- name: name
type: string
- name: type
type: _ignore
- schema: "firm"
file: /Data/company.json
properties:
- name: id
type: _id
- name: name
type: string
- name: type
type: _ignore
# Configure edge data
edgeConfig:
- schema: "hold"
file: /Data/holding.json
properties:
- name: from
type: _from
- name: to
type: _to
- name: shareInt
type: int32
new_name: share
# Configure global settings
settings:
batchSize: 10000
importMode: insert
# auto-create graph, schema, and properties if not existent
yes: true
- Execute import operation
./ultipa-importer --config ./import.sample.json.yml