MongoDB

WARNING

This tap is currently a proof of concept and may have limited utility, but feedback is always welcome on issue #631

tap-mongodb pulls raw data from a MongoDB source.

Info

Install

  1. Navigate to your Meltano project in the terminal
  2. Run the following command:
meltano add extractor tap-mongodb

If you are successful, you should see Added and installed extractors 'tap-mongodb' in your terminal.

Configuration

  1. Open your project's .env file in a text editor
  2. Add the following variables to your file:
# MongoDB databse host URI
export TAP_MONGODB_HOST=""
# MongoDB database port
export TAP_MONGODB_PORT=""
# MongoDB database username
export MONGODB_USERNAME=""
# MongoDB database password
export TAP_MONGODB_PASSWORD=""
# MongoDB database name
export TAP_MONGODB_DBNAME=""
Last Updated: 11/6/2019, 4:55:18 PM