You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduction
when i use index to count tag with filter condition , dashboard indicated one graphd service mem increased high to 80%;
"lookup on test where test.flag == true yield id(vertex)|yeild(count())"
the graphd service collect all id(vertex) to one instance,it means "lookup |count" is unsafe ;
can optimize "lookup where yield id(vertex)|yield count()" by pushdown count to storage?
maybe to use "lookup on test where test.flag==true yield count(*) " instead; Contents
Related work
The text was updated successfully, but these errors were encountered:
Introduction
when i use index to count tag with filter condition , dashboard indicated one graphd service mem increased high to 80%;
"lookup on test where test.flag == true yield id(vertex)|yeild(count())"
the graphd service collect all id(vertex) to one instance,it means "lookup |count" is unsafe ;
can optimize "lookup where yield id(vertex)|yield count()" by pushdown count to storage?
maybe to use "lookup on test where test.flag==true yield count(*) " instead;
Contents
Related work
The text was updated successfully, but these errors were encountered: