jetbrains-plugin-graph-database-support icon indicating copy to clipboard operation
jetbrains-plugin-graph-database-support copied to clipboard

Error occurred: CorruptedFrameException: Max frame length of 65536 has been exceeded.

Open bdhl opened this issue 5 years ago • 1 comments

I'm trying to see whole graph (28 vertices, 30 edges) with query: MATCH (n) OPTIONAL MATCH (n)-[r]-(m) RETURN n,r,m

and got error

Executing query: MATCH (n) OPTIONAL MATCH (n)-[r]-(m) RETURN n,r,m Error occurred: io.netty.handler.codec.CorruptedFrameException: Max frame length of 65536 has been exceeded.

Sure I can increase Max frame length but it won't solve because I have a plan to read graph with >10000 nodes so, How can I see whole graph?

bdhl avatar Feb 25 '20 06:02 bdhl

Which database(type and version) are you trying to call?

Generally speaking, showing about a hundred nodes shouldn't be any problem. Most likely, showing complete database of thousands of nodes would be really slow and look like complete mess, so I can recommend thinking about different approaches in advance.

GreYko avatar Feb 27 '20 12:02 GreYko