Open GoogleCodeExporter opened 9 years ago
Thanks for the patch. Could you create a pull request on github? That makes
it a little easier to track. Thanks.
Original comment by Mitch.Ga...@gmail.com
on 1 Oct 2010 at 8:19
Pull request should be there now.
Original comment by rodo%rod...@gtempaccount.com
on 1 Oct 2010 at 8:37
I wonder if it would be possible to see a sample of the XML response from EMR.
The AWS docs don't really seem to have good sample requests/responses and I'm
having a little trouble getting my head around what's coming back from AWS.
You should be able to do something like this:
>>> import boto
>>> boto.set_stream_logger('emr')
>>> emr = boto.connect_emr(debug=2)
and then go ahead and make your call. The requests and response should print
out to your terminal.
Original comment by Mitch.Ga...@gmail.com
on 1 Oct 2010 at 12:00
I've attached responses from two EMR clusters.
The first was started with no bootstrap options, the second with the 'add-swap'
option shown above.
The interesting piece looks something like this:
<BootstrapActions>
<member>
<BootstrapActionConfig>
<ScriptBootstrapAction>
<Args>
<member>10000</member>
</Args>
<Path>s3://elasticmapreduce/bootstrap-actions/add-swap</Path>
</ScriptBootstrapAction>
<Name>Add 10G Swap</Name>
</BootstrapActionConfig>
</member>
</BootstrapActions>
Original comment by rodo%rod...@gtempaccount.com
on 1 Oct 2010 at 1:09
Attachments:
Original issue reported on code.google.com by
rodo%rod...@gtempaccount.com
on 1 Oct 2010 at 7:51