DEV Community

Discussion on: What are the kind of web application you have launched in AWS ECS in production?

Collapse
 
taragrg6 profile image
taragurung

So,where are you exactly storing the database. Do you have a container for that also. I would love to hear in more details.

Actually I am looking for a way to use multiple container that are related to each other. In GCP we can easily make the containers contact each other creating a service. Is it possible in ECS?

Thanks.

Collapse
 
yloganathan profile image
Yuva

We have a python (Flask + Gunicorn) API running using ECS fargate in production and we use AWS RDS Postgres as a Database.

The common wisdom is never to run production databases in containers. There are many articles out there explaining why.

myopsblog.wordpress.com/2017/02/06...
vsupalov.com/database-in-docker/

Containers are meant for stateless applications that can be scaled without issues.

Yes, you can specify multiple containers in ECS. Check out task definitions in ECS.
docs.aws.amazon.com/AmazonECS/late...

Collapse
 
dbanty profile image
Dylan Anthony

Our databases are actually not in containers, we use RDS (MySQL) and Elasticache (Redis).

You can definitely communicate between two containers. I think if the containers are on the same instance server (EC2) you can talk directly between them if you use the right networking setup. You can use the concept of a Daemon service to make sure that each backing server has one of the service container you want to share.

Otherwise, you can use the service discovery feature to link services together.