The document discusses the gossip protocol, which is a simple, masterless communication protocol inspired by gossip in social networks. It describes how gossip protocols work by having nodes randomly share information with other nodes to propagate data throughout the entire network. They are useful for building reliable distributed systems that can tolerate failures of individual nodes.
8. 設定ファイル
hosted_zone "winebarrel.jp." do
rrset "winebarrel.jp.", "A" do
ttl 300
resource_records(
"127.0.0.1",
"127.0.0.2"
)
end
rrset "winebarrel.jp.", "MX" do
ttl 300
resource_records(
"10 mx.winebarrel.jp"
)
end
end
hosted_zone "info.winebarrel.jp." do
rrset "for.your.info.winebarrel.jp.", "A" do
dns_name "elb-dns-name.elb.amazonaws.com"
end
rrset "my.info.winebarrel.jp", "A" do
set_identifier "Primary"
failover "PRIMARY"
health_check "http://192.0.43.10:80/path", :host => "example.com"
ttl 456
resource_records(
"127.0.0.1",
"127.0.0.2"
)
end
end