Hello everyone, good day! I have been working on a...
# troubleshooting
l
Hello everyone, good day! I have been working on a meltano project where we wanna use
tap-dynamodb
, but I met some config issues I guess.
Run invocation could not be completed as block failed: Cannot start plugin tap-kamprad: Catalog discovery failed: command
CRITICAL Config is missing required keys: ['account_id', 'external_id', 'role_name', 'region_name']
It seems like we need to get these settings available, according to this thread, https://github.com/singer-io/tap-dynamodb/issues/15 . So far, after some random tries, like adding these params to env file, but I am still not able to manage it. Currently I am trying to extract data from local dynamo to the postgres target. Our projects’ other taps are working good at the moment, except this one. I am quite a newbie to this area and meltano. Any guidance or real-life examples would be much appreciated. 🙏 Many Thanks!
a
Add to .env
Copy code
TAP_KAMPRAD_ACCOUNT_ID=...
TAP_KAMPRAD_EXTERNAL_ID=...
...
Or
Copy code
plugins:
  extractors:
    - name: tap-kamprad
      ...
      config:
        account_id: ...
        external_id: ...
        ...
I used KAMPRAD cuz thats what your trace shows but use DYNAMODB if thats the namespace, either way hope the above is helpful 🙂
l
thanks mate! 👍