Noam Siegel
02/04/2025, 7:38 AM(etl) ➜ etl git:(main) ✗ meltano config tap-singer-jsonl set local.folders /Users/noamsiegel/Downloads/tripadvisor-matched-files/
2025-02-04T07:34:25.310094Z [info ] The default environment 'dev' will be ignored for `meltano config`. To configure a specific environment, please use the option `--environment=<environment name>`.
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.
Failed to parse JSON array from string: '/Users/noamsiegel/Downloads/tripadvisor-matched-files/'
I tried with and without the last "/" at the end of the folder pathReuben (Matatika)
02/04/2025, 9:15 AMNoam Siegel
02/04/2025, 5:28 PMReuben (Matatika)
02/04/2025, 10:40 PMNoam Siegel
02/06/2025, 5:20 PM{
"company": {
"name": "TechCorp",
"location": "San Francisco",
"departments": [
{
"name": "Engineering",
"manager": {
"name": "Alice Johnson",
"title": "VP of Engineering"
},
"teams": [
{
"name": "Backend",
"lead": {
"name": "Bob Smith",
"title": "Senior Backend Engineer"
},
"members": [
{
"name": "Charlie Green",
"title": "Backend Engineer",
"skills": [
"Python",
"Django",
"PostgreSQL"
],
"projects": [
{
"name": "User Authentication",
"status": "In Progress"
},
{
"name": "API Development",
"status": "Completed"
}
]
},
{
"name": "Dana White",
"title": "Database Administrator",
"skills": [
"SQL",
"AWS RDS",
"Performance Optimization"
]
}
]
},
{
"name": "Frontend",
"lead": {
"name": "Eve Black",
"title": "Senior Frontend Engineer"
},
"members": [
{
"name": "Frank Adams",
"title": "UI Engineer",
"skills": [
"React",
"CSS",
"Figma"
]
}
]
}
]
},
{
"name": "Marketing",
"manager": {
"name": "Grace Lee",
"title": "VP of Marketing"
},
"teams": [
{
"name": "Content",
"lead": {
"name": "Hank Miller",
"title": "Content Strategist"
},
"members": [
{
"name": "Isla Brown",
"title": "Copywriter",
"skills": [
"SEO",
"Blog Writing"
]
}
]
}
]
}
]
}
}
Reuben (Matatika)
02/06/2025, 10:22 PMtap-singer-jsonl
then, the above error can be resolved by passing the local.folders
setting as a JSON array
meltano config tap-singer-jsonl set local.folders '["/Users/noamsiegel/Downloads/tripadvisor-matched-files/"]'
or just manually enter it in the meltano.yml
yourself:
config:
local:
folders:
- /Users/noamsiegel/Downloads/tripadvisor-matched-files/
Noam Siegel
02/07/2025, 12:13 AM