Hi, I just started exploring meltano last week and...
# troubleshooting
r
Hi, I just started exploring meltano last week and I finally have a pipeline setup from
tap-mssql--wintersrd
to
target-jsonl
. However, when I run the pipeline, the extractor errors with "Exception: only INCREMENTAL, LOG_BASED and FULL TABLE replication methods are supported" but it's not clear from the docs how to configure that tap setting from
meltano.yml
. Thoughts?
t
I think that happens when the replication method isn't defined at all. Make sure you have a replication-method: option set in your extractor config.
r
That's what I think, also, but I'm not sure where exactly to configure that method.
t
b
I have this in my extractor:
default_replication_method: "FULL_TABLE" # 'LOG_BASED', 'FULL_TABLE', 'INCREMENTAL'.
r
@thomas_briggs yep, that helped. I had gone through the partitioned tutorials and they didn't mention the metadata configuration. Got it working now. Thanks!
@berend_de_boer could you show an example of that extractor config so that I have the full context?