boto: Python interface to Amazon Web Services

learn more… | top users | synonyms

0
votes
0answers
10 views

How can I use s3 object names as inputs to an MRJob mapper, but not the s3 objects themselves?

I'm missing something obvious about Yelp's mrjob job library. Setting up an MRJob class is almost trivially easy. Running it over a file or stdin also so. But how can I change the input to the job ...
1
vote
0answers
17 views

DynamoDB hash key int vs string

I've tried using UUID's integer representation as integer hash key in DynamoDB, but that has failed with error: DynamoDBValidationError: DynamoDBValidationError: 400 Bad Request {'message': ...
0
votes
1answer
9 views

Boto S3 logging bucket delete

I have a set of buckets that have logging enabled and they're sending all their logs to a single bucket. If I delete the logging bucket, do I have to go and disable logging on all the buckets? Will ...
1
vote
0answers
12 views

block device mappings for Amazon aws/ec2 images

I have two related questions - or problems - with the Amazon ec2 API. While I really want to use python and the boto package and that's how I present the code below, I get exactly the same results ...
0
votes
0answers
20 views

Is it possible to use variables in cloud-config

When using cloud init's #cloud-config to create configuration files, how would I go about using variables to populate values? In my specific case I'd like to autostart EC2 instances as preconfigured ...
2
votes
0answers
49 views

Alarm Action “Terminate EC2 Instance” failed

when I start a certain type of instance the userdata-script creates a metric + alarm via Boto. The metric delivers its data to CloudWatch correctly. The alarm should terminate the instance as an ...
0
votes
1answer
21 views

How to validate Amazon access key and secret key is correct?

I wrote a function to validate the AWS keys by just creating the ec2 connection object try: ec2Conn = boto.ec2.connect_to_region(region,aws_access_key_id=access_key, ...
0
votes
1answer
37 views

Python Boto created cloud-init #include script not running on EC2

I've run out of ideas, would appreciate some help. I'm starting and EC2 Ubuntu 12.04 instance and adding the following script to the user data: #!/usr/bin/env python import sys from ...
0
votes
2answers
25 views

Boto doubles all get request cycles by design

To get an object out of S3 using Boto, you have to call something like (at least this is the only documented way I can find): key = bucket.get_key(some_id) data = key.get_contents_as_string() ...
2
votes
1answer
34 views

How stable is EBS?

I'm thinking about saving data from EC2 instances to the EBS and later save the result on S3. I don't have a lot of experience working with EBS, so my questions are: How stable they are? I mean how ...
0
votes
0answers
12 views

How to check for a SNS in ec2?

As far as I understand SNS can push messages to subscribers. I have a simple script that will push message to the SQS. But what I want to do is basically: I have an SNS topic, Have an EC2 instance, ...
2
votes
2answers
60 views

How do I create a list of files stored in my Amazon S3 bucket and display them as download links?

I have a number of videos in an Amazon S3 bucket and I want to display them as a list on my website. Clicking on any item in the list will download the video. I am using Python and Flask. I currently ...
0
votes
1answer
12 views

Unexpected behavior for s3boto

I'm working with amazon S3 storage and have unexpected behavior: storage.exists() returns False for directories. Am I doing everything right? As I understand django documentation, it should return ...
0
votes
1answer
31 views

How to change private S3 bucket setting to serve images as http (not https) with django-storages?

I am using boto with django-storages to upload images directly to S3 from my django form. Everything is ok, except image url is https. I think having https is overkill and not required for media ...
0
votes
0answers
18 views

How can I get boto to generate signed URLs for S3 that trigger downloads?

I've attempted this: connection = S3Connection( aws_access_key_id=settings.AWS_ACCESS_KEY_ID, aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY) url = connection.generate_url( 60, ...
1
vote
0answers
18 views

Filter for a vpc_id value of None

I have an environment that includes VPC and non-VPC. This works as expected filters={ 'vpc_id': 'vpc-xxxxxxxx',} groups = conn.get_ec2().get_all_security_groups(filters=filters) I get back all of ...
2
votes
1answer
31 views

How do I get the most recent Cloudwatch metric data for an instance using Boto?

I'm trying to get the most recent data for CPU utilization for an instance (actually, several instances, but just one to start with), however the following call doesn't return any data: cw = ...
3
votes
1answer
28 views

Starting a stopped EC2 instance with Boto

I am writing a python script that starts a specific instance that is currently stopped, and I am kind of stumped on how I'd do that. As far as I can understand from the Boto EC2 introduction on ...
0
votes
1answer
18 views

Anyway to get dkims records for verifying ses domain in boto?

Tinkering around with verifying a couple of domains and found the manual process rather tedius. My DNS controller offers API access so I figured why not script the whole thing. Trick is I can't ...
0
votes
0answers
36 views

S3ResponseError: 403 Forbidden using boto

I have a script that copy files from one S3 account to another S3 account, It was working befoure!!!! That's for sure. Than I tried it today and it doesn't any more it gives me error S3ResponseError: ...
1
vote
1answer
29 views

Including Boto Library in Elastic Beanstalk

I am in search of how to include the Boto library in an Elastic Beanstalk instance. I was under the impression I had to specify it in .ebextensions. Unfortunately, this doesn't seem to work (see ...
1
vote
1answer
64 views

Map Reduce multiple outputs in python boto

I am trying to partition an input file using AWS EMR. I use a streaming step to read from stdin. I want to split this file into 2 files based on the values of specific fields from each line of stdin ...
1
vote
1answer
219 views

Unable to install boto in a virtualenv

I was able to install boto==2.9.0 inside global site-packages, but when I try to install the same within a virtualenv, it fails with the following error. Running setup.py egg_info for package boto ...
0
votes
0answers
29 views

Backup S3 bucket to a new date.time based bucket. Then, do incremental backup per new bucket and Delete old buckets

Trying to follow the same logic of https://github.com/roseperrone/aws-backup-rake-task I'm wondering if she or anybody else could help improving that script backup task Rose proposed. Basically, we ...
1
vote
1answer
22 views

DynamoDB: handling throttling with boto

According to DynamoDB docs, requests causing database throttling are automatically retried if using the supported SDKs. However, I was unable to find any mention about how boto handles throttling ...
1
vote
0answers
40 views

The installed Boto library must be 2.4 or higher error when using django-storages on ec2

I'm trying to connect to Amazon s3 from a Django application running on Amazon ec2 to upload and serve media files. I'm using django-storages to connect to s3 via the python boto library. I can get ...
0
votes
1answer
26 views

django storages with boto using pirvate ACL throws 404 on save

I am using django-storages with boto. Everything works fine if I let storages handle S3 file uploads in my model as public. However when I set the ACL to private on save/update I get this error ...
0
votes
1answer
63 views

Splitting a file using Map Reduce

I would like to split the content of a text file into 2 different files using EMR. The input file, as well as the mapper and reducer scripts are all stored in AWS' S3. Currently, my mapper reformats ...
0
votes
1answer
45 views

Using Amazon s3 boto library, how can I get the URL of a saved key?

I am saving a key to a bucket with: key = bucket.new_key(fileName) key.set_contents_from_string(base64.b64decode(data)) key.set_metadata('Content-Type', 'image/jpeg') ...
0
votes
0answers
68 views

boto S3 & flask error - Authorization header is invalid — one and only one ' ' (space) required

I have some code that was working just fine yesterday - now I'm getting an error. s3 = get_s3_connection() b_temp = s3.get_bucket(current_app.config['AWS_S3_BUCKET_TEMP']) b_assets = ...
2
votes
1answer
74 views

How can I programmatically check Amazon S3 permissions with boto?

We have a bushy tree in a bucket on Amazon S3 with a large number of files. I just discovered that while some files have two permissions entries, as seen if one clicks on a file in the AWS Management ...
1
vote
1answer
29 views

Mass Restore a Prior Version on Amazon's S3

So. I'm an idiot. I programmatically overwrote about 14,000 files in a bucket Friday and didn't realize it until today. Luckily, the files are versioned. Unluckily, I can't find a good clear ...
0
votes
0answers
66 views

trouble generating thumbnail from image when using boto/django-storages and amazon s3

I'm using the gist found here https://gist.github.com/valberg/2429288 to generate thumbnails upon save. It works locally but not in production where I get an AttributeError: fp is at EOF. Use ...
1
vote
1answer
58 views

Will I get charge for transfering files between S3 accounts using boto's bucket.copy_key() function?

I wrote a little script that copies files from bucket on one S3 account to the bucket in another S3 account. In this script I use bucket.copy_key() function to copy key from one bucket in another ...
2
votes
1answer
82 views

Running Boto on Google App Engine (GAE)

I'm new to Python and was hoping for help on how to 'import boto.ec2' on a GAE Python application to control Amazon EC2 instances. I'm using PyDev/Eclipse and have installed boto on my Mac, but using ...
0
votes
0answers
32 views

How to Upload CSV Documents to Amazon CloudSearch using boto

Is There is any way to upload documents to Amazon CloudSearch in csv format using boto library (via API).I tried official documentation from boto ,but documentation only describes about uploading json ...
0
votes
0answers
51 views

copy files from s3 to glacier

The following code is working as expeceted and showing bucket name, file name. for e.g. <Key: vivafree,Master.csv.2012-04-10-17-52-39.gz> <Key: vivafree,Master.csv.2012-07-12-23-00-49.gz> ...
0
votes
2answers
146 views

Backup DynamoDB Table with dynamic columns to S3

I have read several other posts about this and in particular this question with an answer by greg about how to do it in Hive. I would like to know how to account for DynamoDB tables with variable ...
0
votes
1answer
22 views

HIT instance has no attribute 'Title' for HITs returned by boto

I'm using the boto library to play around with Amazon MTurk. I want to retrieve some reviewable HITs, and display their properties. For example: hits = ...
0
votes
0answers
28 views

Download from Glacier

I am able to upload a file to glacier vault. But how do I download a file? import boto ACCESS_KEY_ID = "abc" SECRET_ACCESS_KEY = "pqr" glacier_connection = ...
2
votes
1answer
68 views

How can I add a tag to a key in boto (Amazon S3)?

I am trying to tag a key that I've uploaded to S3. In the same below I just create a file from a string. Once I have they key, I'm not sure how to tag the file. I've tried Tag as well as TagSet. from ...
0
votes
2answers
65 views

accessing AWS S3 from a desktop app securely

I have data from multiple users inside a single S3 account. My desktop app has an authentication system which let the app know who the user is and which folder to access on S3. but the desktop app has ...
2
votes
1answer
50 views

Why isn't boto returning the number of bytes written to S3?

I'm using boto in a python script. After doing all the setup, I am trying to see if an upload to S3 succeeded by comparing the size of the file on disk with the number of bytes actually written to S3. ...
0
votes
1answer
54 views

Check unique hash_key in dynamodb - python

i'm trying to check existence of an hash_key in dynamodb with boto (i can not update my filed if exist) i've try with query for i in self.table.query(hask_key=[value]): print i['url'] But ...
0
votes
1answer
38 views

How can I use a dict in python to build a multi-dimension array with boto and amazon ec2?

I'm attempting to use python and boto to print a list of instances and IPs from Amazon EC2. I'm used to PHP's nice multidimensional arrays and the similar JSON syntax but I'm having a lot of trouble ...
4
votes
2answers
186 views

How to gzip while uploading into s3 using boto

I have a large local file. I want to upload a gzipped version of that file into S3 using the boto library. The file is too large to gzip it efficiently on disk prior to uploading, so it should be ...
0
votes
1answer
24 views

Is there any limit when using notify_workers method in boto mturk

I came across this file: http://jessechandler.com/uploads/2/8/0/5/2805897/emailing-workers-mueller-chandler1.pdf, inside which it mentions 'you can send up to 100 workerids at a time' when using boto. ...
0
votes
1answer
42 views

python boto mulitpart upload… how to restart the upload

I am uploading a very large file to S3 using boto and my code crashes. how can I preferably continue or restart the upload when the program is back? and btw. I am uploading a big zipped file as I ...
1
vote
2answers
130 views

boto dynamodb: is there a way to optimize batch writing?

I am indexing large amounts of data into DynamoDB and experimenting with batch writing to increase actual throughput (i.e. make indexing faster). Here's a block of code (this is the original source): ...
1
vote
1answer
63 views

boto dynamodb: why am I getting “'Layer2' object has no attribute 'new_batch_write_list'”?

I am trying to batch-write a list of items into a database using code sample from here Here's a code excerpt from my script: import boto conn = boto.connect_dynamodb(...) main_table = ...

1 2 3 4 5 9