Hi team, I have been trying Meltano for the past f...
# getting-started
a
Hi team, I have been trying Meltano for the past few days, and the experience has been awesome. I am trying to use the tap-csv to pipe the data to my Snowflake warehouse, but while testing the extractor tap-csv, it quits after a "block failed" error. Here is the config -
Copy code
{
  "add_metadata_columns": false,
  "files": [
    {
      "path": "path\\csv_test\\csv_file.csv",
      "entity": "csv_file",
      "keys": [
        "id"
      ],
      "strict": true
    }
  ]
}
when I run the command -
meltano run tap-csv > test.json
it throws the error -
block violates set requirements: Found no end in block set!
I have also attached the csv file for reference. It would be really cool if anyone could help me with the setup! Thanks in advance.
a
Run command expects a tap and a target. Try
meltano invoke tap-csv
instead or install the target-jsonl and use that
meltano run tap-csv target-jsonl
a
Makes sense. Thank you Andy, it worked!