- Implementing Cloud Design Patterns for AWS(Second Edition)
- Sean Keery Clive Harber Marcus Young
- 77字
- 2021-06-24 15:11:59
Placement groups
To further distribute your load across physical hardware, you can create a placement group. The following resource will cause your instance to be spread across underlying hardware:
resource "aws_placement_group" "web" {
name = "book-pg"
strategy = "spread"
}
Add the following to your instance resources to spread them across underlying hardware:
placement_group = "book-pg"
You could also use the cluster strategy to a create a low-latency instance group in a single AZ.
推薦閱讀
- Linux運維之道(第3版)
- Linux內核完全注釋(20周年版·第2版)
- Arch Linux Environment Setup How-to
- 開源安全運維平臺OSSIM疑難解析:入門篇
- 循序漸進學Docker
- Linux Shell編程從入門到精通(第2版)
- Java EE 8 Design Patterns and Best Practices
- 新手學電腦從入門到精通(Windows 10+Office 2016版)
- Ceph分布式存儲實戰
- 完美應用RHEL 8
- 一學就會:Windows Vista應用完全自學手冊
- 計算機系統:基于x86+Linux平臺
- Linux服務器配置與管理
- RHCSARHCE 紅帽Linux認證學習指南(第7版)EX200 & EX300
- Learn CUDA Programming