Tagged Questions

13
votes
6answers
6k views

Graph Database in Java (other than Neo4J)

Greetings, Is there any open source graph database available other than Neo4J?? NOTE: Why not Neo4J? Neo4J is opensource, but counts primitives (number of nodes,relationships & properties). If ...
6
votes
1answer
433 views

Neo4j database research

I recently started researching database features of databases. At the moment I'm looking into Neo4j Graph database. Unfortunately, I can't find every bit of information I need. I found most ...
4
votes
1answer
788 views

Neo4j OutOfMemory problem

This is my source code of Main.java. It was grabbed from neo4j-apoc-1.0 examples. The goal of modification to store 1M records of 2 nodes and 1 relation: package javaapplication2; import ...
4
votes
2answers
445 views

Counting primitives in Neo4j

I have been reading through the documentation for neo4j and it's components and have yet to come across functionality that lets me query the total number of primitives (nodes, relationships, and ...
3
votes
4answers
607 views

which NOSQL database tool is better to choose for my application?

I am planning to develop some application like connecting with friends of friends of friends. It may look like as Facebook or Twitter but initially i am planning to implement that to learn more about ...
3
votes
1answer
933 views

how to find a particular node in Neo4j

how to find the particular node using the Neo4j API.When i refereed the docs i got some code to get all nodes However if i have a node called "XYZ" I would like to know how to obtain ONLY that ...
3
votes
3answers
485 views

What is the difference between GraphDatabaseService or NeoService in neo4j

I'm learning to use neo4j, but am a bit confused on its usage. When I'm adding nodes and relationships, I can do it like this: GraphDatabaseService graphDb = new ...
2
votes
0answers
27 views

Range queries in Neo4j using Lucene query syntax

I'm using Lucene to index nodes in a Neo4j database and I'm using Lucene query strings to perform queries. Everything behaves as expected when I perform range queries that are either exclusive or ...
2
votes
2answers
150 views

Cannot install JPype on OS X Lion to use with Neo4j

This is my first question on this site, but I've wasted hours searching online to no avail, so please help! I am trying to use Neo4j for a project, and want to interface with it through Python since ...
2
votes
3answers
89 views

An apt database (and/or) framework suggestion needed

Well, I've taken help of Google, Stackoverflow and whatever else I could find, did as much as I could, but it seems that I am unable to find out an exact answer! I have multiple queries, and I would ...
2
votes
1answer
496 views

How to remove/delete a node & relationship in Neo4j in java?

I started learning Neo4j. I have a basic idea about it. May be my question looks silly but its important to know much more from others while learning. I have small doubt, like once if we create a ...
2
votes
2answers
784 views

Populating a spring bean using a constructor-arg field

How can i inject a properties file containing a Map to be used as additional constructor arg using the field. With a Map being loaded from a properties file the bean is currently setup using: ...
1
vote
1answer
66 views

How to connect Neo4j with Zest?

In Java, I have a Neo4j EmbeddedGraphDatabase. How can I transform this into a Graph that Zest can display?
1
vote
1answer
58 views

neo4j Dynamic Relationship Types, not with enums

How would I take the string "KNOWS" and use it as a Relationship type instead of using an enum RelTypes.KNOWS ... I need to dynamically add relationship instead of using only the 2 enums ...
1
vote
2answers
109 views

Java Threads for Memory Management

I have an application that performs a very sequential set of discrete tasks. My problem is that one of the first tasks consumes a large amount of memory, and despite eliminating object references and ...
1
vote
1answer
149 views

Numeric index during batch insertion in Neo4j

I'm using batch insertion of nodes and relationships into Neo4j graph database. Everything works, including the index on multiple properties ([String] name, [int] id). However, when I try to query the ...
1
vote
1answer
107 views

NoSQL DB (directed graphs) for Java/GWT?

I'm looking for no-sql directed graphs DB engine for GWT application. Requirements are: SQLite-like simplicity. Has a tool to explore/modify its structure. Doesn't require being installed (or very ...
1
vote
2answers
179 views

Issues other than speed of execution in calling Java code from Jython or Scala

I am using neo4j as backend in my project. For frontend,I dont want to do it in java as I am feeling too restricted in it. I am consider 2 options which are a) Use Jython/Django as I can call my java ...
1
vote
2answers
247 views

Akka - StackOverflowError during object serialization

I'm with a problem that extends for more than 2 days. When I'm exchanging messages between actors, is accusing the JVM stack overflow. My message is an object with many links (10000+ child objects ...
1
vote
1answer
220 views

How to calculate mutual friends with neo4j?

I want to use neo4j to manage relationship among users. How can I get mutual friends using it?
1
vote
3answers
318 views

How to set canonical hostname in linux?

Question: How do I "set" the canonical hostname as reported by java's InetAddress.getCanonicalHostname() method? Context: I'm trying to run Neo4j (which has an embedded jetty server) on CentOS 5.6. ...
1
vote
1answer
123 views

Is the Java API deprecated in Neo4j 1.3?

It seems that for the latest 1.3 release of Neo4j only the JRuby interface is supported. Where is the Java interface?
1
vote
1answer
429 views

Social network architecture, C++ Clients Neo4j database what between?

I'm currently working on the implementation of a social network. The architecture is: - Distributed C++/Qt clients - Neo4j server database I could directly query the database since it has a REST ...
1
vote
2answers
213 views

Efficient way to find node set having relationships to given nodes using neo4j

Is there an efficient way with given two nodes to find a set of their common nodes (with defined relationships). For example, having nodes A1, B1, C1-C4 connected with relationships x and y: A1 ...
1
vote
2answers
472 views

How can I store this kind of graph in neo4j for fast traversal?

This is a graph whose nodes exist in many connected components at once because a node's relationships are a collection of edge groups such that only one edge per edge group can be present at once. I ...
1
vote
1answer
168 views

Problem Working with Neo

I downloaded Neoclipse Source and downloaded the Neo4J source. However some of the classes that the Neoclipse source file refers to are not found in the Neo4J source. Are they deprecated? Can I get ...
0
votes
1answer
22 views

embedded neo4j webadmin not working

I'm having some problems with running neo4j (in embedded mode) with WebAdmin - version 1.6. I initialize the DB and webadmin as follows: graphDb = new EmbeddedGraphDatabase( DB_PATH); srv = ...
0
votes
0answers
122 views

Neo4j performance: traversing the graph

I have a performance problem with Neo4j. I am using Neo4j embedded on a graph with circa 773.000 nodes and each of them is connected with at least another node! Some nodes have between 20 to 50 edges ...
0
votes
1answer
45 views

Parsing a Neo4J Node / Relationship to JSon

is there any possibility to parse a node/relationship into json? Simply using GSon wouldnt do it. Any hint would be nice :) Best Regards, Kai
0
votes
1answer
45 views

Neo4j Node Linking

Hello I am trying to create a simple neo4j DB. I have a for loop that creates a new node for every file in a directory for(file f : files){ Node document = graphDb.createNode(); ...
0
votes
1answer
62 views

How could I retrieve all the relationships from a (spring-data-)neo4j database?

Is there a way to simply retrieve all relationships of a certain type - where type is a @RelationshipEntity annotated class - from a spring-data-neo4j [SDN] database? (working with 2.0.0.RC1 & ...
0
votes
1answer
66 views

Mocks returning mocks: Mocking neo4j (database) objects for unit testing of domain logic

I am unit testing domain logic and domain objects backed by a neo4j database. Most of these tests need to mock the neo4j GraphDatabaseService, various Nodes, and various Relationships. Some of the ...
0
votes
1answer
69 views

After 128th node is created in neo4j index no more nodes can be accessed

This seems like a very strange problem. I'm stress testing my neo4j graph database, and so one of my tests requires creating a lot of users (in this specific test, 1000). So the code for that is as ...
0
votes
2answers
69 views

neo4j - Property AutoIndexer not storing values

The problem that I'm running into is that after I make an AutoIndex index a certain property, I can add a key/value pair and the index won't show that it's there. I'm relatively new to neo4j so my ...
0
votes
1answer
70 views

using filters in traversal neo4j

How can I add filter to given traversal : TraversalDescription td = Traversal.description() .breadthFirst() .relationships( RelTypes.KNOWS ) ...
0
votes
3answers
188 views

neo4j huge graph and solution

I have guite a big network in csv file. It containt 450 k nodes and 45 000 000 relationships. As ive read in neo4j documentation this type of database can handle such a big network. I also read that ...
0
votes
0answers
165 views

Create new db to neo4j with java library

I try to follow this guide: http://docs.neo4j.org/chunked/snapshot/examples-hello-world.html but I have a fatal error when I try to create a db. This is the error: org.neo4j.jmx.impl.JmxExtension ...
0
votes
1answer
99 views

Error trying to access Neo4j database through REST for traversal using Gremlin

I am using Gremlin over Neo4j Database. I'm able to load the tinkergraph database and do gremlin traversal on it, but unable to load local-database and do the traversal on it. From tinker graph on ...
0
votes
1answer
183 views

Neo4j - Architecture, Java API & Persistence

I just loved the concept of Graph Based Databases, specifically Neo4j. I have some queries: Is there any Architecture document on Neo4j? I specifically want to know, suppose if I use Java API how ...
0
votes
1answer
103 views

Neo4j Querying Data Across Sessions

I am having trouble accessing previously created databases in the embedded Java version of Neo4j. What I'd like to do is open a GraphDatabaseService, add several million relationships (not using ...
0
votes
2answers
244 views

@RelatedTo(elementClass = Concept.class) RelatedTo.elementClass must be a class liter

Reading this documentation, I tryed to apply to my code in this way: Triple @Entity @Table(name = "triple") @NodeEntity public class TripleDBMoldelNeoImpl implements TripleDBModel{ protected ...
0
votes
2answers
163 views

In Neo4j how can I create a trigger?

I would like to call some Java code when a node of a certain type is added, updated or deleted in Neo4j. How can I do this?
0
votes
1answer
171 views

How to use Neo4j BatchInserted nodes after they have been created and indexed?

I'm using the BatchInsert and LuceneIndexBatchInserter api's to create my graph (~10000 nodes for now). The thing is BatchInserter.createNode(...) returns a long. BatchInserter inserter = new ...
0
votes
1answer
61 views

Java application on windows server possibility?

I'd like to know if it is possible to have this application (neo4j) running on windows server 2008 alongside an asp.net mvc application. Reason for this, I need to access the graph database (neo4j) ...
-1
votes
2answers
107 views

Harvesting Keywords from the internet

Can you suggest some possible sources to harvest related keywords. One suggestion is to use google and enter in a query and get back and response page and sift through the HTML to get some related ...