Is there a way in an SDK-based tap to get the curr...
# troubleshooting
m
Is there a way in an SDK-based tap to get the current/most recent replication key value? I am working on updating my variant of tap-mongodb - if an InvalidBSON error is thrown, I would like to log the most recently processed replication key value to aid in debugging. Can I just call get_starting_replication_key_value ?
e
Yeah,
get_starting_replication_key_value
would be the way. For a mongodb tap that likely doesn't use
context
it's ok to call it from any method.
m
thank you! trying to debug some wacky timestamp behavior