Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-16-2020 10:25 PM
HI,
i am new to neo4j. I trying to simple query
match(i:industry{jenisIndustry:"Telekomunikasi"})<--(c:company)-->(j:jobs) return DISTINCT i,c,j
but, I get a black screen after runing.
I have
labels(n) | count(*) |
---|---|
["industry"] | 400 |
["jobs"] | 400 |
["company"] | 400 |
relationship types
*(320,000) belong_to|offers
database schema: (industry)<-[:belong_to]-(company)-[:offers]->(jobs)
Can anyone help with that? Thanks!
Regards,
Evanurafny
05-17-2020 07:50 AM
Hi Evanurafny
Welcome to the Community!!
Could you please let us know what do you mean by black screen.
try to share the screenshot
05-17-2020 08:18 PM
when I try the same query but for less data, it's not a black screen
05-18-2020 12:01 AM
Ideally it should not be a black screen. However I suspect it is problem of Memory.
Try to allocate more memory.
Also share us the query you are trying to run, may be there is Cartesian product or some thing else.
How much data are you trying to process?
05-19-2020 12:27 PM
I think this looks like a memory problem too, but in the Browser rather than the server.
You are displaying 3,700 relationships with your cut down data. Rendering thousands of relationships, or nodes, in the Neo4j browser can cause it to become very slow or crash.
The browser isn't really designed for displaying huge sub-graphs. You might find Bloom is more able to cope with what you are trying to display.
All the sessions of the conference are now available online