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.

Is it possible to add a python event listener for AuraDB

I wonder if there is such a feature in AuraDB that allows me to add an event listener using Python driver, to monitor any data update/delete/create event?

A preliminary research shows such features are possible in Java, but not in Python?

2 REPLIES 2

Actually AuraDB allows neither.

The only option you have there right now is to use polling, which is what the Kafka Connect Source (for remote databases) uses too.

https://neo4j.com/blog/kafka-for-neo4j-aura-is-available-now/

If I don't want to mess with this Kafka layer, just want a simple polling for my simple app in Python, is there a recipe? Thanks.