問題タブ [availability-zone]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
openstack - openstack: アベイラビリティーゾーンの可視性
1 つの availability_zone/host_aggregate が、openstack で指定された 1 つのプロジェクトのみで使用される可能性はありますか?
amazon-ec2 - AWS EC2 でクロス AZ cassandra ノード ハートビートのネットワーク コストを見積もりますか?
現在、AWS EC2 で Cassandra クラスターを立ち上げることを計画しています。少なくとも、同じリージョン (us-east-1) の異なるアベイラビリティ ゾーン (AZ) で 2 つのノードを起動して、耐障害性を高めることを計画しています。ただし、クロス AZ データ転送は、 AWS クロス az トラフィック1 GB あたり 0.02 USDです。これにより、ノードが定期的に通信するために (ゴシップ)、関連するコストを見積もるために、月にどれだけのデータが転送されるかという疑問が生じます。請求書が出されたときに驚かされたくないだけです。
ノードが 2 つしかなく、それぞれが異なる AZ にあり、クライアントの読み取り/書き込みがまったくないとします (その部分の見積もり方法は知っています)。クラスターが成長すると、どのように成長しますか? O(N^2)で大きくなる?
amazon-web-services - トラフィックがアベイラビリティ ゾーンに制限されたままになるようにするにはどうすればよいですか?
同じアベイラビリティーゾーン内にデプロイされ、http 経由で通信する 2 つの aws クライアントが所有する、自動スケーリングされ、負荷分散されたサーバーの 2 つのセットを見ています。
2 セットのサーバー間のトラフィックがインターネットに出ないようにするにはどうすればよいですか? アベイラビリティ ゾーン内のレイテンシは非常に低くする必要があります。
amazon-web-services - AWS マルチ AZ 検証
RDS インスタンスを「マルチ AZ : はい」に変更しました。私のプライマリ RDS インスタンスは us-west-1a にあり、マルチ AZ の場合、セカンダリ ゾーンは us-west-1c として表示されます。プライマリ データベースに加えた変更がマルチ AZ スタンバイ データベースにすばやくコピーされるかどうかを確認したかったのです。
しかし、マルチ AZ データベースにログインするために使用するエンドポイント URL を理解できません。エンドポイントの URL はプライマリとは異なると思います。これについて私を助けてもらえますか?
amazon-web-services - Multiple availability zones with terraform on AWS
The VPC I'm working on has 3 logical tiers: Web, App and DB. For each tier there is one subnet in each availability zone. Total of 6 subnets in the region I'm using.
I'm trying to create EC2 instances using a module and the count
parameter but I don't know how to tell terraform to use the two subnets of the App tier. An additional constraint I have is to use static IP addresses (or a way to have a deterministic private name)
I'm playing around with the resource
Things I've tried/thought so far:
- Use
data "aws_subnet" "all_app_subnets" {...}
, filter by name, get all the subnets that match and use them as a list. Butaws_subnet
cannot return a list; - Use
data "aws_availability_zones" {...}
to find all the zones. But I still have the problem of assigning the correct subnet; - Use
data "aws_subnet_ids" {...}
which looks like the best option. But apparently it doesn't have a filter option to match the networks namel - Pass the subnets IDs as list of strings to the module. But I don't want to hard code the IDs, it's not automation;
- Hard code the subnets as
data "aws_subnet" "app_subnet_1" {...}
,data "aws_subnet" "app_subnet_2" {...}
but then I have to use separate sets of variables for each subnet which I don't like; - Get information for each subnet like in the point above but then create a
map
to access it as a list. But it's not possibile to use interpolation in variables definition; - Not using modules and hard-code each instance for each environment. Mmmm... really?
I really ran out of ideas. It seems that nobody has to deploy instances in specific subnetworks and keep a good degree of abstration. I see only examples where subnetworks are not specified or where people just use default values for everything. Is this really something so unusual?
Thanks in advance to everyone.