cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Forum Posts

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 855 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1118 Views
  • 1 replies
  • 1 kudos

Neo4j 4.3.2 driver ServiceUnavailableException

Hi Neo4j Community, any one know how to debug this? When trying to connect with my cluster database xx.xx.xx.xx, I got this error. "org.neo4j.driver.exceptions.ServiceUnavailableException: Unable to connect to xx.xx.xx.xx:7687, ensure the database is...

cyuan by Node
  • 785 Views
  • 2 replies
  • 0 kudos

Use linux swap for pagefile

Hello. Is any way to allow Neo4j to use Linux swap file for pagefile? I made it with 'swapon', increased 'dbms.memory.pagecache.size', but got "ERROR Invalid memory configuration - exceeds physical memory. Check the configured values for dbms.memory....

Modeling SDN network Topology as a Graph in Neo4j

Hello I developed a Python script to model a SDN (Software Defined Network) topology as a graph in Neo4j. In addition, the Python script can retrieve traffic statistics from the SDN controller to be stored as node &/or relationship properties. I want...

Resolved! The traversal framework in v4

Hi Everyone! In the previous version of the database there was the traversal framework in the Java API. It was really helpful in making some complex queries. But since the version 4 the method of getting TraversalDescription from the database object ...

phill240 by Node Link
  • 2341 Views
  • 8 replies
  • 12 kudos

Neo4j 4.1.1 fails in kubernetes environment

Hi, we were running neo4j 4.0.2-enterprise in a development Amazon EKS cluster for some time. I tore the cluster down and tried to rebuild it, this time bumping the container up to 4.1.1-enterprise. This is what happens in the neo4j logs: Changed pas...

Best practice for document storage

What is considered best practice with storing Documents (hundreds/thousands of words) in Neo4j. If for instance, I am creating a knowledge graph, that includes articles/blog posts, I can store the properties and categories as relationships. But for t...

tris by Node Link
  • 406 Views
  • 0 replies
  • 1 kudos

Help with top 10 values in cypher query

I am trying to get the top 10 values of a property P1 in node N1 for each property P2 in the same node N1. So far I have tried the following: match (n:N1) where n.P2 is not null with n.P2 as test, count(*) as times with collect ({P2:test,times:time...

Triplets similarities how to?

I have a lot of triplets (node, relation, node or circle, relation, circle) with different attributes for each user node (it can contain user_id, location, role for some nodes and others can be without location but with their marital status, use_car ...

steve5 by Node
  • 461 Views
  • 1 replies
  • 0 kudos

User defined function database not starting

I'm writing a user defined function querying the Neo4j 4.3.2 Enterprise database using Maven. I'm also have in the plugin folder apoc with the same driver version and gds. The error involves not routing properly, but the fixes found in my searching d...

Graph name keeps getting reset

Hello, I've been using the Dijkstra Source-Target algorithm of the GDSL plugin to get the shortest path between two nodes. That works exactly as it should be, however I always have to rerun the cypher query : CALL gds.graph.create( 'graphname, 'node'...