diff --git a/README.md b/README.md index 5d95711..db9306f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,17 @@ -
- -
- -# @ticketplushq/arc-plugin-multi-region +# @ticketplushq/arc-multi-region Allows to deploy Architect projects on multi regions using [Global Tables](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.html). +## Table of contents + +- [Install](#install) +- [Usage](#usage) + - [The `@multi-region` pragma](#the-multi-region-pragma) + - [Example](#example) + - [Some considerations](#some-considerations) +- [Contributing](#contributing) +- [License](#license) + ## Install `npm i @ticketplushq/arc-plugin-multi-region` @@ -20,7 +26,9 @@ ticketplushq/arc-plugin-multi-region Then follow the directions below for `@multi-region`. -## `@multi-region` +## Usage + +### The `@multi-region` pragma The `@multi-region` allows to deploy Architect projects on multi regions using DynamoDB Global Tables. @@ -63,10 +71,10 @@ replicas # additional regions where you want to deploy you Arch In order to deploy this app to multiple regions (us-west-1, us-west-2, and us-east-2, according to the example) we need to follow this instructions. -1. Always use the `--dry-run` flag, to test this before deploy everything to the real world. - * You will be see some warnings, due to the nature of a dry run execution. -2. Deploy your Architect app normally - * After a successful deployment, will start replicating the tables in the configured regions (`us-west-2` and `us-east-2`). +> Always use the `--dry-run` flag, to test everything before deploy to the real world. You will be see some warnings, due to the nature of a dry run execution. + +1. Deploy your Architect app normally with `arc deploy` + * After a successful deployment on the primary region, will start replicating the tables in the configured regions (`us-west-2` and `us-east-2`). * Take a look at the console, and you will see a summary of the operation performed. ``` ⚬ MultiRegion Updating replication on primary region us-west-1 @@ -76,7 +84,7 @@ In order to deploy this app to multiple regions (us-west-1, us-west-2, and us-ea ✓ MultiRegion Replication updated for table users ✓ MultiRegion Replication updated in 10.944 seconds ``` -3. Change the `region` value on `@aws` at your `app.arc` file, to one of the replica regions (`us-west-2` or `us-east-2`) +2. Change the `region` value on `@aws` at your `app.arc` file, to one of the replica regions (`us-west-2` or `us-east-2`), and deploy your Architect app normally with `arc deploy` * Before start the deployment, will start to fetching the replicated tables on the replica region, and ignoring the corresponding table that Architect try to create naturally. * Take a look at the console, and you will see a summary of the operation performed. ``` @@ -84,12 +92,27 @@ In order to deploy this app to multiple regions (us-west-1, us-west-2, and us-ea ⚬ MultiRegion Fetched replica tables in the replica region (us-west-2) | users ``` -4. Repeat the step two for each replica region. +3. Repeat the step two for each replica region. -As a result of the above you will have 2 or more api endpoints, to balance in case of failure in a region. +As a result of the above you will have 2 or more api gateway endpoints, to balance in case of failure in a region. ### Some considerations -* By default, architect don't delete your tables, so if you remove a table from app.arc, you must to manually remove each replica and the table itself. +* Architect don't delete your tables, so if you remove a table from app.arc, you must to manually remove each replica and the table itself. * The indexes are replicated without problem, so don't concern about it. +* Due to AWS API limitations, we can only create/delete one region at a time for each table. So if you add two or more regions to each table. The deployment will wait for the replication update to finish, to add a new region in the same table, and only then continue with the next table. Instead, if you only add one replica region at a time, it won't wait for the replication update. +* It can take aws a long time to make a table available in another region, and if it is not available, the deploy in the replica region could fail. However, as soon as it is ready, the deployment will finish successfully. * There is many behaviors related to events, queues and crons that you should be considering before to move to a multi region architecture. + In the context of lambda functions, there are some environment variables (`ARC_MULTI_REGION_PRIMARY` and `ARC_MULTI_REGION_CURRENT`, with the corresponding aws region) useful to condition some logic. + +## Maintainer + +[@ticketplushq](https://github.com/ticketplushq) + +## Contributing + +Feel free to dive in! Open an issue or submit PRs. + +## License + +Apache License 2.0 © 2022 Ticketplus