We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
show stats
Please check the FAQ documentation before raising an issue
Describe the bug (required)
(root@nebula) [basketballplayer]> Insert vertex VALUES "1":(),"2":() Execution succeeded (time spent 1111/1503 us) Thu, 06 Jan 2022 03:46:54 UTC (root@nebula) [basketballplayer]> show stats +---------+------------+-------+ | Type | Name | Count | +---------+------------+-------+ | "Tag" | "person" | 0 | | "Tag" | "player" | 51 | | "Tag" | "t2" | 1 | | "Tag" | "team" | 30 | | "Edge" | "follow" | 81 | | "Edge" | "like" | 0 | | "Edge" | "serve" | 152 | | "Space" | "vertices" | 82 | | "Space" | "edges" | 233 | +---------+------------+-------+ Got 9 rows (time spent 797/1346 us) Thu, 06 Jan 2022 03:46:58 UTC
Your Environments (required)
uname -a
g++ --version
clang++ --version
lscpu
a3ffc7d8
How To Reproduce(required)
Steps to reproduce the behavior:
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered:
What's wrong with the result? 51 + 1 + 30 = 82 (count by tag) 81 + 152 = 233 (count by edge)
The actual vertex is not included in show stats
Sorry, something went wrong.
I insert a vertex without a tag, why can't I find it with show stats?
This has something to do with recent changes
When supporting the insertion of vertex without tag, the stats job needs to be compatible
show stats only scan tag/edge ("Space" | "vertices" is tag sum), we could handle the actual vertex in stats job later
"Space" | "vertices"
vertex
cangfengzhs
foesa-yang
No branches or pull requests
Please check the FAQ documentation before raising an issue
Describe the bug (required)
Your Environments (required)
uname -a
g++ --version
orclang++ --version
lscpu
a3ffc7d8
)How To Reproduce(required)
Steps to reproduce the behavior:
show stats
to count the numbers of vertices or edges.Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: