ldbc_snb有很多多个版本哦,编者用的哪个版本

https://github.com/vesoft-inc/nebula-bench/tree/master
我用的0.33的结果造出的数据,比编者给的schema多一个字段

CREATE TAG IF NOT EXISTS person(first_name string, last_name string, gender string, birthday string, ip string, browser string);

32985348839032|Alberto|Parra|female|19850922|20120801033059228|190.8.114.110|Chrome

@HarrisChu 帮忙确认下

这个是 0.3.3 的一份示例配置文件,你可以参考下。
后面会把 nebula-bench 更新下。


version: v2
description: ldbc
removeTempFiles: false
clientSettings:
  retry: 3
  concurrency: 30 # number of graph clients
  channelBufferSize: 128
  space: sf30
  connection:
    user: root
    password: nebula
    address: 192.168.8.147:9669
  postStart:
    commands: |
      UPDATE CONFIGS heartbeat_interval_secs=1;
      CREATE SPACE IF NOT EXISTS sf30(PARTITION_NUM = 24, REPLICA_FACTOR = 3, vid_type = int64);
      USE sf30;
      CREATE TAG IF NOT EXISTS `Forum`(`title` string,`creationDate` string);
      CREATE TAG IF NOT EXISTS `Post`(`imageFile` string,`creationDate` string,`locationIP` string,`browserUsed` string,`language` string,`content` string,`length` int);
      CREATE TAG IF NOT EXISTS `Tagclass`(`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Organisation`(`type` string,`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Person`(`firstName` string,`lastName` string,`gender` string,`birthday` string,`creationDate` string,`locationIP` string,`browserUsed` string);
      CREATE TAG IF NOT EXISTS `Tag`(`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Comment`(`creationDate` string,`locationIP` string,`browserUsed` string,`content` string,`length` int);
      CREATE TAG IF NOT EXISTS `Place`(`name` string,`url` string,`type` string);
      CREATE EDGE IF NOT EXISTS `HAS_TYPE`();
      CREATE EDGE IF NOT EXISTS `IS_LOCATED_IN`();
      CREATE EDGE IF NOT EXISTS `REPLY_OF`();
      CREATE EDGE IF NOT EXISTS `KNOWS`(`creationDate` string);
      CREATE EDGE IF NOT EXISTS `LIKES`(`creationDate` string);
      CREATE EDGE IF NOT EXISTS `HAS_TAG`();
      CREATE EDGE IF NOT EXISTS `IS_PART_OF`();
      CREATE EDGE IF NOT EXISTS `STUDY_AT`(`classYear` int);
      CREATE EDGE IF NOT EXISTS `HAS_MODERATOR`();
      CREATE EDGE IF NOT EXISTS `HAS_MEMBER`(`joinDate` string);
      CREATE EDGE IF NOT EXISTS `HAS_INTEREST`();
      CREATE EDGE IF NOT EXISTS `WORK_AT`(`workFrom` int);
      CREATE EDGE IF NOT EXISTS `HAS_CREATOR`();
      CREATE EDGE IF NOT EXISTS `IS_SUBCLASS_OF`();
      CREATE EDGE IF NOT EXISTS `CONTAINER_OF`();


    afterPeriod: 8s
logPath: ./err/test.log
files:
  - path: /home/vesoft/sf30/social_network/dynamic/post.csv
    failDataPath: ./err/data/Post.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Post
            props:
              - name: imageFile
                type: string
                index: 1
              - name: creationDate
                type: string
                index: 2
              - name: locationIP
                type: string
                index: 3
              - name: browserUsed
                type: string
                index: 4
              - name: language
                type: string
                index: 5
              - name: content
                type: string
                index: 6
              - name: length
                type: int
                index: 7

  - path: /home/vesoft/sf30/social_network/dynamic/comment.csv
    failDataPath: ./err/data/Comment.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Comment
            props:
              - name: creationDate
                type: string
                index: 1
              - name: locationIP
                type: string
                index: 2
              - name: browserUsed
                type: string
                index: 3
              - name: content
                type: string
                index: 4
              - name: length
                type: int
                index: 5

  - path: /home/vesoft/sf30/social_network/dynamic/forum.csv
    failDataPath: ./err/data/Forum.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Forum
            props:
              - name: title
                type: string
                index: 1
              - name: creationDate
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person.csv
    failDataPath: ./err/data/Person.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Person
            props:
              - name: firstName
                type: string
                index: 1
              - name: lastName
                type: string
                index: 2
              - name: gender
                type: string
                index: 3
              - name: birthday
                type: string
                index: 4
              - name: creationDate
                type: string
                index: 5
              - name: locationIP
                type: string
                index: 6
              - name: browserUsed
                type: string
                index: 7

  - path: /home/vesoft/sf30/social_network/static/organisation.csv
    failDataPath: ./err/data/Organisation.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Organisation
            props:
              - name: type
                type: string
                index: 1
              - name: name
                type: string
                index: 2
              - name: url
                type: string
                index: 3

  - path: /home/vesoft/sf30/social_network/static/place.csv
    failDataPath: ./err/data/Place.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Place
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2
              - name: type
                type: string
                index: 3

  - path: /home/vesoft/sf30/social_network/static/tag.csv
    failDataPath: ./err/data/Tag.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Tag
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/static/tagclass.csv
    failDataPath: ./err/data/Tagclass.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Tagclass
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_hasCreator_person.csv
    failDataPath: ./err/data/HAS_CREATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_CREATOR
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_hasCreator_person.csv
    failDataPath: ./err/data/HAS_CREATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_CREATOR
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_replyOf_comment.csv
    failDataPath: ./err/data/REPLY_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: REPLY_OF
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_replyOf_post.csv
    failDataPath: ./err/data/REPLY_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: REPLY_OF
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_containerOf_post.csv
    failDataPath: ./err/data/CONTAINER_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: CONTAINER_OF
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasMember_person.csv
    failDataPath: ./err/data/HAS_MEMBER.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_MEMBER
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
          - name: joinDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasModerator_person.csv
    failDataPath: ./err/data/HAS_MODERATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_MODERATOR
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/person_hasInterest_tag.csv
    failDataPath: ./err/data/HAS_INTEREST.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_INTEREST
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/person_knows_person.csv
    failDataPath: ./err/data/KNOWS.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: KNOWS
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_likes_comment.csv
    failDataPath: ./err/data/LIKES.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: LIKES
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_likes_post.csv
    failDataPath: ./err/data/LIKES.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: LIKES
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_studyAt_organisation.csv
    failDataPath: ./err/data/STUDY_AT.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: STUDY_AT
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
          - name: classYear
            type: int
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_workAt_organisation.csv
    failDataPath: ./err/data/WORK_AT.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: WORK_AT
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
          - name: workFrom
            type: int
            index: 2

  - path: /home/vesoft/sf30/social_network/static/organisation_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/static/place_isPartOf_place.csv
    failDataPath: ./err/data/IS_PART_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_PART_OF
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/static/tagclass_isSubclassOf_tagclass.csv
    failDataPath: ./err/data/IS_SUBCLASS_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_SUBCLASS_OF
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:

  - path: /home/vesoft/sf30/social_network/static/tag_hasType_tagclass.csv
    failDataPath: ./err/data/HAS_TYPE.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TYPE
        withRanking: false
        srcVID:
          index: 0
          type: int
        dstVID:
          index: 1
          type: int
        props:
2 个赞

有ldbc_vid_string.yaml 文件吗

能不能提供完整的,包括nebula和nebula-importer的版本

谢谢,有这个论坛真好。公对公,公对私,私对私都支持,响应快,真好

1 个赞

master分支写了 nebula是2.0的,

nebula 和 nebula-importer 都是 2.0 的

vid string

version: v2
description: ldbc
removeTempFiles: false
clientSettings:
  retry: 3
  concurrency: 30 # number of graph clients
  channelBufferSize: 128
  space: sf30
  connection:
    user: root
    password: nebula
    address: 192.168.8.147:9669
  postStart:
    commands: |
      UPDATE CONFIGS heartbeat_interval_secs=1;
      CREATE SPACE IF NOT EXISTS sf30(PARTITION_NUM = 24, REPLICA_FACTOR = 3, vid_type = fixed_string(20));
      USE sf30;
      CREATE TAG IF NOT EXISTS `Tag`(`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Forum`(`title` string,`creationDate` string);
      CREATE TAG IF NOT EXISTS `Person`(`firstName` string,`lastName` string,`gender` string,`birthday` string,`creationDate` string,`locationIP` string,`browserUsed` string);
      CREATE TAG IF NOT EXISTS `Organisation`(`type` string,`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Comment`(`creationDate` string,`locationIP` string,`browserUsed` string,`content` string,`length` int);
      CREATE TAG IF NOT EXISTS `Tagclass`(`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Post`(`imageFile` string,`creationDate` string,`locationIP` string,`browserUsed` string,`language` string,`content` string,`length` int);
      CREATE TAG IF NOT EXISTS `Place`(`name` string,`url` string,`type` string);
      CREATE EDGE IF NOT EXISTS `HAS_INTEREST`();
      CREATE EDGE IF NOT EXISTS `IS_LOCATED_IN`();
      CREATE EDGE IF NOT EXISTS `REPLY_OF`();
      CREATE EDGE IF NOT EXISTS `LIKES`(`creationDate` string);
      CREATE EDGE IF NOT EXISTS `HAS_CREATOR`();
      CREATE EDGE IF NOT EXISTS `CONTAINER_OF`();
      CREATE EDGE IF NOT EXISTS `KNOWS`(`creationDate` string);
      CREATE EDGE IF NOT EXISTS `HAS_MEMBER`(`joinDate` string);
      CREATE EDGE IF NOT EXISTS `STUDY_AT`(`classYear` int);
      CREATE EDGE IF NOT EXISTS `WORK_AT`(`workFrom` int);
      CREATE EDGE IF NOT EXISTS `IS_PART_OF`();
      CREATE EDGE IF NOT EXISTS `IS_SUBCLASS_OF`();
      CREATE EDGE IF NOT EXISTS `HAS_TYPE`();
      CREATE EDGE IF NOT EXISTS `HAS_TAG`();
      CREATE EDGE IF NOT EXISTS `HAS_MODERATOR`();


    afterPeriod: 8s
logPath: ./err/test.log
files:
  - path: /home/vesoft/sf30/social_network/dynamic/post.csv
    failDataPath: ./err/data/Post.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Post
            props:
              - name: imageFile
                type: string
                index: 1
              - name: creationDate
                type: string
                index: 2
              - name: locationIP
                type: string
                index: 3
              - name: browserUsed
                type: string
                index: 4
              - name: language
                type: string
                index: 5
              - name: content
                type: string
                index: 6
              - name: length
                type: int
                index: 7

  - path: /home/vesoft/sf30/social_network/dynamic/comment.csv
    failDataPath: ./err/data/Comment.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Comment
            props:
              - name: creationDate
                type: string
                index: 1
              - name: locationIP
                type: string
                index: 2
              - name: browserUsed
                type: string
                index: 3
              - name: content
                type: string
                index: 4
              - name: length
                type: int
                index: 5

  - path: /home/vesoft/sf30/social_network/dynamic/forum.csv
    failDataPath: ./err/data/Forum.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Forum
            props:
              - name: title
                type: string
                index: 1
              - name: creationDate
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person.csv
    failDataPath: ./err/data/Person.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Person
            props:
              - name: firstName
                type: string
                index: 1
              - name: lastName
                type: string
                index: 2
              - name: gender
                type: string
                index: 3
              - name: birthday
                type: string
                index: 4
              - name: creationDate
                type: string
                index: 5
              - name: locationIP
                type: string
                index: 6
              - name: browserUsed
                type: string
                index: 7

  - path: /home/vesoft/sf30/social_network/static/organisation.csv
    failDataPath: ./err/data/Organisation.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Organisation
            props:
              - name: type
                type: string
                index: 1
              - name: name
                type: string
                index: 2
              - name: url
                type: string
                index: 3

  - path: /home/vesoft/sf30/social_network/static/place.csv
    failDataPath: ./err/data/Place.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Place
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2
              - name: type
                type: string
                index: 3

  - path: /home/vesoft/sf30/social_network/static/tag.csv
    failDataPath: ./err/data/Tag.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Tag
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/static/tagclass.csv
    failDataPath: ./err/data/Tagclass.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Tagclass
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_hasCreator_person.csv
    failDataPath: ./err/data/HAS_CREATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_CREATOR
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_hasCreator_person.csv
    failDataPath: ./err/data/HAS_CREATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_CREATOR
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_replyOf_comment.csv
    failDataPath: ./err/data/REPLY_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: REPLY_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_replyOf_post.csv
    failDataPath: ./err/data/REPLY_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: REPLY_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_containerOf_post.csv
    failDataPath: ./err/data/CONTAINER_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: CONTAINER_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasMember_person.csv
    failDataPath: ./err/data/HAS_MEMBER.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_MEMBER
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: joinDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasModerator_person.csv
    failDataPath: ./err/data/HAS_MODERATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_MODERATOR
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/person_hasInterest_tag.csv
    failDataPath: ./err/data/HAS_INTEREST.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_INTEREST
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/person_knows_person.csv
    failDataPath: ./err/data/KNOWS.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: KNOWS
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_likes_comment.csv
    failDataPath: ./err/data/LIKES.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: LIKES
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_likes_post.csv
    failDataPath: ./err/data/LIKES.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: LIKES
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_studyAt_organisation.csv
    failDataPath: ./err/data/STUDY_AT.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: STUDY_AT
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: classYear
            type: int
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_workAt_organisation.csv
    failDataPath: ./err/data/WORK_AT.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: WORK_AT
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: workFrom
            type: int
            index: 2

  - path: /home/vesoft/sf30/social_network/static/organisation_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/static/place_isPartOf_place.csv
    failDataPath: ./err/data/IS_PART_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_PART_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/static/tagclass_isSubclassOf_tagclass.csv
    failDataPath: ./err/data/IS_SUBCLASS_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_SUBCLASS_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/static/tag_hasType_tagclass.csv
    failDataPath: ./err/data/HAS_TYPE.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TYPE
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

[quote=“HarrisChu, post:8, topic:3956”]

version: v2
description: ldbc
removeTempFiles: false
clientSettings:
  retry: 3
  concurrency: 30 # number of graph clients
  channelBufferSize: 128
  space: sf30
  connection:
    user: root
    password: nebula
    address: 192.168.8.147:9669
  postStart:
    commands: |
      UPDATE CONFIGS heartbeat_interval_secs=1;
      CREATE SPACE IF NOT EXISTS sf30(PARTITION_NUM = 24, REPLICA_FACTOR = 3, vid_type = fixed_string(20));
      USE sf30;
      CREATE TAG IF NOT EXISTS `Tag`(`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Forum`(`title` string,`creationDate` string);
      CREATE TAG IF NOT EXISTS `Person`(`firstName` string,`lastName` string,`gender` string,`birthday` string,`creationDate` string,`locationIP` string,`browserUsed` string);
      CREATE TAG IF NOT EXISTS `Organisation`(`type` string,`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Comment`(`creationDate` string,`locationIP` string,`browserUsed` string,`content` string,`length` int);
      CREATE TAG IF NOT EXISTS `Tagclass`(`name` string,`url` string);
      CREATE TAG IF NOT EXISTS `Post`(`imageFile` string,`creationDate` string,`locationIP` string,`browserUsed` string,`language` string,`content` string,`length` int);
      CREATE TAG IF NOT EXISTS `Place`(`name` string,`url` string,`type` string);
      CREATE EDGE IF NOT EXISTS `HAS_INTEREST`();
      CREATE EDGE IF NOT EXISTS `IS_LOCATED_IN`();
      CREATE EDGE IF NOT EXISTS `REPLY_OF`();
      CREATE EDGE IF NOT EXISTS `LIKES`(`creationDate` string);
      CREATE EDGE IF NOT EXISTS `HAS_CREATOR`();
      CREATE EDGE IF NOT EXISTS `CONTAINER_OF`();
      CREATE EDGE IF NOT EXISTS `KNOWS`(`creationDate` string);
      CREATE EDGE IF NOT EXISTS `HAS_MEMBER`(`joinDate` string);
      CREATE EDGE IF NOT EXISTS `STUDY_AT`(`classYear` int);
      CREATE EDGE IF NOT EXISTS `WORK_AT`(`workFrom` int);
      CREATE EDGE IF NOT EXISTS `IS_PART_OF`();
      CREATE EDGE IF NOT EXISTS `IS_SUBCLASS_OF`();
      CREATE EDGE IF NOT EXISTS `HAS_TYPE`();
      CREATE EDGE IF NOT EXISTS `HAS_TAG`();
      CREATE EDGE IF NOT EXISTS `HAS_MODERATOR`();


    afterPeriod: 8s
logPath: ./err/test.log
files:
  - path: /home/vesoft/sf30/social_network/dynamic/post.csv
    failDataPath: ./err/data/Post.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Post
            props:
              - name: imageFile
                type: string
                index: 1
              - name: creationDate
                type: string
                index: 2
              - name: locationIP
                type: string
                index: 3
              - name: browserUsed
                type: string
                index: 4
              - name: language
                type: string
                index: 5
              - name: content
                type: string
                index: 6
              - name: length
                type: int
                index: 7

  - path: /home/vesoft/sf30/social_network/dynamic/comment.csv
    failDataPath: ./err/data/Comment.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Comment
            props:
              - name: creationDate
                type: string
                index: 1
              - name: locationIP
                type: string
                index: 2
              - name: browserUsed
                type: string
                index: 3
              - name: content
                type: string
                index: 4
              - name: length
                type: int
                index: 5

  - path: /home/vesoft/sf30/social_network/dynamic/forum.csv
    failDataPath: ./err/data/Forum.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Forum
            props:
              - name: title
                type: string
                index: 1
              - name: creationDate
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person.csv
    failDataPath: ./err/data/Person.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Person
            props:
              - name: firstName
                type: string
                index: 1
              - name: lastName
                type: string
                index: 2
              - name: gender
                type: string
                index: 3
              - name: birthday
                type: string
                index: 4
              - name: creationDate
                type: string
                index: 5
              - name: locationIP
                type: string
                index: 6
              - name: browserUsed
                type: string
                index: 7

  - path: /home/vesoft/sf30/social_network/static/organisation.csv
    failDataPath: ./err/data/Organisation.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Organisation
            props:
              - name: type
                type: string
                index: 1
              - name: name
                type: string
                index: 2
              - name: url
                type: string
                index: 3

  - path: /home/vesoft/sf30/social_network/static/place.csv
    failDataPath: ./err/data/Place.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Place
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2
              - name: type
                type: string
                index: 3

  - path: /home/vesoft/sf30/social_network/static/tag.csv
    failDataPath: ./err/data/Tag.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Tag
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/static/tagclass.csv
    failDataPath: ./err/data/Tagclass.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: string
        tags:
          - name: Tagclass
            props:
              - name: name
                type: string
                index: 1
              - name: url
                type: string
                index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_hasCreator_person.csv
    failDataPath: ./err/data/HAS_CREATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_CREATOR
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/post_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_hasCreator_person.csv
    failDataPath: ./err/data/HAS_CREATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_CREATOR
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_replyOf_comment.csv
    failDataPath: ./err/data/REPLY_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: REPLY_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/comment_replyOf_post.csv
    failDataPath: ./err/data/REPLY_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: REPLY_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_containerOf_post.csv
    failDataPath: ./err/data/CONTAINER_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: CONTAINER_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasMember_person.csv
    failDataPath: ./err/data/HAS_MEMBER.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_MEMBER
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: joinDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasModerator_person.csv
    failDataPath: ./err/data/HAS_MODERATOR.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_MODERATOR
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/forum_hasTag_tag.csv
    failDataPath: ./err/data/HAS_TAG.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TAG
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/person_hasInterest_tag.csv
    failDataPath: ./err/data/HAS_INTEREST.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_INTEREST
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/dynamic/person_knows_person.csv
    failDataPath: ./err/data/KNOWS.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: KNOWS
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_likes_comment.csv
    failDataPath: ./err/data/LIKES.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: LIKES
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_likes_post.csv
    failDataPath: ./err/data/LIKES.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: LIKES
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: creationDate
            type: string
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_studyAt_organisation.csv
    failDataPath: ./err/data/STUDY_AT.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: STUDY_AT
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: classYear
            type: int
            index: 2

  - path: /home/vesoft/sf30/social_network/dynamic/person_workAt_organisation.csv
    failDataPath: ./err/data/WORK_AT.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: WORK_AT
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:
          - name: workFrom
            type: int
            index: 2

  - path: /home/vesoft/sf30/social_network/static/organisation_isLocatedIn_place.csv
    failDataPath: ./err/data/IS_LOCATED_IN.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_LOCATED_IN
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/static/place_isPartOf_place.csv
    failDataPath: ./err/data/IS_PART_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_PART_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/static/tagclass_isSubclassOf_tagclass.csv
    failDataPath: ./err/data/IS_SUBCLASS_OF.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: IS_SUBCLASS_OF
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

  - path: /home/vesoft/sf30/social_network/static/tag_hasType_tagclass.csv
    failDataPath: ./err/data/HAS_TYPE.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: edge
      edge:
        name: HAS_TYPE
        withRanking: false
        srcVID:
          index: 0
          type: string
        dstVID:
          index: 1
          type: string
        props:

[/quote 对于2.0的话 不需要创建 CREATE TAG INDEX idx_Forum ON Forum()等等吗?

小哥,打钱。

导入现不建立索引,先导入再说吧,感觉能导入都是问题,导入成功可以加上

如果创建索引再导入,导入的速度会比较慢。

所以建议先导入,然后再创建索引,rebuild

怪我囊中羞涩
但还是要给优秀的你们点个赞 :+1:

之前的脚本有问题,字数限制了,我重新发帖子来说明

2 个赞

导入报错,请问这个怎么解决哇

2021/05/14 11:02:28 [ERROR] handler.go:63: Client 1 fail to execute: INSERT EDGE `IS_LOCATED_IN`() VALUES  ":START_ID(Organisation)"->":END_ID(Place)":() , "29"->"61":() , "59"->"62":() , "89"->"3":() , "119"->"64":() , "149"->"49":() , "179"->"49":() , "209"->"68":() , "239"->"66":() , "269"->"70":() , "299"->"72":() , "329"->"73":() , "359"->"74":() , "389"->"75":() , "419"->"77":() , "449"->"50":() , "479"->"50":() , "509"->"78":() , "539"->"0":() , "569"->"51":() , "599"->"80":() , "629"->"81":() , "659"->"81":() , "689"->"18":() , "719"->"83":() , "749"->"23":() , "779"->"53":() , "809"->"86":() , "839"->"89":() , "869"->"32":() , "899"->"34":() , "929"->"1":() , "959"->"55":() , "989"->"93":() , "1019"->"95":() , "1049"->"56":() , "1079"->"56":() , "1109"->"39":() , "1139"->"43":() , "1169"->"97":() , "1199"->"99":() , "1229"->"100":() , "1259"->"101":() , "1289"->"45":() , "1319"->"103":() , "1349"->"105":() , "1379"->"106":() , "1409"->"107":() , "1439"->"107":() , "1469"->"57":() , "1499"->"57":() , "1529"->"57":() , "1559"->"58":() , "1589"->"955":() , "1619"->"827":() , "1649"->"987":() , "1679"->"989":() , "1709"->"981":() , "1739"->"986":() , "1769"->"509":() , "1799"->"510":() , "1829"->"1009":() , "1859"->"559":() , "1889"->"594":() , "1919"->"584":() , "1949"->"848":() , "1979"->"1036":() , "2009"->"1028":() , "2039"->"1020":() , "2069"->"1029":() , "2099"->"1020":() , "2129"->"1020":() , "2159"->"1026":() , "2189"->"1051":() , "2219"->"446":() , "2249"->"398":() , "2279"->"459":() , "2309"->"446":() , "2339"->"384":() , "2369"->"446":() , "2399"->"1060":() , "2429"->"515":() , "2459"->"1082":() , "2489"->"1093":() , "2519"->"1100":() , "2549"->"1102":() , "2579"->"1118":() , "2609"->"1024":() , "2639"->"519":() , "2669"->"1125":() , "2699"->"1132":() , "2729"->"1129":() , "2759"->"1130":() , "2789"->"1132":() , "2819"->"1132":() , "2849"->"600":() , "2879"->"1176":() , "2909"->"609":() , "2939"->"598":() , "2969"->"1141":() ;, ErrMsg: Storage Error: The VID must be a 64-bit interger or a string fitting space vertex id length limit., ErrCode: -8

space VID 类型不对。

导入了很多数据就饱了这一个错,不应该是VID 不对吧
详细日志如下

nebula@hadoop-node-3 mytest]$ ./nebula-importer-buildsuccess --config vid_string.yaml
2021/05/14 10:59:30 --- START OF NEBULA IMPORTER ---
2021/05/14 10:59:30 File(/data/home/nebula/mytest/social_network/dynamic/person.csv) doesn't exist
2021/05/14 10:59:31 --- END OF NEBULA IMPORTER ---
[nebula@hadoop-node-3 mytest]$ ./nebula-importer-buildsuccess --config vid_string.yaml
2021/05/14 11:00:56 --- START OF NEBULA IMPORTER ---
2021/05/14 11:00:56 File(/data/home/nebula/mytest/social_network/dynamic/post_0_0_0_0.csv) doesn't exist
2021/05/14 11:00:57 --- END OF NEBULA IMPORTER ---
[nebula@hadoop-node-3 mytest]$ ./nebula-importer-buildsuccess --config vid_string.yaml
2021/05/14 11:02:17 --- START OF NEBULA IMPORTER ---
2021/05/14 11:02:17 [INFO] connection_pool.go:74: [nebula-clients] connection pool is initialized successfully
2021/05/14 11:02:17 [INFO] clientmgr.go:28: Create 30 Nebula Graph clients
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/post_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(0): /data/home/nebula/mytest/social_network/dynamic/post_0_0.csv, schema: < :VID(string),Post.imageFile:string,Post.creationDate:string,Post.locationIP:string,Post.browserUsed:string,Post.language:string,Post.content:string,Post.length:int >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/comment_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(3): /data/home/nebula/mytest/social_network/dynamic/person_0_0.csv, schema: < :VID(string),Person.firstName:string,Person.lastName:string,Person.gender:string,Person.birthday:string,Person.creationDate:string,Person.locationIP:string,Person.browserUsed:string >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/forum_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/organisation_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(4): /data/home/nebula/mytest/social_network/static/organisation_0_0.csv, schema: < :VID(string),Organisation.type:string,Organisation.name:string,Organisation.url:string >
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(2): /data/home/nebula/mytest/social_network/dynamic/forum_0_0.csv, schema: < :VID(string),Forum.title:string,Forum.creationDate:string >
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(1): /data/home/nebula/mytest/social_network/dynamic/comment_0_0.csv, schema: < :VID(string),Comment.creationDate:string,Comment.locationIP:string,Comment.browserUsed:string,Comment.content:string,Comment.length:int >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/place_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(5): /data/home/nebula/mytest/social_network/static/place_0_0.csv, schema: < :VID(string),Place.name:string,Place.url:string,Place.type:string >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/tag_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(6): /data/home/nebula/mytest/social_network/static/tag_0_0.csv, schema: < :VID(string),Tag.name:string,Tag.url:string >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/tagclass_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(7): /data/home/nebula/mytest/social_network/static/tagclass_0_0.csv, schema: < :VID(string),Tagclass.name:string,Tagclass.url:string >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_isLocatedIn_place_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(8): /data/home/nebula/mytest/social_network/dynamic/person_isLocatedIn_place_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/post_hasCreator_person_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/post_hasTag_tag_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(9): /data/home/nebula/mytest/social_network/dynamic/post_hasCreator_person_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(10): /data/home/nebula/mytest/social_network/dynamic/post_hasTag_tag_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/post_isLocatedIn_place_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(11): /data/home/nebula/mytest/social_network/dynamic/post_isLocatedIn_place_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/comment_hasCreator_person_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(12): /data/home/nebula/mytest/social_network/dynamic/comment_hasCreator_person_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/comment_hasTag_tag_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/tagclass_0_0.csv) is: 72, error lines: 0
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(13): /data/home/nebula/mytest/social_network/dynamic/comment_hasTag_tag_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/comment_isLocatedIn_place_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(14): /data/home/nebula/mytest/social_network/dynamic/comment_isLocatedIn_place_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/comment_replyOf_comment_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(15): /data/home/nebula/mytest/social_network/dynamic/comment_replyOf_comment_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/forum_containerOf_post_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(17): /data/home/nebula/mytest/social_network/dynamic/forum_containerOf_post_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/comment_replyOf_post_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(16): /data/home/nebula/mytest/social_network/dynamic/comment_replyOf_post_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/forum_hasMember_person_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(18): /data/home/nebula/mytest/social_network/dynamic/forum_hasMember_person_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string),HAS_MEMBER.joinDate:string >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/forum_hasModerator_person_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(19): /data/home/nebula/mytest/social_network/dynamic/forum_hasModerator_person_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/forum_hasTag_tag_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(20): /data/home/nebula/mytest/social_network/dynamic/forum_hasTag_tag_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_knows_person_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(22): /data/home/nebula/mytest/social_network/dynamic/person_knows_person_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string),KNOWS.creationDate:string >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_hasInterest_tag_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(21): /data/home/nebula/mytest/social_network/dynamic/person_hasInterest_tag_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/place_isPartOf_place_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/organisation_isLocatedIn_place_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/tagclass_isSubclassOf_tagclass_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(29): /data/home/nebula/mytest/social_network/static/tagclass_isSubclassOf_tagclass_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_studyAt_organisation_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(27): /data/home/nebula/mytest/social_network/static/organisation_isLocatedIn_place_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_likes_comment_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(23): /data/home/nebula/mytest/social_network/dynamic/person_likes_comment_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string),LIKES.creationDate:string >
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(25): /data/home/nebula/mytest/social_network/dynamic/person_studyAt_organisation_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string),STUDY_AT.classYear:int >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/static/tag_hasType_tagclass_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(28): /data/home/nebula/mytest/social_network/static/place_isPartOf_place_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_likes_post_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(24): /data/home/nebula/mytest/social_network/dynamic/person_likes_post_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string),LIKES.creationDate:string >
2021/05/14 11:02:17 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/tagclass_isSubclassOf_tagclass_0_0.csv) is: 71, error lines: 0
2021/05/14 11:02:17 [INFO] reader.go:26: The delimiter of /data/home/nebula/mytest/social_network/dynamic/person_workAt_organisation_0_0.csv is U+007C '|'
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(30): /data/home/nebula/mytest/social_network/static/tag_hasType_tagclass_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string) >
2021/05/14 11:02:17 [INFO] reader.go:64: Start to read file(26): /data/home/nebula/mytest/social_network/dynamic/person_workAt_organisation_0_0.csv, schema: < :SRC_VID(string),:DST_VID(string),WORK_AT.workFrom:int >
2021/05/14 11:02:17 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/place_isPartOf_place_0_0.csv) is: 1455, error lines: 0
2021/05/14 11:02:17 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/place_0_0.csv) is: 1461, error lines: 0
2021/05/14 11:02:17 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/organisation_isLocatedIn_place_0_0.csv) is: 7956, error lines: 0
2021/05/14 11:02:17 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/tag_hasType_tagclass_0_0.csv) is: 16081, error lines: 0
2021/05/14 11:02:25 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/tagclass_0_0.csv): Time(8.05s), Finished(82), Failed(0), Latency AVG(5156us), Batches Req AVG(5747us), Rows AVG(10.18/s)
2021/05/14 11:02:25 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/place_0_0.csv): Time(8.10s), Finished(12212), Failed(0), Latency AVG(7329us), Batches Req AVG(7935us), Rows AVG(1508.07/s)
2021/05/14 11:02:25 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/tagclass_isSubclassOf_tagclass_0_0.csv): Time(8.16s), Finished(41314), Failed(0), Latency AVG(6468us), Batches Req AVG(6979us), Rows AVG(5060.03/s)
2021/05/14 11:02:25 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/place_isPartOf_place_0_0.csv): Time(8.19s), Finished(58959), Failed(0), Latency AVG(6025us), Batches Req AVG(6509us), Rows AVG(7196.96/s)
2021/05/14 11:02:27 [INFO] statsmgr.go:61: Tick: Time(10.00s), Finished(431658), Failed(0), Latency AVG(4389us), Batches Req AVG(4744us), Rows AVG(43162.05/s)
2021/05/14 11:02:28 [ERROR] handler.go:63: Client 1 fail to execute: INSERT EDGE `IS_LOCATED_IN`() VALUES  ":START_ID(Organisation)"->":END_ID(Place)":() , "29"->"61":() , "59"->"62":() , "89"->"3":() , "119"->"64":() , "149"->"49":() , "179"->"49":() , "209"->"68":() , "239"->"66":() , "269"->"70":() , "299"->"72":() , "329"->"73":() , "359"->"74":() , "389"->"75":() , "419"->"77":() , "449"->"50":() , "479"->"50":() , "509"->"78":() , "539"->"0":() , "569"->"51":() , "599"->"80":() , "629"->"81":() , "659"->"81":() , "689"->"18":() , "719"->"83":() , "749"->"23":() , "779"->"53":() , "809"->"86":() , "839"->"89":() , "869"->"32":() , "899"->"34":() , "929"->"1":() , "959"->"55":() , "989"->"93":() , "1019"->"95":() , "1049"->"56":() , "1079"->"56":() , "1109"->"39":() , "1139"->"43":() , "1169"->"97":() , "1199"->"99":() , "1229"->"100":() , "1259"->"101":() , "1289"->"45":() , "1319"->"103":() , "1349"->"105":() , "1379"->"106":() , "1409"->"107":() , "1439"->"107":() , "1469"->"57":() , "1499"->"57":() , "1529"->"57":() , "1559"->"58":() , "1589"->"955":() , "1619"->"827":() , "1649"->"987":() , "1679"->"989":() , "1709"->"981":() , "1739"->"986":() , "1769"->"509":() , "1799"->"510":() , "1829"->"1009":() , "1859"->"559":() , "1889"->"594":() , "1919"->"584":() , "1949"->"848":() , "1979"->"1036":() , "2009"->"1028":() , "2039"->"1020":() , "2069"->"1029":() , "2099"->"1020":() , "2129"->"1020":() , "2159"->"1026":() , "2189"->"1051":() , "2219"->"446":() , "2249"->"398":() , "2279"->"459":() , "2309"->"446":() , "2339"->"384":() , "2369"->"446":() , "2399"->"1060":() , "2429"->"515":() , "2459"->"1082":() , "2489"->"1093":() , "2519"->"1100":() , "2549"->"1102":() , "2579"->"1118":() , "2609"->"1024":() , "2639"->"519":() , "2669"->"1125":() , "2699"->"1132":() , "2729"->"1129":() , "2759"->"1130":() , "2789"->"1132":() , "2819"->"1132":() , "2849"->"600":() , "2879"->"1176":() , "2909"->"609":() , "2939"->"598":() , "2969"->"1141":() ;, ErrMsg: Storage Error: The VID must be a 64-bit interger or a string fitting space vertex id length limit., ErrCode: -8
2021/05/14 11:02:28 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/organisation_0_0.csv) is: 7956, error lines: 0
2021/05/14 11:02:28 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/organisation_isLocatedIn_place_0_0.csv): Time(11.41s), Finished(508685), Failed(100), Latency AVG(4614us), Batches Req AVG(4991us), Rows AVG(44585.68/s)
2021/05/14 11:02:28 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/static/tag_0_0.csv) is: 16081, error lines: 0
2021/05/14 11:02:28 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/tag_hasType_tagclass_0_0.csv): Time(11.68s), Finished(692630), Failed(100), Latency AVG(4465us), Batches Req AVG(4833us), Rows AVG(59296.18/s)
2021/05/14 11:02:29 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/organisation_0_0.csv): Time(11.83s), Finished(797696), Failed(100), Latency AVG(4407us), Batches Req AVG(4774us), Rows AVG(67402.12/s)
2021/05/14 11:02:29 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/static/tag_0_0.csv): Time(12.04s), Finished(940433), Failed(100), Latency AVG(4352us), Batches Req AVG(4712us), Rows AVG(78087.78/s)
2021/05/14 11:02:29 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_studyAt_organisation_0_0.csv) is: 52632, error lines: 0
2021/05/14 11:02:29 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_isLocatedIn_place_0_0.csv) is: 65645, error lines: 0
2021/05/14 11:02:30 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_studyAt_organisation_0_0.csv): Time(12.99s), Finished(1617621), Failed(100), Latency AVG(4144us), Batches Req AVG(4484us), Rows AVG(124541.19/s)
2021/05/14 11:02:30 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_isLocatedIn_place_0_0.csv): Time(13.28s), Finished(1827498), Failed(100), Latency AVG(4099us), Batches Req AVG(4439us), Rows AVG(137655.11/s)
2021/05/14 11:02:30 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_0_0.csv) is: 65645, error lines: 0
2021/05/14 11:02:31 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_0_0.csv): Time(13.87s), Finished(2225555), Failed(100), Latency AVG(4091us), Batches Req AVG(4440us), Rows AVG(160454.57/s)
2021/05/14 11:02:32 [INFO] statsmgr.go:61: Tick: Time(15.00s), Finished(3006740), Failed(100), Latency AVG(4069us), Batches Req AVG(4410us), Rows AVG(200446.21/s)
2021/05/14 11:02:32 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_workAt_organisation_0_0.csv) is: 143553, error lines: 0
2021/05/14 11:02:32 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_workAt_organisation_0_0.csv): Time(15.60s), Finished(3427608), Failed(100), Latency AVG(4050us), Batches Req AVG(4387us), Rows AVG(219774.73/s)
2021/05/14 11:02:37 [INFO] statsmgr.go:61: Tick: Time(20.00s), Finished(6223108), Failed(100), Latency AVG(4203us), Batches Req AVG(4533us), Rows AVG(311150.05/s)
2021/05/14 11:02:42 [INFO] statsmgr.go:61: Tick: Time(25.00s), Finished(9455008), Failed(100), Latency AVG(4235us), Batches Req AVG(4564us), Rows AVG(378199.87/s)
2021/05/14 11:02:47 [INFO] statsmgr.go:61: Tick: Time(30.00s), Finished(10162308), Failed(100), Latency AVG(5372us), Batches Req AVG(5711us), Rows AVG(338735.25/s)
2021/05/14 11:02:51 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/forum_hasModerator_person_0_0.csv) is: 595453, error lines: 0
2021/05/14 11:02:51 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/forum_0_0.csv) is: 595453, error lines: 0
2021/05/14 11:02:51 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/forum_hasModerator_person_0_0.csv): Time(34.57s), Finished(11899865), Failed(100), Latency AVG(5688us), Batches Req AVG(6032us), Rows AVG(344222.81/s)
2021/05/14 11:02:52 [INFO] statsmgr.go:61: Tick: Time(35.00s), Finished(12146114), Failed(100), Latency AVG(5672us), Batches Req AVG(6016us), Rows AVG(347024.84/s)
2021/05/14 11:02:52 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/forum_0_0.csv): Time(35.07s), Finished(12182814), Failed(100), Latency AVG(5672us), Batches Req AVG(6016us), Rows AVG(347354.38/s)
2021/05/14 11:02:57 [INFO] statsmgr.go:61: Tick: Time(40.00s), Finished(13087214), Failed(100), Latency AVG(6365us), Batches Req AVG(6719us), Rows AVG(327179.83/s)
2021/05/14 11:03:02 [INFO] statsmgr.go:61: Tick: Time(45.00s), Finished(13330114), Failed(100), Latency AVG(7353us), Batches Req AVG(7719us), Rows AVG(296221.33/s)
2021/05/14 11:03:07 [INFO] statsmgr.go:61: Tick: Time(50.00s), Finished(13711214), Failed(100), Latency AVG(8230us), Batches Req AVG(8604us), Rows AVG(274222.69/s)
2021/05/14 11:03:12 [INFO] statsmgr.go:61: Tick: Time(55.00s), Finished(16691714), Failed(100), Latency AVG(7597us), Batches Req AVG(7965us), Rows AVG(303484.77/s)
2021/05/14 11:03:17 [INFO] statsmgr.go:61: Tick: Time(60.00s), Finished(16977614), Failed(100), Latency AVG(8332us), Batches Req AVG(8704us), Rows AVG(282957.37/s)
2021/05/14 11:03:22 [INFO] statsmgr.go:61: Tick: Time(65.00s), Finished(17154614), Failed(100), Latency AVG(9106us), Batches Req AVG(9485us), Rows AVG(263916.02/s)
2021/05/14 11:03:27 [INFO] statsmgr.go:61: Tick: Time(70.00s), Finished(17410514), Failed(100), Latency AVG(9830us), Batches Req AVG(10216us), Rows AVG(248718.16/s)
2021/05/14 11:03:32 [INFO] statsmgr.go:61: Tick: Time(75.00s), Finished(18048814), Failed(100), Latency AVG(10294us), Batches Req AVG(10688us), Rows AVG(240650.47/s)
2021/05/14 11:03:37 [INFO] statsmgr.go:61: Tick: Time(80.00s), Finished(20244214), Failed(100), Latency AVG(9878us), Batches Req AVG(10267us), Rows AVG(253051.80/s)
2021/05/14 11:03:42 [INFO] statsmgr.go:61: Tick: Time(85.00s), Finished(20373214), Failed(100), Latency AVG(10541us), Batches Req AVG(10936us), Rows AVG(239682.52/s)
2021/05/14 11:03:47 [INFO] statsmgr.go:61: Tick: Time(90.00s), Finished(20499414), Failed(100), Latency AVG(11193us), Batches Req AVG(11594us), Rows AVG(227769.39/s)
2021/05/14 11:03:52 [INFO] statsmgr.go:61: Tick: Time(95.00s), Finished(20592214), Failed(100), Latency AVG(11870us), Batches Req AVG(12276us), Rows AVG(216760.17/s)
2021/05/14 11:03:57 [INFO] statsmgr.go:61: Tick: Time(100.00s), Finished(20812914), Failed(100), Latency AVG(12452us), Batches Req AVG(12862us), Rows AVG(208128.47/s)
2021/05/14 11:04:02 [INFO] statsmgr.go:61: Tick: Time(105.00s), Finished(20926914), Failed(100), Latency AVG(13079us), Batches Req AVG(13495us), Rows AVG(199303.89/s)
2021/05/14 11:04:07 [INFO] statsmgr.go:61: Tick: Time(110.00s), Finished(23342614), Failed(100), Latency AVG(12349us), Batches Req AVG(12758us), Rows AVG(212205.56/s)
2021/05/14 11:04:12 [INFO] statsmgr.go:61: Tick: Time(115.00s), Finished(24159414), Failed(100), Latency AVG(12534us), Batches Req AVG(12943us), Rows AVG(210080.29/s)
2021/05/14 11:04:17 [INFO] statsmgr.go:61: Tick: Time(120.00s), Finished(24274714), Failed(100), Latency AVG(13087us), Batches Req AVG(13500us), Rows AVG(202288.96/s)
2021/05/14 11:04:22 [INFO] statsmgr.go:61: Tick: Time(125.00s), Finished(24442414), Failed(100), Latency AVG(13603us), Batches Req AVG(14021us), Rows AVG(195538.87/s)
2021/05/14 11:04:27 [INFO] statsmgr.go:61: Tick: Time(130.00s), Finished(25711514), Failed(100), Latency AVG(13497us), Batches Req AVG(13914us), Rows AVG(197780.66/s)
2021/05/14 11:04:29 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_hasInterest_tag_0_0.csv) is: 1535511, error lines: 0
2021/05/14 11:04:32 [INFO] statsmgr.go:61: Tick: Time(135.00s), Finished(27514641), Failed(100), Latency AVG(13128us), Batches Req AVG(13541us), Rows AVG(203811.79/s)
2021/05/14 11:04:37 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_hasInterest_tag_0_0.csv): Time(139.85s), Finished(27634725), Failed(100), Latency AVG(13597us), Batches Req AVG(14014us), Rows AVG(197606.18/s)
2021/05/14 11:04:37 [INFO] statsmgr.go:61: Tick: Time(140.00s), Finished(27649225), Failed(100), Latency AVG(13601us), Batches Req AVG(14017us), Rows AVG(197493.85/s)
2021/05/14 11:04:42 [INFO] statsmgr.go:61: Tick: Time(145.00s), Finished(27776825), Failed(100), Latency AVG(14075us), Batches Req AVG(14494us), Rows AVG(191563.52/s)
2021/05/14 11:04:47 [INFO] statsmgr.go:61: Tick: Time(150.00s), Finished(27878725), Failed(100), Latency AVG(14559us), Batches Req AVG(14982us), Rows AVG(185857.20/s)
2021/05/14 11:04:52 [INFO] statsmgr.go:61: Tick: Time(155.00s), Finished(29917625), Failed(100), Latency AVG(14044us), Batches Req AVG(14463us), Rows AVG(193016.95/s)
2021/05/14 11:04:57 [INFO] statsmgr.go:61: Tick: Time(160.00s), Finished(31183525), Failed(100), Latency AVG(13940us), Batches Req AVG(14356us), Rows AVG(194896.20/s)
2021/05/14 11:05:02 [INFO] statsmgr.go:61: Tick: Time(165.00s), Finished(31297625), Failed(100), Latency AVG(14358us), Batches Req AVG(14779us), Rows AVG(189681.49/s)
2021/05/14 11:05:07 [INFO] statsmgr.go:61: Tick: Time(170.00s), Finished(31411525), Failed(100), Latency AVG(14778us), Batches Req AVG(15204us), Rows AVG(184773.03/s)
2021/05/14 11:05:12 [INFO] statsmgr.go:61: Tick: Time(175.00s), Finished(33335525), Failed(100), Latency AVG(14357us), Batches Req AVG(14778us), Rows AVG(190488.73/s)
2021/05/14 11:05:13 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_knows_person_0_0.csv) is: 1938516, error lines: 0
2021/05/14 11:05:13 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_knows_person_0_0.csv): Time(176.58s), Finished(34403841), Failed(100), Latency AVG(14038us), Batches Req AVG(14456us), Rows AVG(194831.02/s)
2021/05/14 11:05:17 [INFO] statsmgr.go:61: Tick: Time(180.00s), Finished(34548341), Failed(100), Latency AVG(14264us), Batches Req AVG(14683us), Rows AVG(191934.15/s)
2021/05/14 11:05:22 [INFO] statsmgr.go:61: Tick: Time(185.00s), Finished(34727041), Failed(100), Latency AVG(14621us), Batches Req AVG(15043us), Rows AVG(187712.86/s)
2021/05/14 11:05:27 [INFO] statsmgr.go:61: Tick: Time(190.00s), Finished(34855741), Failed(100), Latency AVG(14984us), Batches Req AVG(15410us), Rows AVG(183450.87/s)
2021/05/14 11:05:29 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/forum_hasTag_tag_0_0.csv) is: 2065319, error lines: 0
2021/05/14 11:05:30 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/forum_hasTag_tag_0_0.csv): Time(193.17s), Finished(35876260), Failed(100), Latency AVG(14823us), Batches Req AVG(15248us), Rows AVG(185724.97/s)
2021/05/14 11:05:32 [INFO] statsmgr.go:61: Tick: Time(195.00s), Finished(37142360), Failed(100), Latency AVG(14455us), Batches Req AVG(14876us), Rows AVG(190473.52/s)
2021/05/14 11:05:37 [INFO] statsmgr.go:61: Tick: Time(200.00s), Finished(38178760), Failed(100), Latency AVG(14441us), Batches Req AVG(14862us), Rows AVG(190893.38/s)
2021/05/14 11:05:42 [INFO] statsmgr.go:61: Tick: Time(205.00s), Finished(38271660), Failed(100), Latency AVG(14795us), Batches Req AVG(15219us), Rows AVG(186690.53/s)
2021/05/14 11:05:47 [INFO] statsmgr.go:61: Tick: Time(210.00s), Finished(38361760), Failed(100), Latency AVG(15137us), Batches Req AVG(15564us), Rows AVG(182674.71/s)
2021/05/14 11:05:52 [INFO] statsmgr.go:61: Tick: Time(215.00s), Finished(39723360), Failed(100), Latency AVG(14992us), Batches Req AVG(15418us), Rows AVG(184759.16/s)
2021/05/14 11:05:57 [INFO] statsmgr.go:61: Tick: Time(220.00s), Finished(41490760), Failed(100), Latency AVG(14696us), Batches Req AVG(15118us), Rows AVG(188593.94/s)
2021/05/14 11:06:02 [INFO] statsmgr.go:61: Tick: Time(225.00s), Finished(41621060), Failed(100), Latency AVG(15008us), Batches Req AVG(15431us), Rows AVG(184982.22/s)
2021/05/14 11:06:07 [INFO] statsmgr.go:61: Tick: Time(230.00s), Finished(41750060), Failed(100), Latency AVG(15315us), Batches Req AVG(15741us), Rows AVG(181521.77/s)
2021/05/14 11:06:12 [INFO] statsmgr.go:61: Tick: Time(235.00s), Finished(44236860), Failed(100), Latency AVG(14780us), Batches Req AVG(15200us), Rows AVG(188241.70/s)
2021/05/14 11:06:17 [INFO] statsmgr.go:61: Tick: Time(240.00s), Finished(45172560), Failed(100), Latency AVG(14791us), Batches Req AVG(15211us), Rows AVG(188218.66/s)
2021/05/14 11:06:22 [INFO] statsmgr.go:61: Tick: Time(245.00s), Finished(45265760), Failed(100), Latency AVG(15091us), Batches Req AVG(15512us), Rows AVG(184757.86/s)
2021/05/14 11:06:27 [INFO] statsmgr.go:61: Tick: Time(250.00s), Finished(45358660), Failed(100), Latency AVG(15386us), Batches Req AVG(15810us), Rows AVG(181434.10/s)
2021/05/14 11:06:32 [INFO] statsmgr.go:61: Tick: Time(255.00s), Finished(45507560), Failed(100), Latency AVG(15656us), Batches Req AVG(16081us), Rows AVG(178460.40/s)
2021/05/14 11:06:37 [INFO] statsmgr.go:61: Tick: Time(260.00s), Finished(46896060), Failed(100), Latency AVG(15512us), Batches Req AVG(15935us), Rows AVG(180369.43/s)
2021/05/14 11:06:42 [INFO] statsmgr.go:61: Tick: Time(265.00s), Finished(49775460), Failed(100), Latency AVG(14892us), Batches Req AVG(15310us), Rows AVG(187831.31/s)
2021/05/14 11:06:47 [INFO] statsmgr.go:61: Tick: Time(270.00s), Finished(49889460), Failed(100), Latency AVG(15158us), Batches Req AVG(15577us), Rows AVG(184775.52/s)
2021/05/14 11:06:52 [INFO] statsmgr.go:61: Tick: Time(275.00s), Finished(49970560), Failed(100), Latency AVG(15425us), Batches Req AVG(15846us), Rows AVG(181711.13/s)
2021/05/14 11:06:57 [INFO] statsmgr.go:61: Tick: Time(280.00s), Finished(50054460), Failed(100), Latency AVG(15699us), Batches Req AVG(16123us), Rows AVG(178765.58/s)
2021/05/14 11:07:02 [INFO] statsmgr.go:61: Tick: Time(285.00s), Finished(50486160), Failed(100), Latency AVG(15861us), Batches Req AVG(16285us), Rows AVG(177144.33/s)
2021/05/14 11:07:07 [INFO] statsmgr.go:61: Tick: Time(290.00s), Finished(50558160), Failed(100), Latency AVG(16129us), Batches Req AVG(16554us), Rows AVG(174337.89/s)
2021/05/14 11:07:12 [INFO] statsmgr.go:61: Tick: Time(295.00s), Finished(53064360), Failed(100), Latency AVG(15639us), Batches Req AVG(16060us), Rows AVG(179879.10/s)
2021/05/14 11:07:17 [INFO] statsmgr.go:61: Tick: Time(300.00s), Finished(54223460), Failed(100), Latency AVG(15569us), Batches Req AVG(15990us), Rows AVG(180744.77/s)
2021/05/14 11:07:22 [INFO] statsmgr.go:61: Tick: Time(305.00s), Finished(54295660), Failed(100), Latency AVG(15817us), Batches Req AVG(16239us), Rows AVG(178018.52/s)
2021/05/14 11:07:27 [INFO] statsmgr.go:61: Tick: Time(310.00s), Finished(54370660), Failed(100), Latency AVG(16071us), Batches Req AVG(16494us), Rows AVG(175389.06/s)
2021/05/14 11:07:32 [INFO] statsmgr.go:61: Tick: Time(315.00s), Finished(54445560), Failed(100), Latency AVG(16322us), Batches Req AVG(16746us), Rows AVG(172842.61/s)
2021/05/14 11:07:37 [INFO] statsmgr.go:61: Tick: Time(320.00s), Finished(55859660), Failed(100), Latency AVG(16173us), Batches Req AVG(16596us), Rows AVG(174560.99/s)
2021/05/14 11:07:42 [INFO] statsmgr.go:61: Tick: Time(325.00s), Finished(55917560), Failed(100), Latency AVG(16418us), Batches Req AVG(16842us), Rows AVG(172053.57/s)
2021/05/14 11:07:47 [INFO] statsmgr.go:61: Tick: Time(330.00s), Finished(57098360), Failed(100), Latency AVG(16341us), Batches Req AVG(16764us), Rows AVG(173025.16/s)
2021/05/14 11:07:52 [INFO] statsmgr.go:61: Tick: Time(335.00s), Finished(59194460), Failed(100), Latency AVG(16003us), Batches Req AVG(16422us), Rows AVG(176699.35/s)
2021/05/14 11:07:57 [INFO] statsmgr.go:61: Tick: Time(340.00s), Finished(59284460), Failed(100), Latency AVG(16226us), Batches Req AVG(16646us), Rows AVG(174365.72/s)
2021/05/14 11:08:02 [INFO] statsmgr.go:61: Tick: Time(345.00s), Finished(59366960), Failed(100), Latency AVG(16453us), Batches Req AVG(16873us), Rows AVG(172078.00/s)
2021/05/14 11:08:07 [INFO] statsmgr.go:61: Tick: Time(350.00s), Finished(59450960), Failed(100), Latency AVG(16683us), Batches Req AVG(17106us), Rows AVG(169859.43/s)
2021/05/14 11:08:12 [INFO] statsmgr.go:61: Tick: Time(355.00s), Finished(59534860), Failed(100), Latency AVG(16911us), Batches Req AVG(17334us), Rows AVG(167703.50/s)
2021/05/14 11:08:17 [INFO] statsmgr.go:61: Tick: Time(360.00s), Finished(61151560), Failed(100), Latency AVG(16694us), Batches Req AVG(17116us), Rows AVG(169865.25/s)
2021/05/14 11:08:22 [INFO] statsmgr.go:61: Tick: Time(365.00s), Finished(61217560), Failed(100), Latency AVG(16920us), Batches Req AVG(17343us), Rows AVG(167719.18/s)
2021/05/14 11:08:27 [INFO] statsmgr.go:61: Tick: Time(370.00s), Finished(61271460), Failed(100), Latency AVG(17151us), Batches Req AVG(17576us), Rows AVG(165598.43/s)
2021/05/14 11:08:32 [INFO] statsmgr.go:61: Tick: Time(375.00s), Finished(63954260), Failed(100), Latency AVG(16655us), Batches Req AVG(17076us), Rows AVG(170544.51/s)
2021/05/14 11:08:37 [INFO] statsmgr.go:61: Tick: Time(380.00s), Finished(64534560), Failed(100), Latency AVG(16733us), Batches Req AVG(17154us), Rows AVG(169827.54/s)
2021/05/14 11:08:42 [INFO] statsmgr.go:61: Tick: Time(385.00s), Finished(65897460), Failed(100), Latency AVG(16600us), Batches Req AVG(17020us), Rows AVG(171161.99/s)
2021/05/14 11:08:47 [INFO] statsmgr.go:61: Tick: Time(390.00s), Finished(65945460), Failed(100), Latency AVG(16819us), Batches Req AVG(17240us), Rows AVG(169090.84/s)
2021/05/14 11:08:52 [INFO] statsmgr.go:61: Tick: Time(395.00s), Finished(65993460), Failed(100), Latency AVG(17034us), Batches Req AVG(17456us), Rows AVG(167071.68/s)
2021/05/14 11:08:57 [INFO] statsmgr.go:61: Tick: Time(400.00s), Finished(66120960), Failed(100), Latency AVG(17218us), Batches Req AVG(17641us), Rows AVG(165302.19/s)
2021/05/14 11:09:02 [INFO] statsmgr.go:61: Tick: Time(405.00s), Finished(66195760), Failed(100), Latency AVG(17424us), Batches Req AVG(17848us), Rows AVG(163446.18/s)
2021/05/14 11:09:07 [INFO] statsmgr.go:61: Tick: Time(410.00s), Finished(66243960), Failed(100), Latency AVG(17634us), Batches Req AVG(18059us), Rows AVG(161570.27/s)
2021/05/14 11:09:12 [INFO] statsmgr.go:61: Tick: Time(415.00s), Finished(66911060), Failed(100), Latency AVG(17689us), Batches Req AVG(18114us), Rows AVG(161231.14/s)
2021/05/14 11:09:17 [INFO] statsmgr.go:61: Tick: Time(420.00s), Finished(70134360), Failed(100), Latency AVG(17072us), Batches Req AVG(17492us), Rows AVG(166986.40/s)
2021/05/14 11:09:22 [INFO] statsmgr.go:61: Tick: Time(425.00s), Finished(70201260), Failed(100), Latency AVG(17268us), Batches Req AVG(17689us), Rows AVG(165179.31/s)
2021/05/14 11:09:27 [INFO] statsmgr.go:61: Tick: Time(430.00s), Finished(70257460), Failed(100), Latency AVG(17462us), Batches Req AVG(17883us), Rows AVG(163389.30/s)
2021/05/14 11:09:32 [INFO] statsmgr.go:61: Tick: Time(435.00s), Finished(70299560), Failed(100), Latency AVG(17663us), Batches Req AVG(18085us), Rows AVG(161607.91/s)
2021/05/14 11:09:37 [INFO] statsmgr.go:61: Tick: Time(440.00s), Finished(71458760), Failed(100), Latency AVG(17589us), Batches Req AVG(18010us), Rows AVG(162406.26/s)
2021/05/14 11:09:42 [INFO] statsmgr.go:61: Tick: Time(445.00s), Finished(71552260), Failed(100), Latency AVG(17762us), Batches Req AVG(18183us), Rows AVG(160791.33/s)
2021/05/14 11:09:47 [INFO] statsmgr.go:61: Tick: Time(450.00s), Finished(71597260), Failed(100), Latency AVG(17971us), Batches Req AVG(18393us), Rows AVG(159104.79/s)
2021/05/14 11:09:52 [INFO] statsmgr.go:61: Tick: Time(455.00s), Finished(71639260), Failed(100), Latency AVG(18169us), Batches Req AVG(18592us), Rows AVG(157448.80/s)
2021/05/14 11:09:57 [INFO] statsmgr.go:61: Tick: Time(460.00s), Finished(71681360), Failed(100), Latency AVG(18361us), Batches Req AVG(18785us), Rows AVG(155828.78/s)
2021/05/14 11:10:02 [INFO] statsmgr.go:61: Tick: Time(465.00s), Finished(74994060), Failed(100), Latency AVG(17741us), Batches Req AVG(18161us), Rows AVG(161277.37/s)
2021/05/14 11:10:07 [INFO] statsmgr.go:61: Tick: Time(470.00s), Finished(75245260), Failed(100), Latency AVG(17876us), Batches Req AVG(18296us), Rows AVG(160096.01/s)
2021/05/14 11:10:12 [INFO] statsmgr.go:61: Tick: Time(475.00s), Finished(75285360), Failed(100), Latency AVG(18058us), Batches Req AVG(18478us), Rows AVG(158495.36/s)
2021/05/14 11:10:17 [INFO] statsmgr.go:61: Tick: Time(480.00s), Finished(75323460), Failed(100), Latency AVG(18252us), Batches Req AVG(18673us), Rows AVG(156923.81/s)
2021/05/14 11:10:22 [INFO] statsmgr.go:61: Tick: Time(485.00s), Finished(75543260), Failed(100), Latency AVG(18402us), Batches Req AVG(18823us), Rows AVG(155759.12/s)
2021/05/14 11:10:27 [INFO] statsmgr.go:61: Tick: Time(490.00s), Finished(77152660), Failed(100), Latency AVG(18200us), Batches Req AVG(18620us), Rows AVG(157454.30/s)
2021/05/14 11:10:32 [INFO] statsmgr.go:61: Tick: Time(495.00s), Finished(77212660), Failed(100), Latency AVG(18379us), Batches Req AVG(18800us), Rows AVG(155984.90/s)
2021/05/14 11:10:37 [INFO] statsmgr.go:61: Tick: Time(500.00s), Finished(77251660), Failed(100), Latency AVG(18557us), Batches Req AVG(18978us), Rows AVG(154503.17/s)
2021/05/14 11:10:42 [INFO] statsmgr.go:61: Tick: Time(505.00s), Finished(77290660), Failed(100), Latency AVG(18742us), Batches Req AVG(19164us), Rows AVG(153050.74/s)
2021/05/14 11:10:47 [INFO] statsmgr.go:61: Tick: Time(510.00s), Finished(79381760), Failed(100), Latency AVG(18437us), Batches Req AVG(18857us), Rows AVG(155650.51/s)
2021/05/14 11:10:52 [INFO] statsmgr.go:61: Tick: Time(515.00s), Finished(80876960), Failed(100), Latency AVG(18268us), Batches Req AVG(18687us), Rows AVG(157042.63/s)
2021/05/14 11:10:57 [INFO] statsmgr.go:61: Tick: Time(520.00s), Finished(80929060), Failed(100), Latency AVG(18439us), Batches Req AVG(18859us), Rows AVG(155632.57/s)
2021/05/14 11:11:02 [INFO] statsmgr.go:61: Tick: Time(525.00s), Finished(81504460), Failed(100), Latency AVG(18498us), Batches Req AVG(18918us), Rows AVG(155246.59/s)
2021/05/14 11:11:07 [INFO] statsmgr.go:61: Tick: Time(530.00s), Finished(82224360), Failed(100), Latency AVG(18513us), Batches Req AVG(18931us), Rows AVG(155140.20/s)
2021/05/14 11:11:12 [INFO] statsmgr.go:61: Tick: Time(535.00s), Finished(82260460), Failed(100), Latency AVG(18682us), Batches Req AVG(19102us), Rows AVG(153757.86/s)
2021/05/14 11:11:17 [INFO] statsmgr.go:61: Tick: Time(540.00s), Finished(82293560), Failed(100), Latency AVG(18853us), Batches Req AVG(19273us), Rows AVG(152395.19/s)
2021/05/14 11:11:22 [INFO] statsmgr.go:61: Tick: Time(545.00s), Finished(82329560), Failed(100), Latency AVG(19032us), Batches Req AVG(19452us), Rows AVG(151063.33/s)
2021/05/14 11:11:27 [INFO] statsmgr.go:61: Tick: Time(550.00s), Finished(84196760), Failed(100), Latency AVG(18773us), Batches Req AVG(19192us), Rows AVG(153084.96/s)
2021/05/14 11:11:32 [INFO] statsmgr.go:61: Tick: Time(555.00s), Finished(86195860), Failed(100), Latency AVG(18514us), Batches Req AVG(18931us), Rows AVG(155307.58/s)
2021/05/14 11:11:37 [INFO] statsmgr.go:61: Tick: Time(560.00s), Finished(86717260), Failed(100), Latency AVG(18569us), Batches Req AVG(18988us), Rows AVG(154852.15/s)
2021/05/14 11:11:42 [INFO] statsmgr.go:61: Tick: Time(565.00s), Finished(86860960), Failed(100), Latency AVG(18709us), Batches Req AVG(19129us), Rows AVG(153736.12/s)
2021/05/14 11:11:47 [INFO] statsmgr.go:61: Tick: Time(570.00s), Finished(86969160), Failed(100), Latency AVG(18854us), Batches Req AVG(19276us), Rows AVG(152577.39/s)
2021/05/14 11:11:52 [INFO] statsmgr.go:61: Tick: Time(575.00s), Finished(87887660), Failed(100), Latency AVG(18825us), Batches Req AVG(19246us), Rows AVG(152847.99/s)
2021/05/14 11:11:57 [INFO] statsmgr.go:61: Tick: Time(580.00s), Finished(87925060), Failed(100), Latency AVG(18980us), Batches Req AVG(19401us), Rows AVG(151594.79/s)
2021/05/14 11:12:02 [INFO] statsmgr.go:61: Tick: Time(585.00s), Finished(87956660), Failed(100), Latency AVG(19143us), Batches Req AVG(19564us), Rows AVG(150353.04/s)
2021/05/14 11:12:07 [INFO] statsmgr.go:61: Tick: Time(590.00s), Finished(87986660), Failed(100), Latency AVG(19308us), Batches Req AVG(19729us), Rows AVG(149129.74/s)
2021/05/14 11:12:12 [INFO] statsmgr.go:61: Tick: Time(595.00s), Finished(88563860), Failed(100), Latency AVG(19358us), Batches Req AVG(19780us), Rows AVG(148846.83/s)
2021/05/14 11:12:17 [INFO] statsmgr.go:61: Tick: Time(600.00s), Finished(91560760), Failed(100), Latency AVG(18876us), Batches Req AVG(19294us), Rows AVG(152601.03/s)
2021/05/14 11:12:22 [INFO] statsmgr.go:61: Tick: Time(605.00s), Finished(91650760), Failed(100), Latency AVG(19022us), Batches Req AVG(19441us), Rows AVG(151488.62/s)
2021/05/14 11:12:27 [INFO] statsmgr.go:61: Tick: Time(610.00s), Finished(91731860), Failed(100), Latency AVG(19163us), Batches Req AVG(19583us), Rows AVG(150380.09/s)
2021/05/14 11:12:32 [INFO] statsmgr.go:61: Tick: Time(615.00s), Finished(91815760), Failed(100), Latency AVG(19309us), Batches Req AVG(19730us), Rows AVG(149293.70/s)
2021/05/14 11:12:37 [INFO] statsmgr.go:61: Tick: Time(620.00s), Finished(93532460), Failed(100), Latency AVG(19104us), Batches Req AVG(19524us), Rows AVG(150858.56/s)
2021/05/14 11:12:42 [INFO] statsmgr.go:61: Tick: Time(625.00s), Finished(93577560), Failed(100), Latency AVG(19255us), Batches Req AVG(19675us), Rows AVG(149723.97/s)
2021/05/14 11:12:47 [INFO] statsmgr.go:61: Tick: Time(630.00s), Finished(93607560), Failed(100), Latency AVG(19398us), Batches Req AVG(19819us), Rows AVG(148583.25/s)
2021/05/14 11:12:52 [INFO] statsmgr.go:61: Tick: Time(635.00s), Finished(93636160), Failed(100), Latency AVG(19562us), Batches Req AVG(19983us), Rows AVG(147458.32/s)
2021/05/14 11:12:57 [INFO] statsmgr.go:61: Tick: Time(640.00s), Finished(93663260), Failed(100), Latency AVG(19711us), Batches Req AVG(20131us), Rows AVG(146348.68/s)
2021/05/14 11:13:02 [INFO] statsmgr.go:61: Tick: Time(645.00s), Finished(93690360), Failed(100), Latency AVG(19865us), Batches Req AVG(20286us), Rows AVG(145256.13/s)
2021/05/14 11:13:07 [INFO] statsmgr.go:61: Tick: Time(650.00s), Finished(95426360), Failed(100), Latency AVG(19667us), Batches Req AVG(20086us), Rows AVG(146809.75/s)
2021/05/14 11:13:12 [INFO] statsmgr.go:61: Tick: Time(655.00s), Finished(98559060), Failed(100), Latency AVG(19177us), Batches Req AVG(19593us), Rows AVG(150471.76/s)
2021/05/14 11:13:17 [INFO] statsmgr.go:61: Tick: Time(660.00s), Finished(98628060), Failed(100), Latency AVG(19318us), Batches Req AVG(19734us), Rows AVG(149436.31/s)
2021/05/14 11:13:22 [INFO] statsmgr.go:61: Tick: Time(665.00s), Finished(98677960), Failed(100), Latency AVG(19459us), Batches Req AVG(19875us), Rows AVG(148387.85/s)
2021/05/14 11:13:27 [INFO] statsmgr.go:61: Tick: Time(670.00s), Finished(98725960), Failed(100), Latency AVG(19599us), Batches Req AVG(20016us), Rows AVG(147352.12/s)
2021/05/14 11:13:32 [INFO] statsmgr.go:61: Tick: Time(675.00s), Finished(98775060), Failed(100), Latency AVG(19744us), Batches Req AVG(20161us), Rows AVG(146333.29/s)
2021/05/14 11:13:37 [INFO] statsmgr.go:61: Tick: Time(680.00s), Finished(98822060), Failed(100), Latency AVG(19884us), Batches Req AVG(20301us), Rows AVG(145326.46/s)
2021/05/14 11:13:42 [INFO] statsmgr.go:61: Tick: Time(685.00s), Finished(99201860), Failed(100), Latency AVG(19961us), Batches Req AVG(20379us), Rows AVG(144820.13/s)
2021/05/14 11:13:47 [INFO] statsmgr.go:61: Tick: Time(690.00s), Finished(99280160), Failed(100), Latency AVG(20087us), Batches Req AVG(20505us), Rows AVG(143884.22/s)
2021/05/14 11:13:52 [INFO] statsmgr.go:61: Tick: Time(695.00s), Finished(100894760), Failed(100), Latency AVG(19918us), Batches Req AVG(20335us), Rows AVG(145172.28/s)
2021/05/14 11:13:57 [INFO] statsmgr.go:61: Tick: Time(700.00s), Finished(104239060), Failed(100), Latency AVG(19412us), Batches Req AVG(19826us), Rows AVG(148912.95/s)
2021/05/14 11:14:02 [INFO] statsmgr.go:61: Tick: Time(705.00s), Finished(105290760), Failed(100), Latency AVG(19353us), Batches Req AVG(19766us), Rows AVG(149348.59/s)
2021/05/14 11:14:07 [INFO] statsmgr.go:61: Tick: Time(710.00s), Finished(105329660), Failed(100), Latency AVG(19491us), Batches Req AVG(19904us), Rows AVG(148351.56/s)
2021/05/14 11:14:12 [INFO] statsmgr.go:61: Tick: Time(715.00s), Finished(105371960), Failed(100), Latency AVG(19622us), Batches Req AVG(20036us), Rows AVG(147373.28/s)
2021/05/14 11:14:17 [INFO] statsmgr.go:61: Tick: Time(720.00s), Finished(105414060), Failed(100), Latency AVG(19753us), Batches Req AVG(20167us), Rows AVG(146408.25/s)
2021/05/14 11:14:22 [INFO] statsmgr.go:61: Tick: Time(725.00s), Finished(105458960), Failed(100), Latency AVG(19892us), Batches Req AVG(20307us), Rows AVG(145460.53/s)
2021/05/14 11:14:27 [INFO] statsmgr.go:61: Tick: Time(730.00s), Finished(105501160), Failed(100), Latency AVG(20020us), Batches Req AVG(20436us), Rows AVG(144522.03/s)
2021/05/14 11:14:32 [INFO] statsmgr.go:61: Tick: Time(735.00s), Finished(105545960), Failed(100), Latency AVG(20157us), Batches Req AVG(20573us), Rows AVG(143599.86/s)
2021/05/14 11:14:37 [INFO] statsmgr.go:61: Tick: Time(740.00s), Finished(105588160), Failed(100), Latency AVG(20288us), Batches Req AVG(20705us), Rows AVG(142686.65/s)
2021/05/14 11:14:42 [INFO] statsmgr.go:61: Tick: Time(745.00s), Finished(105627060), Failed(100), Latency AVG(20417us), Batches Req AVG(20834us), Rows AVG(141781.21/s)
2021/05/14 11:14:47 [INFO] statsmgr.go:61: Tick: Time(750.00s), Finished(107767560), Failed(100), Latency AVG(20152us), Batches Req AVG(20568us), Rows AVG(143690.03/s)
2021/05/14 11:14:49 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/post_isLocatedIn_place_0_0.csv) is: 7435696, error lines: 0
2021/05/14 11:14:49 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/post_hasCreator_person_0_0.csv) is: 7435696, error lines: 0
2021/05/14 11:14:49 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/forum_containerOf_post_0_0.csv) is: 7435696, error lines: 0
2021/05/14 11:14:49 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/post_isLocatedIn_place_0_0.csv): Time(752.58s), Finished(109373134), Failed(100), Latency AVG(19922us), Batches Req AVG(20336us), Rows AVG(145330.70/s)
2021/05/14 11:14:50 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/post_hasCreator_person_0_0.csv): Time(752.83s), Finished(109539348), Failed(100), Latency AVG(19898us), Batches Req AVG(20312us), Rows AVG(145503.54/s)
2021/05/14 11:14:50 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/forum_containerOf_post_0_0.csv): Time(752.85s), Finished(109551448), Failed(100), Latency AVG(19896us), Batches Req AVG(20310us), Rows AVG(145516.05/s)
2021/05/14 11:14:52 [INFO] statsmgr.go:61: Tick: Time(755.00s), Finished(110614948), Failed(100), Latency AVG(19757us), Batches Req AVG(20171us), Rows AVG(146509.85/s)
2021/05/14 11:14:57 [INFO] statsmgr.go:61: Tick: Time(760.00s), Finished(110761748), Failed(100), Latency AVG(19865us), Batches Req AVG(20280us), Rows AVG(145739.08/s)
2021/05/14 11:14:58 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/post_hasTag_tag_0_0.csv) is: 7599701, error lines: 0
2021/05/14 11:15:02 [INFO] statsmgr.go:61: Tick: Time(765.00s), Finished(110918986), Failed(100), Latency AVG(19970us), Batches Req AVG(20386us), Rows AVG(144992.14/s)
2021/05/14 11:15:07 [INFO] statsmgr.go:61: Tick: Time(770.00s), Finished(111020525), Failed(100), Latency AVG(20084us), Batches Req AVG(20501us), Rows AVG(144182.43/s)
2021/05/14 11:15:12 [INFO] statsmgr.go:61: Tick: Time(775.00s), Finished(111122425), Failed(100), Latency AVG(20201us), Batches Req AVG(20620us), Rows AVG(143383.65/s)
2021/05/14 11:15:15 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/post_hasTag_tag_0_0.csv): Time(778.54s), Finished(111192749), Failed(100), Latency AVG(20281us), Batches Req AVG(20701us), Rows AVG(142821.70/s)
2021/05/14 11:15:17 [INFO] statsmgr.go:61: Tick: Time(780.00s), Finished(111221449), Failed(100), Latency AVG(20313us), Batches Req AVG(20733us), Rows AVG(142591.54/s)
2021/05/14 11:15:22 [INFO] statsmgr.go:61: Tick: Time(785.00s), Finished(111984449), Failed(100), Latency AVG(20309us), Batches Req AVG(20729us), Rows AVG(142655.25/s)
2021/05/14 11:15:27 [INFO] statsmgr.go:61: Tick: Time(790.00s), Finished(112029549), Failed(100), Latency AVG(20430us), Batches Req AVG(20851us), Rows AVG(141809.55/s)
2021/05/14 11:15:32 [INFO] statsmgr.go:61: Tick: Time(795.00s), Finished(112077449), Failed(100), Latency AVG(20558us), Batches Req AVG(20979us), Rows AVG(140977.76/s)
2021/05/14 11:15:37 [INFO] statsmgr.go:61: Tick: Time(800.00s), Finished(112122649), Failed(100), Latency AVG(20679us), Batches Req AVG(21101us), Rows AVG(140153.15/s)
2021/05/14 11:15:42 [INFO] statsmgr.go:61: Tick: Time(805.00s), Finished(112170449), Failed(100), Latency AVG(20806us), Batches Req AVG(21229us), Rows AVG(139342.06/s)
2021/05/14 11:15:47 [INFO] statsmgr.go:61: Tick: Time(810.00s), Finished(112215649), Failed(100), Latency AVG(20927us), Batches Req AVG(21350us), Rows AVG(138537.80/s)
2021/05/14 11:15:52 [INFO] statsmgr.go:61: Tick: Time(815.00s), Finished(112254649), Failed(100), Latency AVG(21053us), Batches Req AVG(21476us), Rows AVG(137735.66/s)
2021/05/14 11:15:57 [INFO] statsmgr.go:61: Tick: Time(820.00s), Finished(114247049), Failed(100), Latency AVG(20815us), Batches Req AVG(21238us), Rows AVG(139325.67/s)
2021/05/14 11:16:02 [INFO] statsmgr.go:61: Tick: Time(825.00s), Finished(117398549), Failed(100), Latency AVG(20373us), Batches Req AVG(20794us), Rows AVG(142301.22/s)
2021/05/14 11:16:07 [INFO] statsmgr.go:61: Tick: Time(830.00s), Finished(117477449), Failed(100), Latency AVG(20485us), Batches Req AVG(20906us), Rows AVG(141539.06/s)
2021/05/14 11:16:12 [INFO] statsmgr.go:61: Tick: Time(835.00s), Finished(117531349), Failed(100), Latency AVG(20602us), Batches Req AVG(21024us), Rows AVG(140756.06/s)
2021/05/14 11:16:17 [INFO] statsmgr.go:61: Tick: Time(840.00s), Finished(117582449), Failed(100), Latency AVG(20718us), Batches Req AVG(21141us), Rows AVG(139978.98/s)
2021/05/14 11:16:22 [INFO] statsmgr.go:61: Tick: Time(845.00s), Finished(117636349), Failed(100), Latency AVG(20839us), Batches Req AVG(21262us), Rows AVG(139214.50/s)
2021/05/14 11:16:27 [INFO] statsmgr.go:61: Tick: Time(850.00s), Finished(118674049), Failed(100), Latency AVG(20776us), Batches Req AVG(21199us), Rows AVG(139616.43/s)
2021/05/14 11:16:32 [INFO] statsmgr.go:61: Tick: Time(855.00s), Finished(118715549), Failed(100), Latency AVG(20895us), Batches Req AVG(21319us), Rows AVG(138848.50/s)
2021/05/14 11:16:37 [INFO] statsmgr.go:61: Tick: Time(860.00s), Finished(118757549), Failed(100), Latency AVG(21013us), Batches Req AVG(21436us), Rows AVG(138090.07/s)
2021/05/14 11:16:42 [INFO] statsmgr.go:61: Tick: Time(865.00s), Finished(118785049), Failed(100), Latency AVG(21126us), Batches Req AVG(21550us), Rows AVG(137323.71/s)
2021/05/14 11:16:47 [INFO] statsmgr.go:61: Tick: Time(870.00s), Finished(118811649), Failed(100), Latency AVG(21249us), Batches Req AVG(21673us), Rows AVG(136564.97/s)
2021/05/14 11:16:52 [INFO] statsmgr.go:61: Tick: Time(875.00s), Finished(118838649), Failed(100), Latency AVG(21366us), Batches Req AVG(21790us), Rows AVG(135815.59/s)
2021/05/14 11:16:57 [INFO] statsmgr.go:61: Tick: Time(880.00s), Finished(118895849), Failed(100), Latency AVG(21495us), Batches Req AVG(21921us), Rows AVG(135108.91/s)
2021/05/14 11:16:59 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/post_0_0.csv) is: 7435696, error lines: 0
2021/05/14 11:16:59 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/post_0_0.csv): Time(882.47s), Finished(120542945), Failed(100), Latency AVG(21258us), Batches Req AVG(21682us), Rows AVG(136596.71/s)
2021/05/14 11:17:02 [INFO] statsmgr.go:61: Tick: Time(885.00s), Finished(122169745), Failed(100), Latency AVG(21032us), Batches Req AVG(21455us), Rows AVG(138044.75/s)
2021/05/14 11:17:07 [INFO] statsmgr.go:61: Tick: Time(890.00s), Finished(122406345), Failed(100), Latency AVG(21111us), Batches Req AVG(21534us), Rows AVG(137535.16/s)
2021/05/14 11:17:12 [INFO] statsmgr.go:61: Tick: Time(895.00s), Finished(122451445), Failed(100), Latency AVG(21216us), Batches Req AVG(21640us), Rows AVG(136817.20/s)
2021/05/14 11:17:17 [INFO] statsmgr.go:61: Tick: Time(900.00s), Finished(122502345), Failed(100), Latency AVG(21339us), Batches Req AVG(21763us), Rows AVG(136113.63/s)
2021/05/14 11:17:22 [INFO] statsmgr.go:61: Tick: Time(905.00s), Finished(122547445), Failed(100), Latency AVG(21445us), Batches Req AVG(21869us), Rows AVG(135411.49/s)
2021/05/14 11:17:26 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_likes_post_0_0.csv) is: 8839875, error lines: 0
2021/05/14 11:17:26 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_likes_post_0_0.csv): Time(909.54s), Finished(123877120), Failed(100), Latency AVG(21330us), Batches Req AVG(21754us), Rows AVG(136197.20/s)
2021/05/14 11:17:27 [INFO] statsmgr.go:61: Tick: Time(910.00s), Finished(124182720), Failed(100), Latency AVG(21287us), Batches Req AVG(21711us), Rows AVG(136464.48/s)
2021/05/14 11:17:32 [INFO] statsmgr.go:61: Tick: Time(915.00s), Finished(124295120), Failed(100), Latency AVG(21381us), Batches Req AVG(21804us), Rows AVG(135841.62/s)
2021/05/14 11:17:37 [INFO] statsmgr.go:61: Tick: Time(920.00s), Finished(124334220), Failed(100), Latency AVG(21497us), Batches Req AVG(21921us), Rows AVG(135145.78/s)
2021/05/14 11:17:42 [INFO] statsmgr.go:61: Tick: Time(925.00s), Finished(124361220), Failed(100), Latency AVG(21612us), Batches Req AVG(22036us), Rows AVG(134444.50/s)
2021/05/14 11:17:47 [INFO] statsmgr.go:61: Tick: Time(930.00s), Finished(124387120), Failed(100), Latency AVG(21729us), Batches Req AVG(22153us), Rows AVG(133749.51/s)
2021/05/14 11:17:52 [INFO] statsmgr.go:61: Tick: Time(935.00s), Finished(124412220), Failed(100), Latency AVG(21844us), Batches Req AVG(22269us), Rows AVG(133061.07/s)
2021/05/14 11:17:57 [INFO] statsmgr.go:61: Tick: Time(940.00s), Finished(124586520), Failed(100), Latency AVG(21938us), Batches Req AVG(22363us), Rows AVG(132538.78/s)
2021/05/14 11:18:02 [INFO] statsmgr.go:61: Tick: Time(945.00s), Finished(127675920), Failed(100), Latency AVG(21514us), Batches Req AVG(21936us), Rows AVG(135106.77/s)
2021/05/14 11:18:07 [INFO] statsmgr.go:61: Tick: Time(950.00s), Finished(127729920), Failed(100), Latency AVG(21620us), Batches Req AVG(22042us), Rows AVG(134452.53/s)
2021/05/14 11:18:12 [INFO] statsmgr.go:61: Tick: Time(955.00s), Finished(127775020), Failed(100), Latency AVG(21731us), Batches Req AVG(22154us), Rows AVG(133795.70/s)
2021/05/14 11:18:17 [INFO] statsmgr.go:61: Tick: Time(960.00s), Finished(127818920), Failed(100), Latency AVG(21840us), Batches Req AVG(22263us), Rows AVG(133144.64/s)
2021/05/14 11:18:22 [INFO] statsmgr.go:61: Tick: Time(965.00s), Finished(127862020), Failed(100), Latency AVG(21950us), Batches Req AVG(22373us), Rows AVG(132499.45/s)
2021/05/14 11:18:27 [INFO] statsmgr.go:61: Tick: Time(970.00s), Finished(130621920), Failed(100), Latency AVG(21589us), Batches Req AVG(22010us), Rows AVG(134661.71/s)
2021/05/14 11:18:32 [INFO] statsmgr.go:61: Tick: Time(975.00s), Finished(130665820), Failed(100), Latency AVG(21702us), Batches Req AVG(22123us), Rows AVG(134016.11/s)
2021/05/14 11:18:37 [INFO] statsmgr.go:61: Tick: Time(980.00s), Finished(130701920), Failed(100), Latency AVG(21803us), Batches Req AVG(22224us), Rows AVG(133369.21/s)
2021/05/14 11:18:42 [INFO] statsmgr.go:61: Tick: Time(985.00s), Finished(130731820), Failed(100), Latency AVG(21919us), Batches Req AVG(22340us), Rows AVG(132722.60/s)
2021/05/14 11:18:47 [INFO] statsmgr.go:61: Tick: Time(990.00s), Finished(130759020), Failed(100), Latency AVG(22024us), Batches Req AVG(22446us), Rows AVG(132079.81/s)
2021/05/14 11:18:52 [INFO] statsmgr.go:61: Tick: Time(995.00s), Finished(130786020), Failed(100), Latency AVG(22130us), Batches Req AVG(22552us), Rows AVG(131443.17/s)
2021/05/14 11:18:57 [INFO] statsmgr.go:61: Tick: Time(1000.00s), Finished(130815820), Failed(100), Latency AVG(22247us), Batches Req AVG(22670us), Rows AVG(130815.77/s)
2021/05/14 11:19:02 [INFO] statsmgr.go:61: Tick: Time(1005.00s), Finished(133020520), Failed(100), Latency AVG(21988us), Batches Req AVG(22409us), Rows AVG(132358.71/s)
2021/05/14 11:19:07 [INFO] statsmgr.go:61: Tick: Time(1010.00s), Finished(133962720), Failed(100), Latency AVG(21944us), Batches Req AVG(22365us), Rows AVG(132636.36/s)
2021/05/14 11:19:12 [INFO] statsmgr.go:61: Tick: Time(1015.00s), Finished(134723120), Failed(100), Latency AVG(21926us), Batches Req AVG(22347us), Rows AVG(132732.01/s)
2021/05/14 11:19:17 [INFO] statsmgr.go:61: Tick: Time(1020.00s), Finished(134818620), Failed(100), Latency AVG(22022us), Batches Req AVG(22444us), Rows AVG(132175.06/s)
2021/05/14 11:19:22 [INFO] statsmgr.go:61: Tick: Time(1025.00s), Finished(134911720), Failed(100), Latency AVG(22117us), Batches Req AVG(22539us), Rows AVG(131621.14/s)
2021/05/14 11:19:27 [INFO] statsmgr.go:61: Tick: Time(1030.00s), Finished(137062320), Failed(100), Latency AVG(21876us), Batches Req AVG(22296us), Rows AVG(133070.20/s)
2021/05/14 11:19:32 [INFO] statsmgr.go:61: Tick: Time(1035.00s), Finished(137318220), Failed(100), Latency AVG(21940us), Batches Req AVG(22361us), Rows AVG(132674.51/s)
2021/05/14 11:19:37 [INFO] statsmgr.go:61: Tick: Time(1040.00s), Finished(137366320), Failed(100), Latency AVG(22041us), Batches Req AVG(22463us), Rows AVG(132082.92/s)
2021/05/14 11:19:42 [INFO] statsmgr.go:61: Tick: Time(1045.00s), Finished(137402320), Failed(100), Latency AVG(22144us), Batches Req AVG(22566us), Rows AVG(131485.46/s)
2021/05/14 11:19:47 [INFO] statsmgr.go:61: Tick: Time(1050.00s), Finished(137432520), Failed(100), Latency AVG(22242us), Batches Req AVG(22665us), Rows AVG(130888.01/s)
2021/05/14 11:19:52 [INFO] statsmgr.go:61: Tick: Time(1055.00s), Finished(137465320), Failed(100), Latency AVG(22353us), Batches Req AVG(22775us), Rows AVG(130298.88/s)
2021/05/14 11:19:57 [INFO] statsmgr.go:61: Tick: Time(1060.00s), Finished(137495520), Failed(100), Latency AVG(22451us), Batches Req AVG(22874us), Rows AVG(129712.66/s)
2021/05/14 11:20:01 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/comment_replyOf_post_0_0.csv) is: 10776102, error lines: 0
2021/05/14 11:20:01 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/comment_replyOf_post_0_0.csv): Time(1064.46s), Finished(138126822), Failed(100), Latency AVG(22450us), Batches Req AVG(22872us), Rows AVG(129762.11/s)
2021/05/14 11:20:02 [INFO] statsmgr.go:61: Tick: Time(1065.00s), Finished(138486922), Failed(100), Latency AVG(22402us), Batches Req AVG(22825us), Rows AVG(130034.63/s)
2021/05/14 11:20:04 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/comment_replyOf_comment_0_0.csv) is: 11089373, error lines: 0
2021/05/14 11:20:04 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/comment_replyOf_comment_0_0.csv): Time(1067.47s), Finished(140253295), Failed(100), Latency AVG(22168us), Batches Req AVG(22590us), Rows AVG(131389.10/s)
2021/05/14 11:20:07 [INFO] statsmgr.go:61: Tick: Time(1070.00s), Finished(141971395), Failed(100), Latency AVG(21950us), Batches Req AVG(22370us), Rows AVG(132683.51/s)
2021/05/14 11:20:12 [INFO] statsmgr.go:61: Tick: Time(1075.00s), Finished(142995895), Failed(100), Latency AVG(21892us), Batches Req AVG(22311us), Rows AVG(133019.39/s)
2021/05/14 11:20:17 [INFO] statsmgr.go:61: Tick: Time(1080.00s), Finished(143061895), Failed(100), Latency AVG(21988us), Batches Req AVG(22408us), Rows AVG(132464.65/s)
2021/05/14 11:20:22 [INFO] statsmgr.go:61: Tick: Time(1085.00s), Finished(143118995), Failed(100), Latency AVG(22079us), Batches Req AVG(22500us), Rows AVG(131906.80/s)
2021/05/14 11:20:27 [INFO] statsmgr.go:61: Tick: Time(1090.00s), Finished(143178995), Failed(100), Latency AVG(22173us), Batches Req AVG(22594us), Rows AVG(131356.87/s)
2021/05/14 11:20:32 [INFO] statsmgr.go:61: Tick: Time(1095.00s), Finished(143239095), Failed(100), Latency AVG(22269us), Batches Req AVG(22691us), Rows AVG(130811.90/s)
2021/05/14 11:20:37 [INFO] statsmgr.go:61: Tick: Time(1100.00s), Finished(143298995), Failed(100), Latency AVG(22364us), Batches Req AVG(22786us), Rows AVG(130271.74/s)
2021/05/14 11:20:42 [INFO] statsmgr.go:61: Tick: Time(1105.00s), Finished(143432695), Failed(100), Latency AVG(22451us), Batches Req AVG(22874us), Rows AVG(129803.30/s)
2021/05/14 11:20:47 [INFO] statsmgr.go:61: Tick: Time(1110.00s), Finished(143952895), Failed(100), Latency AVG(22468us), Batches Req AVG(22890us), Rows AVG(129687.20/s)
2021/05/14 11:20:52 [INFO] statsmgr.go:61: Tick: Time(1115.00s), Finished(143984295), Failed(100), Latency AVG(22567us), Batches Req AVG(22990us), Rows AVG(129133.80/s)
2021/05/14 11:20:57 [INFO] statsmgr.go:61: Tick: Time(1120.00s), Finished(147287595), Failed(100), Latency AVG(22159us), Batches Req AVG(22580us), Rows AVG(131506.75/s)
2021/05/14 11:21:02 [INFO] statsmgr.go:61: Tick: Time(1125.00s), Finished(149527195), Failed(100), Latency AVG(21921us), Batches Req AVG(22340us), Rows AVG(132913.01/s)
2021/05/14 11:21:07 [INFO] statsmgr.go:61: Tick: Time(1130.00s), Finished(149569195), Failed(100), Latency AVG(22015us), Batches Req AVG(22435us), Rows AVG(132362.06/s)
2021/05/14 11:21:12 [INFO] statsmgr.go:61: Tick: Time(1135.00s), Finished(149614195), Failed(100), Latency AVG(22109us), Batches Req AVG(22530us), Rows AVG(131818.65/s)
2021/05/14 11:21:17 [INFO] statsmgr.go:61: Tick: Time(1140.00s), Finished(149656195), Failed(100), Latency AVG(22201us), Batches Req AVG(22622us), Rows AVG(131277.26/s)
2021/05/14 11:21:22 [INFO] statsmgr.go:61: Tick: Time(1145.00s), Finished(149698395), Failed(100), Latency AVG(22293us), Batches Req AVG(22714us), Rows AVG(130740.89/s)
2021/05/14 11:21:27 [INFO] statsmgr.go:61: Tick: Time(1150.00s), Finished(149740395), Failed(100), Latency AVG(22385us), Batches Req AVG(22807us), Rows AVG(130208.98/s)
2021/05/14 11:21:32 [INFO] statsmgr.go:61: Tick: Time(1155.00s), Finished(149785195), Failed(100), Latency AVG(22481us), Batches Req AVG(22903us), Rows AVG(129684.12/s)
2021/05/14 11:21:37 [INFO] statsmgr.go:61: Tick: Time(1160.00s), Finished(149867095), Failed(100), Latency AVG(22561us), Batches Req AVG(22983us), Rows AVG(129195.71/s)
2021/05/14 11:21:42 [INFO] statsmgr.go:61: Tick: Time(1165.00s), Finished(149906095), Failed(100), Latency AVG(22656us), Batches Req AVG(23079us), Rows AVG(128674.71/s)
2021/05/14 11:21:47 [INFO] statsmgr.go:61: Tick: Time(1170.00s), Finished(149945295), Failed(100), Latency AVG(22754us), Batches Req AVG(23177us), Rows AVG(128158.29/s)
2021/05/14 11:21:52 [INFO] statsmgr.go:61: Tick: Time(1175.00s), Finished(151886795), Failed(100), Latency AVG(22560us), Batches Req AVG(22982us), Rows AVG(129265.35/s)
2021/05/14 11:21:57 [INFO] statsmgr.go:61: Tick: Time(1180.00s), Finished(155155895), Failed(100), Latency AVG(22174us), Batches Req AVG(22595us), Rows AVG(131488.04/s)
2021/05/14 11:22:02 [INFO] statsmgr.go:61: Tick: Time(1185.00s), Finished(156098895), Failed(100), Latency AVG(22130us), Batches Req AVG(22551us), Rows AVG(131728.91/s)
2021/05/14 11:22:07 [INFO] statsmgr.go:61: Tick: Time(1190.00s), Finished(156143895), Failed(100), Latency AVG(22218us), Batches Req AVG(22640us), Rows AVG(131213.34/s)
2021/05/14 11:22:12 [INFO] statsmgr.go:61: Tick: Time(1195.00s), Finished(156182795), Failed(100), Latency AVG(22310us), Batches Req AVG(22732us), Rows AVG(130696.86/s)
2021/05/14 11:22:17 [INFO] statsmgr.go:61: Tick: Time(1200.00s), Finished(156221795), Failed(100), Latency AVG(22402us), Batches Req AVG(22824us), Rows AVG(130184.79/s)
2021/05/14 11:22:22 [INFO] statsmgr.go:61: Tick: Time(1205.00s), Finished(156257895), Failed(100), Latency AVG(22488us), Batches Req AVG(22910us), Rows AVG(129674.54/s)
2021/05/14 11:22:27 [INFO] statsmgr.go:61: Tick: Time(1210.00s), Finished(156296895), Failed(100), Latency AVG(22577us), Batches Req AVG(22999us), Rows AVG(129170.93/s)
2021/05/14 11:22:32 [INFO] statsmgr.go:61: Tick: Time(1215.00s), Finished(156335795), Failed(100), Latency AVG(22669us), Batches Req AVG(23092us), Rows AVG(128671.33/s)
2021/05/14 11:22:37 [INFO] statsmgr.go:61: Tick: Time(1220.00s), Finished(156457395), Failed(100), Latency AVG(22749us), Batches Req AVG(23172us), Rows AVG(128243.66/s)
2021/05/14 11:22:42 [INFO] statsmgr.go:61: Tick: Time(1225.00s), Finished(156541395), Failed(100), Latency AVG(22832us), Batches Req AVG(23256us), Rows AVG(127788.87/s)
2021/05/14 11:22:47 [INFO] statsmgr.go:61: Tick: Time(1230.00s), Finished(156625395), Failed(100), Latency AVG(22914us), Batches Req AVG(23339us), Rows AVG(127337.71/s)
2021/05/14 11:22:52 [INFO] statsmgr.go:61: Tick: Time(1235.00s), Finished(156706595), Failed(100), Latency AVG(22995us), Batches Req AVG(23421us), Rows AVG(126887.93/s)
2021/05/14 11:22:57 [INFO] statsmgr.go:61: Tick: Time(1240.00s), Finished(156772495), Failed(100), Latency AVG(23080us), Batches Req AVG(23507us), Rows AVG(126429.36/s)
2021/05/14 11:23:02 [INFO] statsmgr.go:61: Tick: Time(1245.00s), Finished(159196495), Failed(100), Latency AVG(22820us), Batches Req AVG(23246us), Rows AVG(127868.65/s)
2021/05/14 11:23:07 [INFO] statsmgr.go:61: Tick: Time(1250.00s), Finished(162238895), Failed(100), Latency AVG(22473us), Batches Req AVG(22897us), Rows AVG(129791.06/s)
2021/05/14 11:23:12 [INFO] statsmgr.go:61: Tick: Time(1255.00s), Finished(162301495), Failed(100), Latency AVG(22561us), Batches Req AVG(22985us), Rows AVG(129323.83/s)
2021/05/14 11:23:17 [INFO] statsmgr.go:61: Tick: Time(1260.00s), Finished(162358895), Failed(100), Latency AVG(22643us), Batches Req AVG(23067us), Rows AVG(128856.23/s)
2021/05/14 11:23:22 [INFO] statsmgr.go:61: Tick: Time(1265.00s), Finished(162400595), Failed(100), Latency AVG(22726us), Batches Req AVG(23151us), Rows AVG(128379.91/s)
2021/05/14 11:23:27 [INFO] statsmgr.go:61: Tick: Time(1270.00s), Finished(162445495), Failed(100), Latency AVG(22816us), Batches Req AVG(23241us), Rows AVG(127909.79/s)
2021/05/14 11:23:32 [INFO] statsmgr.go:61: Tick: Time(1275.00s), Finished(162487595), Failed(100), Latency AVG(22901us), Batches Req AVG(23326us), Rows AVG(127441.19/s)
2021/05/14 11:23:37 [INFO] statsmgr.go:61: Tick: Time(1280.00s), Finished(162529595), Failed(100), Latency AVG(22984us), Batches Req AVG(23410us), Rows AVG(126976.20/s)
2021/05/14 11:23:42 [INFO] statsmgr.go:61: Tick: Time(1285.00s), Finished(162574495), Failed(100), Latency AVG(23073us), Batches Req AVG(23499us), Rows AVG(126517.05/s)
2021/05/14 11:23:47 [INFO] statsmgr.go:61: Tick: Time(1290.00s), Finished(162955195), Failed(100), Latency AVG(23111us), Batches Req AVG(23537us), Rows AVG(126321.80/s)
2021/05/14 11:23:52 [INFO] statsmgr.go:61: Tick: Time(1295.00s), Finished(163006195), Failed(100), Latency AVG(23194us), Batches Req AVG(23621us), Rows AVG(125873.45/s)
2021/05/14 11:23:57 [INFO] statsmgr.go:61: Tick: Time(1300.00s), Finished(163054195), Failed(100), Latency AVG(23277us), Batches Req AVG(23705us), Rows AVG(125426.23/s)
2021/05/14 11:24:02 [INFO] statsmgr.go:61: Tick: Time(1305.00s), Finished(163102195), Failed(100), Latency AVG(23362us), Batches Req AVG(23790us), Rows AVG(124982.52/s)
2021/05/14 11:24:07 [INFO] statsmgr.go:61: Tick: Time(1310.00s), Finished(163147595), Failed(100), Latency AVG(23442us), Batches Req AVG(23870us), Rows AVG(124540.08/s)
2021/05/14 11:24:12 [INFO] statsmgr.go:61: Tick: Time(1315.00s), Finished(163198195), Failed(100), Latency AVG(23532us), Batches Req AVG(23961us), Rows AVG(124105.00/s)
2021/05/14 11:24:17 [INFO] statsmgr.go:61: Tick: Time(1320.00s), Finished(164672695), Failed(100), Latency AVG(23410us), Batches Req AVG(23839us), Rows AVG(124752.03/s)
2021/05/14 11:24:22 [INFO] statsmgr.go:61: Tick: Time(1325.00s), Finished(167976995), Failed(100), Latency AVG(23033us), Batches Req AVG(23459us), Rows AVG(126775.08/s)
2021/05/14 11:24:27 [INFO] statsmgr.go:61: Tick: Time(1330.00s), Finished(168872595), Failed(100), Latency AVG(22994us), Batches Req AVG(23420us), Rows AVG(126971.78/s)
2021/05/14 11:24:32 [INFO] statsmgr.go:61: Tick: Time(1335.00s), Finished(168926595), Failed(100), Latency AVG(23077us), Batches Req AVG(23503us), Rows AVG(126536.75/s)
2021/05/14 11:24:37 [INFO] statsmgr.go:61: Tick: Time(1340.00s), Finished(168973595), Failed(100), Latency AVG(23158us), Batches Req AVG(23584us), Rows AVG(126099.64/s)
2021/05/14 11:24:42 [INFO] statsmgr.go:61: Tick: Time(1345.00s), Finished(169021695), Failed(100), Latency AVG(23239us), Batches Req AVG(23665us), Rows AVG(125666.63/s)
2021/05/14 11:24:47 [INFO] statsmgr.go:61: Tick: Time(1350.00s), Finished(169069695), Failed(100), Latency AVG(23321us), Batches Req AVG(23748us), Rows AVG(125236.72/s)
2021/05/14 11:24:52 [INFO] statsmgr.go:61: Tick: Time(1355.00s), Finished(169117695), Failed(100), Latency AVG(23402us), Batches Req AVG(23829us), Rows AVG(124810.07/s)
2021/05/14 11:24:57 [INFO] statsmgr.go:61: Tick: Time(1360.00s), Finished(169165695), Failed(100), Latency AVG(23484us), Batches Req AVG(23911us), Rows AVG(124386.46/s)
2021/05/14 11:25:02 [INFO] statsmgr.go:61: Tick: Time(1365.00s), Finished(169213895), Failed(100), Latency AVG(23566us), Batches Req AVG(23993us), Rows AVG(123966.14/s)
2021/05/14 11:25:07 [INFO] statsmgr.go:61: Tick: Time(1370.00s), Finished(169314395), Failed(100), Latency AVG(23642us), Batches Req AVG(24070us), Rows AVG(123587.09/s)
2021/05/14 11:25:12 [INFO] statsmgr.go:61: Tick: Time(1375.00s), Finished(169398295), Failed(100), Latency AVG(23718us), Batches Req AVG(24147us), Rows AVG(123198.76/s)
2021/05/14 11:25:17 [INFO] statsmgr.go:61: Tick: Time(1380.00s), Finished(169482295), Failed(100), Latency AVG(23794us), Batches Req AVG(24223us), Rows AVG(122813.26/s)
2021/05/14 11:25:22 [INFO] statsmgr.go:61: Tick: Time(1385.00s), Finished(172260195), Failed(100), Latency AVG(23492us), Batches Req AVG(23920us), Rows AVG(124375.59/s)
2021/05/14 11:25:27 [INFO] statsmgr.go:61: Tick: Time(1390.00s), Finished(175356295), Failed(100), Latency AVG(23155us), Batches Req AVG(23582us), Rows AVG(126155.53/s)
2021/05/14 11:25:32 [INFO] statsmgr.go:61: Tick: Time(1395.00s), Finished(175406595), Failed(100), Latency AVG(23233us), Batches Req AVG(23659us), Rows AVG(125739.43/s)
2021/05/14 11:25:37 [INFO] statsmgr.go:61: Tick: Time(1400.00s), Finished(175452995), Failed(100), Latency AVG(23307us), Batches Req AVG(23734us), Rows AVG(125323.56/s)
2021/05/14 11:25:42 [INFO] statsmgr.go:61: Tick: Time(1405.00s), Finished(175487595), Failed(100), Latency AVG(23390us), Batches Req AVG(23817us), Rows AVG(124902.16/s)
2021/05/14 11:25:47 [INFO] statsmgr.go:61: Tick: Time(1410.00s), Finished(175522095), Failed(100), Latency AVG(23471us), Batches Req AVG(23898us), Rows AVG(124483.71/s)
2021/05/14 11:25:52 [INFO] statsmgr.go:61: Tick: Time(1415.00s), Finished(175557995), Failed(100), Latency AVG(23554us), Batches Req AVG(23982us), Rows AVG(124069.17/s)
2021/05/14 11:25:57 [INFO] statsmgr.go:61: Tick: Time(1420.00s), Finished(175591095), Failed(100), Latency AVG(23631us), Batches Req AVG(24058us), Rows AVG(123655.63/s)
2021/05/14 11:26:02 [INFO] statsmgr.go:61: Tick: Time(1425.00s), Finished(175626995), Failed(100), Latency AVG(23716us), Batches Req AVG(24144us), Rows AVG(123246.94/s)
2021/05/14 11:26:07 [INFO] statsmgr.go:61: Tick: Time(1430.00s), Finished(175806395), Failed(100), Latency AVG(23776us), Batches Req AVG(24204us), Rows AVG(122941.46/s)
2021/05/14 11:26:12 [INFO] statsmgr.go:61: Tick: Time(1435.00s), Finished(175992295), Failed(100), Latency AVG(23835us), Batches Req AVG(24265us), Rows AVG(122642.65/s)
2021/05/14 11:26:17 [INFO] statsmgr.go:61: Tick: Time(1440.00s), Finished(176139595), Failed(100), Latency AVG(23898us), Batches Req AVG(24328us), Rows AVG(122319.11/s)
2021/05/14 11:26:22 [INFO] statsmgr.go:61: Tick: Time(1445.00s), Finished(176256695), Failed(100), Latency AVG(23965us), Batches Req AVG(24397us), Rows AVG(121976.91/s)
2021/05/14 11:26:27 [INFO] statsmgr.go:61: Tick: Time(1450.00s), Finished(176376295), Failed(100), Latency AVG(24034us), Batches Req AVG(24466us), Rows AVG(121638.76/s)
2021/05/14 11:26:32 [INFO] statsmgr.go:61: Tick: Time(1455.00s), Finished(176463295), Failed(100), Latency AVG(24107us), Batches Req AVG(24540us), Rows AVG(121280.57/s)
2021/05/14 11:26:32 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/forum_hasMember_person_0_0.csv) is: 17168614, error lines: 0
2021/05/14 11:26:36 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/forum_hasMember_person_0_0.csv): Time(1459.25s), Finished(176859409), Failed(100), Latency AVG(24124us), Batches Req AVG(24557us), Rows AVG(121198.68/s)
2021/05/14 11:26:37 [INFO] statsmgr.go:61: Tick: Time(1460.00s), Finished(177344409), Failed(100), Latency AVG(24070us), Batches Req AVG(24503us), Rows AVG(121468.77/s)
2021/05/14 11:26:42 [INFO] statsmgr.go:61: Tick: Time(1465.00s), Finished(180690809), Failed(100), Latency AVG(23701us), Batches Req AVG(24132us), Rows AVG(123338.38/s)
2021/05/14 11:26:47 [INFO] statsmgr.go:61: Tick: Time(1470.00s), Finished(182138209), Failed(100), Latency AVG(23591us), Batches Req AVG(24021us), Rows AVG(123903.50/s)
2021/05/14 11:26:52 [INFO] statsmgr.go:61: Tick: Time(1475.00s), Finished(182189209), Failed(100), Latency AVG(23663us), Batches Req AVG(24093us), Rows AVG(123518.02/s)
2021/05/14 11:26:57 [INFO] statsmgr.go:61: Tick: Time(1480.00s), Finished(182231209), Failed(100), Latency AVG(23743us), Batches Req AVG(24173us), Rows AVG(123129.14/s)
2021/05/14 11:27:02 [INFO] statsmgr.go:61: Tick: Time(1485.00s), Finished(182270209), Failed(100), Latency AVG(23818us), Batches Req AVG(24248us), Rows AVG(122740.82/s)
2021/05/14 11:27:07 [INFO] statsmgr.go:61: Tick: Time(1490.00s), Finished(182312209), Failed(100), Latency AVG(23896us), Batches Req AVG(24327us), Rows AVG(122357.18/s)
2021/05/14 11:27:12 [INFO] statsmgr.go:61: Tick: Time(1495.00s), Finished(182351209), Failed(100), Latency AVG(23972us), Batches Req AVG(24403us), Rows AVG(121973.98/s)
2021/05/14 11:27:17 [INFO] statsmgr.go:61: Tick: Time(1500.00s), Finished(182391609), Failed(100), Latency AVG(24048us), Batches Req AVG(24479us), Rows AVG(121594.40/s)
2021/05/14 11:27:22 [INFO] statsmgr.go:61: Tick: Time(1505.00s), Finished(182432209), Failed(100), Latency AVG(24126us), Batches Req AVG(24556us), Rows AVG(121217.41/s)
2021/05/14 11:27:27 [INFO] statsmgr.go:61: Tick: Time(1510.00s), Finished(182617409), Failed(100), Latency AVG(24184us), Batches Req AVG(24615us), Rows AVG(120938.67/s)
2021/05/14 11:27:32 [INFO] statsmgr.go:61: Tick: Time(1515.00s), Finished(182754509), Failed(100), Latency AVG(24248us), Batches Req AVG(24679us), Rows AVG(120630.01/s)
2021/05/14 11:27:37 [INFO] statsmgr.go:61: Tick: Time(1520.00s), Finished(182874509), Failed(100), Latency AVG(24313us), Batches Req AVG(24745us), Rows AVG(120312.11/s)
2021/05/14 11:27:42 [INFO] statsmgr.go:61: Tick: Time(1525.00s), Finished(185223909), Failed(100), Latency AVG(24081us), Batches Req AVG(24512us), Rows AVG(121458.25/s)
2021/05/14 11:27:47 [INFO] statsmgr.go:61: Tick: Time(1530.00s), Finished(188230209), Failed(100), Latency AVG(23771us), Batches Req AVG(24201us), Rows AVG(123026.24/s)
2021/05/14 11:27:52 [INFO] statsmgr.go:61: Tick: Time(1535.00s), Finished(188553109), Failed(100), Latency AVG(23808us), Batches Req AVG(24239us), Rows AVG(122835.89/s)
2021/05/14 11:27:57 [INFO] statsmgr.go:61: Tick: Time(1540.00s), Finished(188674409), Failed(100), Latency AVG(23868us), Batches Req AVG(24299us), Rows AVG(122515.79/s)
2021/05/14 11:28:02 [INFO] statsmgr.go:61: Tick: Time(1545.00s), Finished(188740509), Failed(100), Latency AVG(23939us), Batches Req AVG(24370us), Rows AVG(122162.10/s)
2021/05/14 11:28:07 [INFO] statsmgr.go:61: Tick: Time(1550.00s), Finished(188812409), Failed(100), Latency AVG(24011us), Batches Req AVG(24442us), Rows AVG(121814.45/s)
2021/05/14 11:28:12 [INFO] statsmgr.go:61: Tick: Time(1555.00s), Finished(188881909), Failed(100), Latency AVG(24080us), Batches Req AVG(24512us), Rows AVG(121467.43/s)
2021/05/14 11:28:17 [INFO] statsmgr.go:61: Tick: Time(1560.00s), Finished(188953409), Failed(100), Latency AVG(24150us), Batches Req AVG(24583us), Rows AVG(121123.93/s)
2021/05/14 11:28:22 [INFO] statsmgr.go:61: Tick: Time(1565.00s), Finished(189001709), Failed(100), Latency AVG(24222us), Batches Req AVG(24655us), Rows AVG(120767.86/s)
2021/05/14 11:28:27 [INFO] statsmgr.go:61: Tick: Time(1570.00s), Finished(189046509), Failed(100), Latency AVG(24294us), Batches Req AVG(24727us), Rows AVG(120411.76/s)
2021/05/14 11:28:32 [INFO] statsmgr.go:61: Tick: Time(1575.00s), Finished(189091709), Failed(100), Latency AVG(24369us), Batches Req AVG(24802us), Rows AVG(120058.22/s)
2021/05/14 11:28:37 [INFO] statsmgr.go:61: Tick: Time(1580.00s), Finished(189330009), Failed(100), Latency AVG(24417us), Batches Req AVG(24850us), Rows AVG(119829.04/s)
2021/05/14 11:28:42 [INFO] statsmgr.go:61: Tick: Time(1585.00s), Finished(189428909), Failed(100), Latency AVG(24483us), Batches Req AVG(24917us), Rows AVG(119513.49/s)
2021/05/14 11:28:47 [INFO] statsmgr.go:61: Tick: Time(1590.00s), Finished(189527909), Failed(100), Latency AVG(24549us), Batches Req AVG(24984us), Rows AVG(119199.89/s)
2021/05/14 11:28:52 [INFO] statsmgr.go:61: Tick: Time(1595.00s), Finished(189624009), Failed(100), Latency AVG(24614us), Batches Req AVG(25049us), Rows AVG(118886.50/s)
2021/05/14 11:28:55 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/person_likes_comment_0_0.csv) is: 19949360, error lines: 0
2021/05/14 11:28:55 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/person_likes_comment_0_0.csv): Time(1598.34s), Finished(190430669), Failed(100), Latency AVG(24562us), Batches Req AVG(24997us), Rows AVG(119142.96/s)
2021/05/14 11:28:57 [INFO] statsmgr.go:61: Tick: Time(1600.00s), Finished(191616069), Failed(100), Latency AVG(24434us), Batches Req AVG(24868us), Rows AVG(119760.04/s)
2021/05/14 11:29:02 [INFO] statsmgr.go:61: Tick: Time(1605.00s), Finished(194854769), Failed(100), Latency AVG(24099us), Batches Req AVG(24532us), Rows AVG(121404.77/s)
2021/05/14 11:29:07 [INFO] statsmgr.go:61: Tick: Time(1610.00s), Finished(195116669), Failed(100), Latency AVG(24143us), Batches Req AVG(24576us), Rows AVG(121190.45/s)
2021/05/14 11:29:08 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/comment_isLocatedIn_place_0_0.csv) is: 21865475, error lines: 0
2021/05/14 11:29:12 [INFO] statsmgr.go:61: Tick: Time(1615.00s), Finished(195331853), Failed(100), Latency AVG(24190us), Batches Req AVG(24624us), Rows AVG(120948.51/s)
2021/05/14 11:29:12 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/comment_hasCreator_person_0_0.csv) is: 21865475, error lines: 0
2021/05/14 11:29:17 [INFO] statsmgr.go:61: Tick: Time(1620.00s), Finished(195484878), Failed(100), Latency AVG(24247us), Batches Req AVG(24681us), Rows AVG(120669.63/s)
2021/05/14 11:29:19 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/comment_isLocatedIn_place_0_0.csv): Time(1622.49s), Finished(195561426), Failed(100), Latency AVG(24276us), Batches Req AVG(24710us), Rows AVG(120531.82/s)
2021/05/14 11:29:22 [INFO] statsmgr.go:61: Tick: Time(1625.00s), Finished(195637369), Failed(100), Latency AVG(24304us), Batches Req AVG(24739us), Rows AVG(120392.19/s)
2021/05/14 11:29:26 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/comment_hasCreator_person_0_0.csv): Time(1629.58s), Finished(195722519), Failed(100), Latency AVG(24361us), Batches Req AVG(24796us), Rows AVG(120106.22/s)
2021/05/14 11:29:27 [INFO] statsmgr.go:61: Tick: Time(1630.00s), Finished(195727519), Failed(100), Latency AVG(24366us), Batches Req AVG(24802us), Rows AVG(120078.19/s)
2021/05/14 11:29:32 [INFO] statsmgr.go:61: Tick: Time(1635.00s), Finished(195793719), Failed(100), Latency AVG(24435us), Batches Req AVG(24871us), Rows AVG(119751.50/s)
2021/05/14 11:29:37 [INFO] statsmgr.go:61: Tick: Time(1640.00s), Finished(195859419), Failed(100), Latency AVG(24502us), Batches Req AVG(24939us), Rows AVG(119426.40/s)
2021/05/14 11:29:42 [INFO] statsmgr.go:61: Tick: Time(1645.00s), Finished(195925319), Failed(100), Latency AVG(24570us), Batches Req AVG(25008us), Rows AVG(119103.52/s)
2021/05/14 11:29:47 [INFO] statsmgr.go:61: Tick: Time(1650.00s), Finished(195991319), Failed(100), Latency AVG(24638us), Batches Req AVG(25076us), Rows AVG(118782.59/s)
2021/05/14 11:29:52 [INFO] statsmgr.go:61: Tick: Time(1655.00s), Finished(196067419), Failed(100), Latency AVG(24703us), Batches Req AVG(25141us), Rows AVG(118469.71/s)
2021/05/14 11:29:57 [INFO] statsmgr.go:61: Tick: Time(1660.00s), Finished(196160619), Failed(100), Latency AVG(24769us), Batches Req AVG(25208us), Rows AVG(118169.00/s)
2021/05/14 11:30:02 [INFO] statsmgr.go:61: Tick: Time(1665.00s), Finished(196253019), Failed(100), Latency AVG(24833us), Batches Req AVG(25273us), Rows AVG(117869.64/s)
2021/05/14 11:30:07 [INFO] statsmgr.go:61: Tick: Time(1670.00s), Finished(196343319), Failed(100), Latency AVG(24896us), Batches Req AVG(25337us), Rows AVG(117570.84/s)
2021/05/14 11:30:12 [INFO] statsmgr.go:61: Tick: Time(1675.00s), Finished(196418319), Failed(100), Latency AVG(24960us), Batches Req AVG(25401us), Rows AVG(117264.64/s)
2021/05/14 11:30:17 [INFO] statsmgr.go:61: Tick: Time(1680.00s), Finished(198362219), Failed(100), Latency AVG(24790us), Batches Req AVG(25231us), Rows AVG(118072.75/s)
2021/05/14 11:30:22 [INFO] statsmgr.go:61: Tick: Time(1685.00s), Finished(201765419), Failed(100), Latency AVG(24440us), Batches Req AVG(24879us), Rows AVG(119742.08/s)
2021/05/14 11:30:27 [INFO] statsmgr.go:61: Tick: Time(1690.00s), Finished(202164619), Failed(100), Latency AVG(24464us), Batches Req AVG(24904us), Rows AVG(119624.00/s)
2021/05/14 11:30:32 [INFO] statsmgr.go:61: Tick: Time(1695.00s), Finished(202272619), Failed(100), Latency AVG(24524us), Batches Req AVG(24964us), Rows AVG(119334.83/s)
2021/05/14 11:30:37 [INFO] statsmgr.go:61: Tick: Time(1700.00s), Finished(202380619), Failed(100), Latency AVG(24584us), Batches Req AVG(25025us), Rows AVG(119047.40/s)
2021/05/14 11:30:42 [INFO] statsmgr.go:61: Tick: Time(1705.00s), Finished(202482619), Failed(100), Latency AVG(24645us), Batches Req AVG(25087us), Rows AVG(118758.09/s)
2021/05/14 11:30:47 [INFO] statsmgr.go:61: Tick: Time(1710.00s), Finished(202551619), Failed(100), Latency AVG(24710us), Batches Req AVG(25152us), Rows AVG(118451.20/s)
2021/05/14 11:30:52 [INFO] statsmgr.go:61: Tick: Time(1715.00s), Finished(202653219), Failed(100), Latency AVG(24771us), Batches Req AVG(25213us), Rows AVG(118165.13/s)
2021/05/14 11:30:57 [INFO] statsmgr.go:61: Tick: Time(1720.00s), Finished(202743519), Failed(100), Latency AVG(24831us), Batches Req AVG(25274us), Rows AVG(117874.12/s)
2021/05/14 11:31:02 [INFO] statsmgr.go:61: Tick: Time(1725.00s), Finished(202836319), Failed(100), Latency AVG(24894us), Batches Req AVG(25339us), Rows AVG(117586.23/s)
2021/05/14 11:31:07 [INFO] statsmgr.go:61: Tick: Time(1730.00s), Finished(202911519), Failed(100), Latency AVG(24955us), Batches Req AVG(25400us), Rows AVG(117289.86/s)
2021/05/14 11:31:12 [INFO] statsmgr.go:61: Tick: Time(1735.00s), Finished(203003319), Failed(100), Latency AVG(25018us), Batches Req AVG(25463us), Rows AVG(117004.76/s)
2021/05/14 11:31:17 [INFO] statsmgr.go:61: Tick: Time(1740.00s), Finished(203087319), Failed(100), Latency AVG(25083us), Batches Req AVG(25529us), Rows AVG(116716.84/s)
2021/05/14 11:31:22 [INFO] statsmgr.go:61: Tick: Time(1745.00s), Finished(203168419), Failed(100), Latency AVG(25145us), Batches Req AVG(25592us), Rows AVG(116428.89/s)
2021/05/14 11:31:27 [INFO] statsmgr.go:61: Tick: Time(1750.00s), Finished(205118319), Failed(100), Latency AVG(24975us), Batches Req AVG(25423us), Rows AVG(117210.46/s)
2021/05/14 11:31:27 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/comment_hasTag_tag_0_0.csv) is: 28740194, error lines: 0
2021/05/14 11:31:27 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/comment_hasTag_tag_0_0.csv): Time(1750.61s), Finished(205464213), Failed(100), Latency AVG(24939us), Batches Req AVG(25386us), Rows AVG(117367.54/s)
2021/05/14 11:31:32 [INFO] statsmgr.go:61: Tick: Time(1755.00s), Finished(206313213), Failed(100), Latency AVG(24847us), Batches Req AVG(25293us), Rows AVG(117557.39/s)
2021/05/14 11:31:33 [INFO] reader.go:180: Total lines of file(/data/home/nebula/mytest/social_network/dynamic/comment_0_0.csv) is: 21865475, error lines: 0
2021/05/14 11:31:33 [INFO] statsmgr.go:61: Done(/data/home/nebula/mytest/social_network/dynamic/comment_0_0.csv): Time(1756.61s), Finished(206611288), Failed(100), Latency AVG(24814us), Batches Req AVG(25260us), Rows AVG(117619.60/s)
2021/05/14 11:31:34 Total 100 lines fail to insert into nebula graph database
2021/05/14 11:31:35 --- END OF NEBULA IMPORTER ---

@HarrisChu 有空吗,看一下日志为什么报错,有没有解决办法呢

space 的vid len是20, ":START_ID(Organisation)"->":END_ID(Place)":()这条边数据的vid len超过20了

1 个赞

实在没有搞懂您的意思,您看,随便找一个"1949"->“848”:() 这两个VID都在20以内啊,为什么说:START_ID(Organisation)“->”:END_ID(Place)":()这条边数据的vid len超过20了?
vid应该只是点上的Id嘛。

还有我现在有errorCode 在哪里去查询 这个解释呢?