version: 0.39.32-alpha
I’ve built a connector that’s got an incremental sync stream that just doesn’t seem to be working when run through airbyte.
I’ve tested it locally with python main.py read ...
and I’ve tested the Docker image locally as well with docker run --rm ... local/source-myconnector:1 read ...
and they both work fine.
I’ve also tested locally passing in the --state
argument to both commands to simulate an existing state and it works just fine, but when I run it through the Airbyte UI it seems to fail. The error message seems to imply that the state isn’t being set as a dict but as a string, which causes the code to fail.
Any ideas on what’s actually happening here?
logs-26.txt (71.5 KB)
edit 1: I noticed that the connection state reported by Airbyte doesn’t look like the state that I usually use when developing
Where my sample_state.json
uses: {"events": {"timestamp": "2022-07-25T05:20:31.775025Z"}}