- nebula version: v3.5.0 enter image description here
- Deployment method: stand-alone
- Installation method: source code compilation
- Whether to use the production environment: N
- Specific description of the problem: Enter the following code to import data and report an error unsupported client version /usr/bin/nebula-importer --config /data/yangyulu/NebulaData/config.yaml enter image description here
My yaml file is as follows: version: v3 description: g500d removeTempFiles: false clientSettings: retry: 3 concurrency: 20 channelBufferSize: 128 space: Graph500 connection: user: root password: 000 address: 10.0.0.0:9669 postStart: commands: | DROP SPACE IF EXISTS Graph500; CREATE SPACE IF NOT EXISTS Graph500(vid_type = FIXED_STRING(128)); USE Graph500; CREATE TAG ve(id int); CREATE EDGE ed(); afterPeriod: 5s preStop: commands: | logPath: ./err/g500d.log files:
- path: /data/yangyulu/NebulaData/graph500/graph-500-22/vertex.csv failDataPath: ./err/ve.csv batchSize: 2048 inOrder: false type: csv csv: withHeader: false withLabel: false delimiter: "\t" schema: type: vertex vertex: vid: index: 0 tags: - name: ve props: - name: id type: int index: 0
- path: /data/yangyulu/NebulaData/graph500/graph-500-22/edge.csv failDataPath: ./err/ed.csv batchSize: 2048 inOrder: false type: csv csv: withHeader: false withLabel: false delimiter: "\t" schema: type: edge edge: name: ed srcVID: index: 0 dstVID: index: 1