Hi, I want to load all csv files from a folder to ...
# troubleshooting
j
Hi, I want to load all csv files from a folder to a postgres db. However it only writes one csv file to the schema tap-csv config:
Copy code
- name: tap-csv
    variant: meltanolabs
    pip_url: git+<https://github.com/MeltanoLabs/tap-csv.git>
    config:
      files:
      - entity: ARR
        #path: ../csv_files/2022-07 ARR and Contracts Delta Booked.csv
        path: ../csv_files
        keys:
        - id
j
Have you tried
path: ../csv_files/*.csv
?