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
MATCH (:Country)<-[:IS_PART_OF]-(:City)<-[:IS_LOCATED_IN]-(:Person)<-[:HAS_MEMBER]-(:Forum)-[:CONTAINER_OF]->(:Post)<-[:REPLY_OF]-(:Comment)-[:HAS_TAG]->(:Tag)-[:HAS_TYPE]->(:TagClass)
RETURN count(*) AS count
This query has 7 hops, if each hop has 100 data, then total data will be (100)^7, it's a huge amount of data. Besides, currently, we will deserialize all the data's properties, so OOM will happen.....
The text was updated successfully, but these errors were encountered:
Like cypher:
This query has 7 hops, if each hop has 100 data, then total data will be (100)^7, it's a huge amount of data. Besides, currently, we will deserialize all the data's properties, so OOM will happen.....
The text was updated successfully, but these errors were encountered: