Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
on 01-16-2022 06:26 PM
Hello.
I have the kafka connect source running with the following properties
the query is:
MATCH (n:Note) WHERE n.createdAt > $lastCheck RETURN id(n) as id, n.id AS nid, n.createdAt AS createdAt
This never publishes data to my topic. If I change the CYPHER to remove the $lastCheck, something like:
MATCH (n:Note) RETURN n.id as nid, n.createdAt as createdAt
it works fine.
Does anyone have experience getting the kafka connect source query to work using $lastCheck
? I can't poll my data otherwise making this whole thing totally useless.
Hello @jonathan ,
Maybe you can try by changing the 'neo4j.streaming.properties: NOW' to
@jonathan Hi Jonathan, did you solve this issue? having the exact same problem, documentation is not very clear on how $lastCheck works, I also noticed that datetime is not converted to Timestamp type on the schema registry, it shows as a string. Thanks, Victor
Dates used with $lastCheck comparison have to be in epochMillis:
where datetime({datetime: s.ModifiedDate}).epochMillis > $lastCheck