Hello, I have a case where a state like following ...
# troubleshooting
s
Hello, I have a case where a state like following is emitted in the logs and the tap still keeps on loading the data. How do I interpret this ?
Copy code
{"bookmarks": {"stock_move": {"replication_key": "write_date", "replication_key_value": "2024-09-10 00:00:00", "replication_key_signpost": "2024-12-25T17:45:27.965257+00:00", "starting_replication_value": "2024-09-10 00:00:00", "progress_markers": {"Note": "Progress is not resumable if interrupted.", "replication_key": "write_date", "replication_key_value": "2024-12-25 17:51:48"}}
v
The stream in the tap you're using can't resume the state of that stream if it's interrupted. Meaning it'd start back from scratch if something fails in the middle of your load
s
Thanks for the input, Derek. I found this while going through the docs and I think that already explains this. I guess I missed it in the first go 🙂