Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-25-2020 04:58 AM
I make query, the problem is that after some minuts the window of browser become black.
how i can solve this problem ?
01-25-2020 08:30 AM
What is the query? It is possible that you are returning too much data and running out of memory and that is why browser is dying. What version of Neo4j, what is your operating system, what internet browser are you using, is the browser just going all black or is there a message?
01-25-2020 09:01 AM
the version of neo4j is 3.5.12, the browser version is 4.0.2
my OS is windows 10. the browser just going all black without message.
the query is this: match p = ()-[:infoOfYear]->()-[:pubblicate]->() return p
01-25-2020 10:27 AM
What is the return of MATCH n RETURN count(*)
?
And then try your query with a limit added:
match p = ()-[:infoOfYear]->()-[:pubblicate]->() return p LIMIT 3
01-25-2020 10:29 AM
return 11250 of entity
01-25-2020 10:32 AM
Also, it will help your query run faster if you know a label that will be on one of the nodes and add that to your query:
match p = (:Person)-[:infoOfYear]->()-[:pubblicate]->() return count(p)
count(p) will let us know how much it was trying to pull back. The browser can have trouble visualizing too many nodes/rels at once (if it works with the limit 3
then it is almost certainly a problem of it trying to visualize too much)
01-25-2020 10:35 AM
the query return 10195
01-25-2020 10:42 AM
Neo4j browser is not designed to show a huge number of nodes/rels. As a rule of thumb typically anything with more than ~100-500 nodes might result in slowness. LIMIT
is your friend here.
The visualization tool Bloom is designed to handle much more nodes/rels in its visualization since it's using WebGL internally.
01-26-2020 01:56 PM
how can i use it (bloom)?
01-27-2020 01:49 AM
To get started, check out https://neo4j.com/bloom/
Bloom is a commercial tool requiring a separate license.
01-27-2020 10:16 AM
can i use a sandbox ?
01-28-2020 08:08 AM
Yes.
// adding some garbage to fulfill discourse' 20 char minimum
All the sessions of the conference are now available online