zsolt
07/24/2023, 11:58 AMversion: 1
default_environment: dev
project_id: f40b0880-ec4b-4496-a8d8-7ff68870ce7b
environments:
- name: dev
- name: staging
- name: prod
plugins:
extractors:
- name: tap-csv
variant: meltanolabs
pip_url: git+<https://github.com/MeltanoLabs/tap-csv.git>
config:
csv_files_definition: csv_config.json
loaders:
- name: target-jsonl
variant: andyh1203
pip_url: target-jsonl
csv_config.json:
[
{
"entity": "test",
"path": "data/test.csv",
"keys":[]
}
]
As I tried this on my Mac, I was able to run it for the first time and it worked well. However, as I'm trying to run this project with seemingly identical settings on my PC, it gives the following output:
2023-07-24T11:47:03.662001Z [warning ] Failed to create symlink to 'meltano.exe': administrator privilege required
2023-07-24T11:47:03.683205Z [info ] Environment 'dev' is active
2023-07-24T11:47:07.714472Z [error ] Cannot start plugin tap-csv:
2023-07-24T11:47:07.714963Z [error ] Block run completed. block_type=ExtractLoadBlocks err=RunnerError('Cannot start plugin tap-csv: ') exit_codes={} set_number=0 success=False
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.
Run invocation could not be completed as block failed: Cannot start plugin tap-csv:
To me, it seems like it's not outputting the whole error for some reason. Could the reason be the failed symlink creation? Do I need admin privileges? How could I proceed with debugging this issue?
Any info / tipps on this topic are highly appreciated! Thanks! 🙂