Hello All! I am new with using Meltano, and I am t...
# troubleshooting
r
Hello All! I am new with using Meltano, and I am trying to use the
tap-google-ads
found here: https://github.com/singer-io/tap-google-ads. I have run the following commands:
Copy code
meltano config tap-google-ads > config.json
meltano invoke tap-google-ads --discover > catalog.json
meltano invoke tap-google-ads --catalog catalog.json > output.txt
meltano elt tap-google-ads target-jsonl --job_id=google-ads-test0 --full-refresh --catalog catalog.json
And the issue I have come across is no data being ingested when i run meltano elt. Any idea why this would be happening? Here is the output I am getting:
Copy code
root@3f6bc8d290cb:/meltano# meltano invoke tap-google-ads --catalog catalog.json > output.txt
INFO Sync Completed
root@3f6bc8d290cb:/meltano# cat output.txt
{"type": "STATE", "value": {}}
and this:
Copy code
root@3f6bc8d290cb:/meltano# meltano elt tap-google-ads target-jsonl --job_id=google-ads-test0 --full-refresh --catalog catalog.json
2022-06-07T21:26:21.178812Z [warning  ] The `discovery.yml` manifest received from <https://discovery.meltano.com/discovery.yml> has version 21, while this version of Meltano requires version 20.
2022-06-07T21:26:21.180808Z [warning  ] Please install the latest compatible version of Meltano using `meltano upgrade`.
2022-06-07T21:26:21.183767Z [warning  ] Falling back on the cached `discovery.yml` manifest...
2022-06-07T21:26:24.924683Z [info     ] Running extract & load...      job_id=google-ads-test0 name=meltano run_id=0b1946c5-1766-4aa7-9b6e-e44fa945661e
2022-06-07T21:26:25.235910Z [info     ] Performing full refresh, ignoring state left behind by any previous runs.
2022-06-07T21:26:25.241109Z [info     ] Found catalog in /meltano/catalog.json
2022-06-07T21:26:39.500159Z [info     ] INFO Sync Completed            cmd_type=extractor job_id=google-ads-test0 name=tap-google-ads run_id=0b1946c5-1766-4aa7-9b6e-e44fa945661e stdio=stderr
2022-06-07T21:26:39.657878Z [info     ] Incremental state has been updated at 2022-06-07 21:26:39.657253.
2022-06-07T21:26:39.687970Z [info     ] Extract & load complete!       job_id=google-ads-test0 name=meltano run_id=0b1946c5-1766-4aa7-9b6e-e44fa945661e
2022-06-07T21:26:39.689605Z [info     ] Transformation skipped.        job_id=google-ads-test0 name=meltano run_id=0b1946c5-1766-4aa7-9b6e-e44fa945661e
v
Sounds like select isn't selecting anything
r
@visch Thanks that was definitely the issue.