Skip to content
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

[BUG] Missing some properties when fetching properties in a path #3930

Closed
BingqingLyu opened this issue Jun 17, 2024 · 1 comment
Closed
Assignees

Comments

@BingqingLyu
Copy link
Collaborator

BingqingLyu commented Jun 17, 2024

Describe the bug

We supported to fetch properties of a path, by which, we will project properties of each vertex in the path. An example on ldbc graph is as below:

gremlin> g.V(72064191107695053).out("2..3","KNOWS").with("RESULT_OPT","ALL_V").values("firstName")
==>[Eli, Alim, Faisal]
==>[Eli, Alim, Jie]
==>[Eli, Alim, Mahinda]
==>[Eli, Alim, Abby]
==>[Eli, Alim, Marcelo]
==>[Eli, Alim, Chan]
==>[Eli, Li, Arif]
...

However, we miss some properties when running on a distributed setting. E.g.,

gremlin> g.V(72064191107695053).out("2..3","KNOWS").with("RESULT_OPT","ALL_V").count()
==>220
gremlin> g.V(72064191107695053).out("2..3","KNOWS").with("RESULT_OPT","ALL_V").values("firstName").count()
==>41

In which, we have 220 paths, but can only fetch properties for 41 paths correctly. This is a bug and fix it.

@BingqingLyu
Copy link
Collaborator Author

Fixed in #3941

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant