Glauber Costa
05/01/2023, 11:14 PMkapa.ai
05/01/2023, 11:14 PMkapa.ai
05/01/2023, 11:16 PMcd airbyte-integrations/connector-templates/generator ./generate.sh
2. Choose the relevant template using the arrow keys. This will generate a new connector in the airbyte-integrations/connectors/<your-connector>
directory. 3. Search the generated directory for "TODO"s and follow them to implement your connector. You can also follow the relevant tutorial from the list provided in the [connector development documentation](https://docs.airbyte.com/connector-development/). When you're ready to submit your connector to Airbyte, you can follow the [Submitting a Source to Airbyte checklist](https://docs.airbyte.com/connector-development/tutorials/building-a-python-source#submitting-a-source-to-airbyte). If you need help with any step of the process, feel free to submit a PR with your progress and any questions you have. You can also ask questions on the [Airbyte community Slack channel](https://slack.airbyte.io). Good luck with your connector development, and thank you for contributing to Airbyte!Glauber Costa
05/01/2023, 11:16 PMcat integration_tests/messages.jsonl | docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/destination-turso:dev write --config /secrets/config.json --catalog /integration_tests/configured_catalog.json
as suggested by the README. But inside the write
function, messages are always empty.
I have the following file with messages that I just copied from SQLite
{"type": "RECORD", "record": {"stream": "airbyte_acceptance_table", "data": {"column1": "my_value", "column2": 221, "column3": "2021-01-01T20:10:22", "column4": 1.214, "column5": [1,2,3]}, "emitted_at": 1626172757000}}
{"type": "RECORD", "record": {"stream": "airbyte_acceptance_table", "data": {"column1": "my_value2", "column2": 222, "column3": "2021-01-02T22:10:22", "column5": [1,2,null]}, "emitted_at": 1626172757000}}
Glauber Costa
05/01/2023, 11:43 PM