vesoft-inc / nebula-docs

Documentations for the Nebula Graph project
https://docs.nebula-graph.io/
Apache License 2.0
52 stars 78 forks source link

[Exchange] exchange 支持数据源过滤,配置文件中增加了一项配置 #2436

Open Nicole00 opened 7 months ago

Nicole00 commented 7 months ago

pr:https://github.com/vesoft-inc/nebula-exchange/pull/195

文档增加一项配置:

tags:[
  {
    filter: "name='Tom'"
  }
]

edges: [
  {
     filter: "degree > 10"
   }
]

说明: filter 可选配置,类型为string, 配置内容需要符合SparkSql 的过滤规则,参考spark sql filter API

cooper-lzy commented 6 months ago

3.7.0的下个版本中才加入该功能