Any way to run AWS Aurora locally?

We are thinking of moving to AWS Aurora with MySql. We use a firewall for developers, so each virtual block has its own mysql instance. Is there a way to run Aurora locally? If not, what would be the best way to handle the situation?

+6
source share
2 answers

Is there a difference in how to use Aurora compared to how you use MySQL? We continue to use MySQL locally after switching to Aurora on AWS.

+7
source

You can continue to use mysql since aurora is compatible with mysql. Aurora differs from mysql in other functions, such as auto-detection, more reading of replicas, replication of availability, performance, and other non-development functions.

Therefore, for development, mysql is right for you.

The only problem I can think of is to use the lambda start function.

+3
source

Source: https://habr.com/ru/post/1014815/


All Articles