I configure everything and get a successful connec...
# getting-started
w
I configure everything and get a successful connection to the sql db - and the --list comand works ( I can tell I'm selecting what I wanted) but I can't get any data out
meltano_yml.yaml
Copy code
→ $ meltano run tap-mssql target-jsonl
does not output a file to the output/ directory
and on every other run it fails without changing anything...
Copy code
2023-06-30T13:12:54.432740Z [info     ]     raise Exception(           cmd_type=elb consumer=False name=tap-mssql producer=True stdio=stderr string_id=tap-mssql
2023-06-30T13:12:54.432959Z [info     ] Exception: only INCREMENTAL, LOG_BASED and FULL TABLE replication methods are supported cmd_type=elb consumer=False name=tap-mssql producer=True stdio=stderr string_id=tap-mssql
2023-06-30T13:12:54.501005Z [info     ] Incremental state has been updated at 2023-06-30 13:12:54.500896.
2023-06-30T13:12:54.510813Z [error    ] Extractor failed
2023-06-30T13:12:54.511214Z [error    ] Block run completed.           block_type=ExtractLoadBlocks err=RunnerError('Extractor failed') exit_codes={<PluginType.EXTRACTORS: 'extractors'>: 1} 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: Extractor failed
thanks in advance for any help someone can provide!
j
You may need quotes around your
FULL TABLE
w
hmm - ya I tried that but let me try again
ya - didn't work. It also only errors every other time with that message - but I don't get any data either time
this works fine (everytime)
Copy code
meltano select tap-mssql --list
I'm looking through this older post right now
r
There is another thread here. I had the same issue today but was able to resolve it with
metadata
.
Feel like adding
FULL TABLE
as the default would help a lot of people, given documentation on what that means and why it may/may not be best for a particular use-case.
w
so I see
FULL_TABLE
in one of those links and
FULL TABLE
in the error message I'm getting
tried both and still struggling a bit
r
Yeah, I think what you set is dependent on the tap variant you are using. Somewhat confusingly, the tap error message references
FULL TABLE
(with a space) but logically matches
FULL_TABLE
...
w
Ok - awesome! Here is my working config
j
That exception message should def be changed 😆
w
meltano.yml
r
Nice!
w
Thanks so much for the help!
r