neueda / jetbrains-plugin-graph-database-support

Graph Databases support for JetBrains family IDEs.
Apache License 2.0
221 stars 56 forks source link

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

Open bdhl opened 4 years ago

bdhl commented 4 years ago

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?

GreYko commented 4 years ago

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.