Daniel Luo
09/05/2024, 8:45 PMmeltano add --custom mapper column_mapper
mappers:
- name: column-mapper
namespace: column_mapper
pip_url: -e map/column-mapper
executable: column-mapper
And my project structure attached. When I run meltano run tap-mssql column-mapper target-snowflake --state-id-suffix dbo-test
, I get the following error:
Environment 'default' is active
Found unexpected mapper plugin name. plugin_name=column-mapper
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.
block violates set requirements: Expected unique mappings name not the mapper plugin name: column-mapper.
What am I doing wrong here?visch
09/05/2024, 8:47 PMmappings
key you're missingDaniel Luo
09/05/2024, 8:47 PMDaniel Luo
09/05/2024, 8:51 PMmappers:
- name: column-mapper
namespace: column_mapper
pip_url: -e map/column-mapper
executable: column-mapper
mappings:
- name: snake_case
Still the same error thoughDaniel Luo
09/05/2024, 8:52 PMDaniel Luo
09/05/2024, 8:57 PMmappers:
- name: column-mapper
namespace: column_mapper
pip_url: -e map/column-mapper
executable: column-mapper
mappings:
- name: snake_case
config:
stream_maps:
If it was running and stream_maps was missing, it should instead show this:
2024-09-05 16:56:51,576 | ERROR | column-mapper | Config validation error: 'stream_maps' is a required property
Daniel Luo
09/05/2024, 10:04 PM