I deleted some useless nodes from my database (about 600K) I used query below
match (m:MOVIE)
with m
limit 100000
where (m)--()
delete m
In webadmin count of nodes was decreasing.
After about 5 times I executed it it deleted I don't know maybe 200-300K nodes I changed limit to 200000
and then database suddenly disconnected for some reason. I closed neo4j client cause it wasn't responding and started it again and then go back to browser. I looked to webadmin and there was old numbers. I again start to executing query above until it returned that no nodes were deleted.
Then I checked webadmin and there was about 900K nodes.
I executed query below
match (n)
return count(n)
and it returned only 500K nodes which seems to be right. But why in webadmin is different number? I know that after delete some values remain but when I was deleting nodes in webadmin counts decreased not remain same.
And what is also strange, my database used 1850MB of disk space and after delete it is using 1975MB.
Why is this happening? Is something wrong or I did something wrong?