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.

A query does not get the latest information

jggomez
Graph Voyager

Hi, I don't know if this problem is from the controller. We have a cluster with 3 cores and 1 replica. We have a transaction in python (multiple nodes were created) and then we have a query, but the query does not get the latest information. What happened here?? How can I solve this problem?

1 ACCEPTED SOLUTION

You have to make sure to

  • either have both operations (write transaction and read) within the same session as it handles bookmarks for you (see causal consistency)
  • or extract the bookmark from the session (see docs) and pass it to the next session that does the read (see docs).

View solution in original post

1 REPLY 1

You have to make sure to

  • either have both operations (write transaction and read) within the same session as it handles bookmarks for you (see causal consistency)
  • or extract the bookmark from the session (see docs) and pass it to the next session that does the read (see docs).