Hi, I wanted to try how custom extractors work and...
# troubleshooting
n
Hi, I wanted to try how custom extractors work and I downloaded the
tap-facebook
repo, and followed the steps to install it as a custom one, renaming it to
tap-facebook-mod
. I moved the
tap-facebook
folder to the
extract/
directory in my meltano project and configured everything in the
meltano.yml
file (image below). The problem comes when I try to
meltano invoke tap-facebook-mod
, as I receive a "INFO No properties were selected" message. I've been struggling with this for some hours now and I don't know how to solve this, or even if it's possible to do what I'm trying to do. I would really appreciate if someone could help me.
d
@nil_serra It looks like you didn’t list any
capabilities
when
meltano add --custom extractor
asked you. See https://meltano.com/docs/integration.html#validate-tap-capabilities. You’ll want to add the following to your plugin definition: https://gitlab.com/meltano/meltano/blob/master/src/meltano/core/bundle/discovery.yml#L564-567
n
Wow, that was a quick response. Thank you very much!