emcp
08/05/2021, 6:13 PMtap-csv
in a attempt to just test something basic.. while following the tutorial..
https://meltano.com/plugins/extractors/csv.html#installation-and-configuration
meltano select tap-csv --list --all
[2021-08-05 20:10:35,316] [175215|MainThread|meltano.core.plugin.singer.tap] [WARNING] A catalog file was found, but it will be ignored as the extractor does not advertise the `catalog` or `properties` capability
Legend:
selected
excluded
automatic
Enabled patterns:
*.*
Selected attributes:
I will google a bit more but.. it sounds like I need to add or config something for my extractor to work ? Thanks
my config looks like this
version: 1
send_anonymous_usage_stats: true
project_id: some_id
plugins:
extractors:
- name: tap-csv
variant: meltano
pip_url: git+<https://gitlab.com/meltano/tap-csv.git>
config:
files:
- entity: example
file: extract/example_data.csv
keys: [col1, col2, col3, description, timestamp]
The instructions talk about if this select
command fails with an Error... but this output looks like just a warning.. but is it the same?
If this command fails with an error, this usually means that the Singer tap does not support catalog discovery mode , and will always extract all supported entities and attributes.
edgar_ramirez_mondragon
08/05/2021, 6:34 PMmeltano.yml
looks good. meltano select tap-csv --list --all
will raise that warning because tap-csv
doesn't support a catalog, so there's nothing to worry about there. I believe you should be able to invoke the tap as is simple smileemcp
08/05/2021, 6:35 PMemcp
08/05/2021, 6:36 PMedgar_ramirez_mondragon
08/05/2021, 7:50 PMone suggestion on that doc then is instead of saying "Command fails with an Error" to "Command emits a Warning"you're right, noted! Also, if you're willing to contribute the documentation change that'd be greatly appreciated. The source is https://gitlab.com/meltano/meltano/-/blob/master/docs/src/docs/getting-started.md#L260-262 simple smile