nebula-bench 2.0 基线测试工具预计什么时候能兼容v2版本

Nebula Graph 基准测试(性能测试)报告中使用的nebula-bench工具 预计什么时候能兼容v2版本

正在测试中,预计ga后发布

@jerry.liang 你好,请问 2.0 ga版本和 2.0兼容的基线测试工具预计什么时候发布?

2 个赞

你需要的是 nebula2.0性能测试工具吗?

是的, 之前的nebula-bench 基线测试工具不能兼容2.0
我们希望能在我们的环境测试下性能

目前代码已经pr,待GA再发布,如果你那边想用的话,可以下载我的分支代码
git clone https://github.com/tom-chensf/nebula-bench.git -b bench2.0 使用

1 个赞

你好,请教了一下,
我项目v2中nGQL 中定义的schema和ldbc_snb 项目(https://github.com/ldbc/ldbc_snb_datagen/tree/stable
)生成的数据结构对不上,是我那个地方弄错了吗?
示例:forum对象
ldbc_snb生成

1511829545710,Album 16 of Meera Singh,2011-12-22T16:39:38.364+0000
1786707452771,Group for Charlemagne in Poznań,2012-03-26T10:05:56.112+000

benchmark项目:

CREATE TAG IF NOT EXISTS forum(`time` string, title string,type string);
  - path: {path}/ldbc_snb_datagen/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: 1
          type: int
        tags:
          - name: forum
            props:
              - name: time
                type: string
                index: 0
              - name: title
                type: string
                index: 2
              - name: type
                type: string
                index: 3