Hi! I am trying use a custom catalog doing `meltan...
# troubleshooting
m
Hi! I am trying use a custom catalog doing
meltano config tap-netsuite set catalog custom_catalog.json
however when i do
meltano select tap-netsuite --list --all
i recieve the folow result.. Is there any way to change the attributes that I want to delete for selection?
t
Does
meltano config tap-netsuite set catalog custom_catalog.json
actually update your meltano.yml? It should just update the
catalog
extra to the file.
What’s being listed when you do
meltano select tap-netsuite --list --all
is what’s under the
select
key in your
meltano.yml
I don’t actually know how it works if you have both
catalog
and
select
set. @pat_nadolny or @edgar_ramirez_mondragon do you know?
m
Hi Taylor, about your first question, when i do
meltano config tap-netsuite set _catalog custom_catalog.json
in my
meltano.yaml
file in the extractor part a field called catalog appears and the value is the name of the catalog file that I passed
t
ah this is helpful - so you have
properities
listed as a capability. That’s an older capability that implies the tap takes a
--properties
flag to input the catalog file. Do you know if that’s the case or does it take a
--catalog
flag?
m
Checking the tap, indeed it has a
--catalog
flag to be used. In this case i do not need set catalog? Can i pass the flag
--catalog
at
meltano elt
command?
t
cool, then just swap the
properties
capability for
catalog
and see how the behavior changes.
if you’re running
meltano elt
you won’t need the
--catalog
command as meltano should take care of that for you. you can pass it to override though.
m
Cool, I’ll change the capability and check the behavior. Thank you so much Taylor