我想使用redis创建一个elasticache实例。
我认为我应该使用它"禁用集群模式"因为一切都适合一台服务器。 为了没有SPOF,我想创建一个只读主副本将由AWS推广的只读副本。 如果可能的话,平衡主设备和从设备之间的只读操作会很好,但它不是强制性的。
我使用aws控制台创建了一个正常运行的master / read-replica,然后使用cloudformer创建了一个cloudformation json conf。 Cloudformer创建了两个未链接的AWS::ElastiCache::CacheCluster
,但通过阅读文档。我不明白如何链接它们......现在我有这个配置:
{
"cachehubcache001": {
"Type": "AWS::ElastiCache::CacheCluster",
"Properties": {
"AutoMinorVersionUpgrade": "true",
"AZMode": "single-az",
"CacheNodeType": "cache.t2.small",
"Engine": "redis",
"EngineVersion": "3.2.4",
"NumCacheNodes": "1",
"PreferredAvailabilityZone": { "Fn::FindInMap" : [ "RegionMap", { "Ref" : "AWS::Region" }, "Az1B"]},
"PreferredMaintenanceWindow": "sun:04:00-sun:05:00",
"CacheSubnetGroupName": {
"Ref": "cachesubnethubprivatecachesubnetgroup"
},
"VpcSecurityGroupIds": [
{
"Fn::GetAtt": [
"sgiHubCacheSG",
"GroupId"
]
}
]
}
},
"cachehubcache002": {
"Type": "AWS::ElastiCache::CacheCluster",
"Properties": {
"AutoMinorVersionUpgrade": "true",
"AZMode": "single-az",
"CacheNodeType": "cache.t2.small",
"Engine": "redis",
"EngineVersion": "3.2.4",
"NumCacheNodes": "1",
"PreferredAvailabilityZone": { "Fn::FindInMap" : [ "RegionMap", { "Ref" : "AWS::Region" }, "Az1A"]},
"PreferredMaintenanceWindow": "sun:02:00-sun:03:00",
"CacheSubnetGroupName": {
"Ref": "cachesubnethubprivatecachesubnetgroup"
},
"VpcSecurityGroupIds": [
{
"Fn::GetAtt": [
"sgiHubCacheSG",
"GroupId"
]
}
]
}
},
}
我知道这是错的,但我无法弄清楚如何创建正确的副本。我无法理解AWS文档,首先我无法弄清楚我应该使用哪种文档:
由于cloudformer创建了AWS::ElastiCache::CacheCluster
我会使用它,但我觉得它应该只创建一个资源,并使用NumCacheNodes
参数以便创造两个资源。
redis无法使用:
NumCacheNodes
AZMode
和PreferredAvailabilityZones
所以我不知道如何使这个解决方案成为多AZ ...
答案 0 :(得分:3)
我设法使用AWS::ElastiCache::ReplicationGroup
执行此操作,NumCacheClusters
参数提供了拥有众多服务器的可能性。注意:看起来你必须自己处理与主/从的连接(但是在主机故障的情况下,aws通常应该检测它并更改从机的dns以允许你指出不要改变你的配置)。这是一个样本:
"hubElastiCacheReplicationGroup" : {
"Type" : "AWS::ElastiCache::ReplicationGroup",
"Properties" : {
"ReplicationGroupDescription" : "Hub WebServer redis cache cluster",
"AutomaticFailoverEnabled" : "false",
"AutoMinorVersionUpgrade" : "true",
"CacheNodeType" : "cache.t2.small",
"CacheParameterGroupName" : "default.redis3.2",
"CacheSubnetGroupName" : { "Ref": "cachesubnethubprivatecachesubnetgroup" },
"Engine" : "redis",
"EngineVersion" : "3.2.4",
"NumCacheClusters" : { "Ref" : "ElasticacheRedisNumCacheClusters" },
"PreferredMaintenanceWindow" : "sun:04:00-sun:05:00",
"SecurityGroupIds" : [ { "Fn::GetAtt": ["sgHubCacheSG", "GroupId"] } ]
}
},