diff options
Diffstat (limited to 'src/certifications/aws-solutions-architect/ec2-placement-groups.md')
-rw-r--r-- | src/certifications/aws-solutions-architect/ec2-placement-groups.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/certifications/aws-solutions-architect/ec2-placement-groups.md b/src/certifications/aws-solutions-architect/ec2-placement-groups.md new file mode 100644 index 0000000..b32c93f --- /dev/null +++ b/src/certifications/aws-solutions-architect/ec2-placement-groups.md @@ -0,0 +1,14 @@ +# EC2 Placement Groups + +Placement groups allow you to define where your EC2 instances are deployed on AWS infrastructure. + +A placement group is either: + +1. *A cluster*: puts your instances in a low latency group in the same AZ. This helps with networking as instances are close to one another. Drawback is if the AZ fails, they all fail. **use case**: Good for big data jobs, apps that need low latency between instances. +2. *Spread*: Think of this as opposite to clusters. Each instance is on different hardware across different AZs. This means reduced failure risk. Limited to 7 AZ per placement group. **Use case**: maximum high availability. +3. *Partition*: spreads instances across different partitions within an AZ. Each partition represents a rack in AWS. Instances are distributed across different hardware racks and AZs in same region. **use cases**: Big data application, which are petition aware. + + + + + |