Hi, I'm a total noob to meltano and ELT in general...
# troubleshooting
a
Hi, I'm a total noob to meltano and ELT in general. I tried to do an extraction from a simple
foobar.json
on my local machine with #C05CNUF699B but I keep running into the same error when I run `meltano invoke tap-file`:
Copy code
Catalog discovery failed: command ['/Users/<USERNAME>/projects/my-meltano/.meltano/extractors/tap-file/venv/bin/tap-airbyte', '--config', '/Users/<USERNAME>/projects/my-meltano/.meltano/run/tap-file/tap.7994af0e-a799-400f-9a5f-64cfaab65deb.config.json', '--discover'] returned 1 with stderr:
 2023-06-21 03:26:36,899 {'level': 'FATAL', 'message': '\'HTTPS\' was expected\nTraceback (most recent call last):\n  F
...
this is my current `meltano.yml`:
Copy code
version: 1
default_environment: dev
project_id: f8be8e6d-4381-42fb-aca4-1b5d13513e59
environments:
- name: dev
- name: staging
- name: prod
plugins:
  extractors:
  - name: tap-file
    variant: airbyte
    capabilities:
    - stream-maps
    - catalog
    - discover
    pip_url: git+<https://github.com/MeltanoLabs/tap-airbyte-wrapper.git>
    config:
      airbyte_config:
        format: json
        provider: 
          storage: local
        url: /local/foobar.json
        dataset_name: foo_123456789
      docker_mounts: [
        { source: "/Users/<USERNAME>/projects/my-meltano", target: "/local", type: "bind"}
      ]


# I'm running meltano on a ARM machine, if that is of interest :-/