- 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.
推薦閱讀
- Ansible權(quán)威指南
- 構(gòu)建可擴(kuò)展分布式系統(tǒng):方法與實(shí)踐
- Mastering KVM Virtualization
- Linux基礎(chǔ)使用與案例
- Hands-On GPU Programming with Python and CUDA
- Windows 10從新手到高手
- Linux軟件管理平臺(tái)設(shè)計(jì)與實(shí)現(xiàn)
- 從零開始學(xué)安裝與重裝系統(tǒng)
- iOS 10 開發(fā)指南
- Mastering Windows 8 C++ App Development
- Linux應(yīng)用大全 基礎(chǔ)與管理
- Mastering Azure Serverless Computing
- 電腦辦公(Windows10+Office2016)從新手到高手
- Responsive Web Design with AngularJS
- Hadoop Operations and Cluster Management Cookbook