English 中文(简体)
Neo4j能用超过6万个节点 处理过道吗?
原标题:Can Neo4j handle traversal with more than 60,000 nodes?

我与一个相当大的Neo4J合作,有超过60,000个节点。每个节点约有4~5个属性和简单的父-母和母和母和母关系。当与60,000个节点合作时,特别是在昂贵和重复的问询中,我通过 Neo4J 的 REST 界面获得500个 HTTP 错误。

在浏览日志后, 我发现 Java 堆积空间是问题所在。 我将 512 MB 限值调高到 2048 MB, 但仍给我500 。 如果我把堆积设为 3GB 或 4GB, 新四j 甚至没有开始 。 我用一台相当好的笔记本电脑测试这个( 5, 4GB RAM), 我真的想知道这个程序是否是一个配置问题, 或者应用程序是否在我的服务器上运行正常( 亚马逊超大型高CPU 实例 ) 。 是否有某种缓存可以帮助我更快地得到东西? 基本上, 我反复在全部节点网络上进行过滤 。

我有两个问题,第一个是:

start referrer=node(3) match path=referrer-[*1..1]->referral return referral

然后,我必须发现他所有层次的所有节点, 返回第一个层次的节点和节点, 然后返回第一层的节点和节点。

start referrer=node(3) match path=referrer-[*1..1]->firsttier-[*0..]->referral return referral, firsttier, length(path)

它工作完美,而且速度很快。 然而, 我这样做是为了我的网络中的所有节点。 我在一个循环中同时处理两个查询( 并应用商业逻辑) 。 这个循环运行了60,000次 。

现在,我在笔记本电脑上测试这个, 但是,这个“Task”已经准备好进行发行处理, 因为我已经用零MQ做了所有的东西。 循环发送信息给工人和工人可以查询。

最佳回答

Neo4j 的60,000个节点很小 -- 它可以达到320亿+ -- 但你需要增加配置中的堆积大小。

http://blog.neo4j.org/2011/03/neo4j-13-abisko-lampa-m04-size-really.html

然而,你可能想限制通过REST返回的节点数量,然后将其上传到网页上。

或者你可以考虑返回所有的身份证, 把它们刻在你的应用程序里, 或者像Redis那样的东西, 然后在身份证上用Cypher 做一个多功能的图案。 这样你就不会每次运行查询了 。

问题回答

暂无回答




相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签