2012-07-11 52 views
9

我正在使用以下命令删除route53记录。我没有收到错误消息。Boto - 如何从route53删除记录集 - 尝试删除资源记录集但未找到

conn = Route53Connection(aws_access_key_id, aws_secret_access_key) 
changes = ResourceRecordSets(conn, zone_id) 
change = changes.add_change("DELETE",sub_domain, "A", 60,weight=weight,identifier=identifier) 
change.add_value(ip_old) 
changes.commit() 

所有必需的字段存在和它们match..weight,标识符 TTL = 60等。\

例如

test.com. A 111.111.111.111 60 1 id1 
test.com. A 111.111.111.222 60 1 id2 

我想删除111.111.111.222和记录集。

那么,删除记录集的正确方法是什么?

对于一个记录集,我将拥有多个通过唯一标识符区分 的值。当一个IP地址变为活动状态时,我想要 从路由53中删除。我正在使用可怜的负载均衡。

Here is the meta of the record want to delete. 
{'alias_dns_name': None, 
    'alias_hosted_zone_id': None, 
    'identifier': u'15754-1', 
    'name': u'hui.com.', 
    'resource_records': [u'103.4.xxx.xxx'], 
    'ttl': u'60', 
    'type': u'A', 
    'weight': u'1'} 



Traceback (most recent call last): 
    File "/home/ubuntu/workspace/rtbopsConfig/classes/redis_ha.py", line 353, in <module> 
    deleteRedisSubDomains(aws_access_key_id, aws_secret_access_key,platform=platform,sub_domain=sub_domain,redis_domain=redis_domain,zone_id=zone_id,ip_address=ip_address,weight=1,identifier=identifier) 
    File "/home/ubuntu/workspace/rtbopsConfig/classes/redis_ha.py", line 341, in deleteRedisSubDomains 
    changes.commit() 
    File "/usr/local/lib/python2.7/dist-packages/boto-2.3.0-py2.7.egg/boto/route53/record.py", line 131, in commit 
    return self.connection.change_rrsets(self.hosted_zone_id, self.to_xml()) 
    File "/usr/local/lib/python2.7/dist-packages/boto-2.3.0-py2.7.egg/boto/route53/connection.py", line 291, in change_rrsets 
    body) 
boto.route53.exception.DNSServerError: DNSServerError: 400 Bad Request 
<?xml version="1.0"?> 
<ErrorResponse xmlns="https://route53.amazonaws.com/doc/2011-05-05/"><Error><Type>Sender</Type><Code>InvalidChangeBatch</Code><Message>Tried to delete resource record set hui.com., type A, SetIdentifier 15754-1 but it was not found</Message></Error><RequestId>9972af89-cb69-11e1-803b-7bde5b9c457d</RequestId></ErrorResponse> 

感谢

回答

1

你确定你需要所有这些参数对add_change?

Look at add_change here.

默认参数被赋予给该函数,所以你可能被过指定通过提供重量和TTL。

尝试让重量和TTL离开(您可能需要保留标识符)。 This blog提供了一个删除记录的简单示例:

此外,我看不到您传递的参数的值,但确保其完整性并尝试包括'。'。在你的子域的末尾

1

我试过类似的例子,并且必须指定包括weight和ttl在内的所有字段才能成功删除。 (通过保持默认状态,它不起作用)。无法用加权DNS记录产生原始问题并明确通过ttl。