Trying to modify a database parameter group on AWS RDS with boto, I hit upon the error below:

from boto import rds
conn = rds.connect_to_region('eu-west-1', aws_access_key_id=AWS_ACCESS_KEY_ID,     aws_secret_access_key=AWS_SECRET_ACCESS_KEY)
pg = conn.get_all_dbparameters('mygroup')
pg.add_param('slow_query_log', True, 'immediate')


TypeError
"unknown type (<type 'str'>)"
 File: /usr/local/lib/python2.6/dist-packages/boto/rds/parametergroup.py, Line: 175

Any help would be appreciated

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Try something like this:

pg = conn.get_all_dbparameters('mygroup')
pg2 = rds.get_all_dbparameters('mygroup', marker = pg.Marker)
pg2['slow_query_log'].value = True
pg2['slow_query_log'].apply(True)

The conn.get_all_dbparameters() method returns max. 100 rows. However there are about 180 DB Parameters that can be modified. Therefore you have query in two steps. The first method call returns a Marker that you can use for your second query. In the second query you will have your slow_query_log available

http://boto.cloudhackers.com/en/latest/ref/rds.html#boto.rds.RDSConnection.get_all_dbparameter_groups

link|improve this answer
I get an unhandled key error because 'slow query log' apparently doesn't exist within the parameter group – alan Jan 31 at 22:49
Thanks, I just edited my answer based on your comment. – j0nes Feb 1 at 7:43
Thanks... nearly there!. Just had to change the last line to pg2['slow_query_log'].apply(True) – alan Feb 1 at 11:00
Edited last line per comment – alan Feb 1 at 11:01
It looks like the second line should be conn.get_all_dbparameters(...), rds does not have a method called get_all_dbparameters – Jason Ward Apr 3 at 16:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.