Sreejit
07/26/2024, 2:25 PMTAP_FILE_AIRBYTE_CONFIG_PROVIDER_SAS_TOKEN='xxxx'
TAP_FILE_AIRBYTE_CONFIG_PROVIDER_STORAGE='AzBlob'
TAP_FILE_AIRBYTE_CONFIG_PROVIDER_STORAGE_ACCOUNT='xxxx'
My meltano.yaml looks like this
version: 1
default_environment: dev
project_id: eecac43d-8204-4503-b2e9-0519f72933c4
environments:
- name: dev
- name: staging
- name: prod
plugins:
extractors:
- name: tap-file
variant: airbyte
pip_url: git+<https://github.com/MeltanoLabs/tap-airbyte-wrapper.git>
config:
airbyte_config:
url:
/di-data-extraction/xx/xx/20240726/
dataset_name: xxxx
format: csv
when i run meltano config tap-file test
Getting the following error-
raise AirbyteException(
tap_airbyte.tap.AirbyteException: Discover failed with return code 2: usage: main.py [-h] {spec,check,discover,read} ...
main.py: error: argument command: invalid choice: '--' (choose from 'spec', 'check', 'discover', 'read')Reuben (Matatika)
07/26/2024, 2:51 PMtap-airbyte-wrapper
is broken currently - see:
https://github.com/MeltanoLabs/tap-airbyte-wrapper/issues/19
https://github.com/MeltanoLabs/tap-airbyte-wrapper/pull/20
You can pin to previous commit, which should fix the issue:
pip_url: git+<https://github.com/MeltanoLabs/tap-airbyte-wrapper.git@87da181>
Sreejit
07/26/2024, 3:13 PMReuben (Matatika)
07/26/2024, 3:14 PMmeltano install --clean extractor tap-airbyte-wrapper
as well.Sreejit
07/29/2024, 12:51 PMConner Panarella
07/30/2024, 8:40 PMSreejit
07/31/2024, 10:01 AM