Questions tagged [neo4j-bolt]

Tag for the newly designed remoting protocol BOLT.

The Neo4j 3.0 Milestone 1 release introduced Bolt, a new network protocol designed for high-performance access to graph databases.

Bolt will consolidate and refine all the ways of doing work with Neo4j, providing more consistent access with a pleasant separation of responsibility.

Bolt is a connection-oriented protocol, using a compact binary encoding over TCP or web sockets for higher throughput and lower latency.

BOLT Java, JavaScript and Python drivers are available today.

42 questions
0
votes
1 answer

Neo4j Bolt: self._pool is None in direct.py

I've a pdf file and from which I extract two corpus. The function which returns the keywords is called twice in a loop, once for each corpus. For the first corpus it extracts the keywords just fine. However for the 2nd corpus I'm getting an error…
saptwa
  • 1
  • 1
0
votes
1 answer

How to search for a particular property value in neo4j using python-bolt-driver

I am using Flask to make a web API based on NEO4J graph database. I have a graph of topics and each topic has a "topic_name" and a "topic_id" properties set. I want to search for a topic with a particular topic_name (say "Tech"). If a node with…
0
votes
1 answer

Could the neo4j-bolt-python driver work on remote windows?

I ran the Quick Example on https://github.com/neo4j/neo4j-python-driver with two environment. 1. local linux => works well 2. remote windows => seems like run well, however does not create graph.db. What' wrong with me? My Debug Log on remote…
Sun Park
  • 13
  • 2
0
votes
0 answers

using neo4j bolt driver with nodejs

I have followed instruction on https://neo4j.com/developer/language-guides/ and successfully installed neo4j driver by npm command on windows operating system. but when I run the sample codes, I have got a following error : module.js:538 throw…
0
votes
1 answer

Neo4J Browser ServiceUnavailable failure after connecting with Neo4J Java driver

I regularly use Neo4J Browser on http://localhost:7474/browser/. However, yesterday I used the java driver to connect to Neo4J and execute queries. Since then, I'm unable to login to Neo4J Browser. I start Neo4J from the terminal (I'm on ubuntu)…
Manish Giri
  • 3,562
  • 8
  • 45
  • 81
0
votes
2 answers

Neo4j drop constraint if it does exist

Is there any way of dropping a constraint only if it exists through a query? I am using the bolt driver for javascript. I initially thought I'll just catch the error, but the error I get is not clear…
Dragos
  • 776
  • 8
  • 32
0
votes
0 answers

Exception 'Provider is not a subtype' when using hibernate-ogm-neo4j in glassfish4

I'm trying to get hibernate-ogm-neo4j (5.1.0.Alpha1) running in my glassfish (4.1.1). When starting the application server with the datastorprovider it shows a long…
Richard
  • 582
  • 5
  • 19
0
votes
2 answers

Save Neo4j Data to Spark RDD (or) DataFrame

I am retrieving the data from Neo4j using Bolt Driver in Python Language. The returned result should be stored as RDD(or atleast into CSV). I am able to see the returned results but unable to store it as an RDD or a Data frame or atleast into a…
Jack Daniel
  • 2,527
  • 3
  • 31
  • 52
0
votes
0 answers

Create Constraint neo4j Error

I am trying to improve the query performance by creating the constraint on a property of a node. But, I am ending up with the following error. It mostly looks like a python error. I am using Neo4j bolt driver. I am creating the constraints in a…
Jack Daniel
  • 2,527
  • 3
  • 31
  • 52
0
votes
1 answer

How to know Which OptionalMatch was Matched in query result, Neo4j

I have following code : var q = new CypherFluentQuery(client) as ICypherFluentQuery; q = q.OptionalMatch("(n:subject)-[r4:SCP_IN_SC]-(sc:Spec)"); q = q.OptionalMatch("(sc)-[r5:SCP_IN_SC]-(p)"); q =…
0
votes
2 answers

Neo4j Cypher find all paths exploring sorted relationships

I'm struggling for days to find a way for finding all paths (to a maximum length) between two nodes while controlling the path exploration by Neo4j by sorting the relationships that are going to be explored (by one of their properties). So to be…
0
votes
0 answers

Neo4j bolt driver ClientException

I have loaded about 20000 odd nodes from the consumer complaints csv file available in the neo4j load csv example. I am using Neo4j bolt driver in my java class to query . Driver driver = GraphDatabase.driver( "bolt://localhost/trialschema",…
Manu Bhat
  • 135
  • 2
  • 8
1 2
3