-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Querying NebulaGraph using the Nebula Python API is significantly slower than using the Nebula Console. #266
Comments
java api 也是同样的问题 |
neojoe
changed the title
通过nebula python API 查询nubulagraph 比nebula console
通过nebula python API 查询nubulagraph 比nebula console 性能慢很多
Mar 1, 2023
你可以看下console中执行结果会有两个时间,700ms 是执行结果ResultSet中的latency时间,后面那个是客户端执行的总体时间。 如果要对比其他客户端,可以通过同时对比resultSet.getLatency 或者 同时对比 客户端执行总时间 来确定各个客户端的性能差异。 |
QingZ11
changed the title
通过nebula python API 查询nubulagraph 比nebula console 性能慢很多
Querying NebulaGraph using the Nebula Python API is significantly slower than using the Nebula Console.
Sep 18, 2023
@neojoe hi, if your problem is solved, would you like to close the issue? Thanks a lot for your contribution. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
我在服务器上用docker的方式安装nebulagraph
服务器配置:cpu 16v ,内存128g,150G ESSD云盘
执行相同的查询逻辑
nebula onsole:MATCH p = allShortestPaths((a:point{name:"13644:5"})-[e*..7]-(b:point{name:"5119:1"})) RETURN p;
查询时间是700ms左右
而用nebula python api 执行相同的逻辑,花费65s
请问是什么原因?
The text was updated successfully, but these errors were encountered: