Reputation: 259
I'm new in the AWS Airflow. I have unmanaged Airflow on AWS ec2 instance which I want to move to the managed one. When I went over the managed Airflow I saw there is missing provider for MongoDB. How can I add it to the "connection type" drop down? I couldn't found any wizard for guide me in this issue.
Upvotes: 2
Views: 1604
Reputation: 2621
You'll need to install the MongoDB provider package for the MWAA environment. Add the package apache-airflow-providers-mongo
to requirements.txt
. The MongoDB provider package is not installed by default in the MWAA environment.
References
Upvotes: 2