Tagged Questions
9
votes
1answer
1k views
Django Storage Backend for S3
I'm looking for a good Django custom storage backend for use with Amazon S3.
I've been googling around and found a lot of blog posts with code snippets or half-baked gist.github.com one-off jobs. But ...
4
votes
1answer
43 views
AWS S3 object lifecycle through Boto
How does one manage an S3 object's lifecycle through boto?
I can't find anything related to that subject in the API documentation.
4
votes
3answers
931 views
Django Boto S3 Access
I can't figure this out.
Here's what I want to happen ...
I have an applications that users upload files to S3 using boto and django. I want those files to be private and only accessible through my ...
3
votes
1answer
350 views
Python client support for running Hive on top of Amazon EMR
I've noticed that neither mrjob nor boto supports a Python interface to submit and run Hive jobs on Amazon Elastic MapReduce (EMR). Are there any other Python client libraries that supports running ...
3
votes
1answer
836 views
How do I get the file / key size in boto S3?
There must be an easy way to get the file size (key size) without pulling over a whole file. I can see it in the Properties of the AWS S3 browser. And I think I can get it off the "Content-length" ...
3
votes
1answer
516 views
How do I create an EC2 image from a running instance using boto?
I'm trying to create a simple python backup script for my EC2 instances. This script's purpose is to create daily/weekly snapshots of the current machine (see this question on ServerFault). I'm using ...
3
votes
2answers
792 views
Fastest way to download 3 million objects from a S3 bucket
I've tried using Python + boto + multiprocessing, S3cmd and J3tset but struggling with all of them.
Any suggestions, perhaps a ready-made script you've been using or another way I don't know of?
...
3
votes
2answers
481 views
How can store a file on Google Storage from URL on Google App Engine?
I want to create a service on Google App Engine (Python) that will receive a URL of an image and store it on Google Storage. I managed to upload from a local file using boto or gsutil command line, ...
3
votes
2answers
471 views
Is is possible to read a file from S3 in Google App Engine using boto?
I want to manipulate a pickled python object stored in S3 in Google App Engine's sandbox. I use the suggestion in boto's documentation:
from boto.s3.connection import S3Connection
from boto.s3.key ...
3
votes
2answers
1k views
Problem uploading image file to Amazon S3 in Django using BOTO Library
I am a total beginner to programming and Django so I'd appreciate help that beginner can get his head round!
I was following a tutorial to show how to upload images to an Amazon S3 account with the ...
2
votes
1answer
80 views
How to use AWS S3 policies to enforce ownership of resources for federated users?
I'm writing an app where I have a set of users, and each user will have a number of files associated with them in a 'directory' within an S3 bucket. Users will be authenticating using Amazon's STS, ...
2
votes
1answer
105 views
How can I use boto to stream a file out of Amazon S3 to Rackspace Cloudfiles?
I'm copying a file from S3 to Cloudfiles, and I would like to avoid writing the file to disk. The Python-Cloudfiles library has an object.stream() call that looks to be what I need, but I can't find ...
2
votes
2answers
1k views
Using Boto to find to which device and EBS Volume is mounted
How do I find to which device and EBS Volume is mounted with Python Boto (v2.0)
boto.ec2.Volume
https://github.com/boto/boto/blob/master/boto/ec2/volume.py
has some interesting properies
e.g. ...
2
votes
1answer
691 views
Python Boto S3 to work with Custom Domains in Amazon S3
How do I use the Python Boto library with S3 where the URL's it generate will be my CNAME'd subdomain to the Amazon S3 Server.
By default it uses the default format BUCKETNAME.s3.amazonaws.com but ...
2
votes
2answers
353 views
How to download a file via the browser from Amazon S3 using Python (and boto) at Google App Engine?
I have a python script running inside the Google App Engine with boto 1.9b that gets all keys inside a S3-Bucket. The output is formated as a HTML-Table.
bucket_instance = ...
1
vote
0answers
89 views
How do I loop over all items in a DynamoDB table using boto?
I'd like to query a DynamoDB table and retrieve all the items and loop over them using boto. How do I structure a query or scan that returns everything in the table?
1
vote
0answers
19 views
Python Boto download S3 subdirectories to Windows
I am using Python Boto to download all the files in a bucket to my windows system. The problem is that there are subdirectories on the bucket (or whatever you call them). This is my partial code which ...
1
vote
1answer
48 views
autoscaling with boto
I'm trying to configure autoscaling with boto using scaling policies and metric alarms rather than triggers now that they are being deprecated. I have successfully created a launch configuration and a ...
1
vote
1answer
86 views
Boto script freezing when trying to deploy and configure EC2 instances
I'm using boto in Python to automate some of my EC2 workflow.
The issue is very strange - the script appears to freeze on an assignment of a simple variable, but it is continuing in the background. ...
1
vote
1answer
199 views
Boto EC2: Create an instance with tags
Is there a way with the boto python API to specify tags when creating an instance? I'm trying to avoid having to create an instance, fetch it and then add tags. It would be much easier to have the ...
1
vote
1answer
40 views
Add “default” headers to all boto requests?
Is it possible to set default headers for boto requests? Basically I want to include a couple of headers in every API call I make to S3.
1
vote
1answer
53 views
Do AWS Canonical UserIDs exist for AWS Federated Users (temporary security credentials)?
Does a canonical user id exist for a federated user created using STS? When using boto I need a canonical user id to grant permissions to a bucket.
Here's a quick tour through my code:
I've ...
1
vote
1answer
47 views
Boto: how to keep EMR job flow running after completion/failure?
How can I add steps to a waiting Amazon EMR job flow using boto without the job flow terminating once complete?
I've created an interactive job flow on Amazon's Elastic Map Reduce and loaded some ...
1
vote
2answers
87 views
Amazon Web Service/Boto: Upload and execute remote python/bash script via SSH on localhost
I am able to fire up AWS Ubuntu EC2 instance with boto. Have anyone tried to upload the script to the remote Ubuntu EC2 (More than 1) and execute the script via SSH locally?
The main objective is to ...
1
vote
1answer
140 views
Using boto library on S3
Is there a way to change the key of an S3 file? For example, I want to be able to do the equivalent of:
>>> from boto.s3.key import Key
>>> k=Key(bucket)
>>> ...
1
vote
2answers
134 views
Client side s3 upload and returning the public url of the image
I am writing a client side image uploader library for python. I need to upload an image to Amazon S3 and return the public URL of the image. I can do this using BOTO however I have to share my Secret ...
1
vote
1answer
264 views
How do i get the public dns of an instance in AWS using BOTO python
I get the elb details of a specific region say europe then i am able to get the instances that are related the the ELB. the problem is i am not able to get the public dns of those instances. what i do ...
1
vote
1answer
282 views
How to delete a s3 version from a bucket using boto and python
when I try to delete a bucket using the lines:
conn = boto.connect_s3(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY)
print conn.delete_Bucket('BucketNameHere').message
It tells me the bucket I tried to ...
1
vote
1answer
117 views
Getting newest S3 keys first
I am writing an app that stores (potentially millions of) objects in an S3 bucket. My app will take the most recent object (roughly), process it, and write it back to the same bucket. I need a way of ...
1
vote
1answer
353 views
Issues trying to SSH into a fresh EC2 instance with Paramiko
I'm working on a script that spins up a fresh EC2 instance with boto and uses the Paramiko SSH client to execute remote commands on the instance. For whatever reason, the Paramiko client is unabled to ...
1
vote
1answer
146 views
Can you use multipart upload in boto with strings instead of a file handler?
Is it possible to use the S3 multipart upload with strings instead of a file? The strings i am using are being generated during the upload process and so the size and the exact content is unknown the ...
1
vote
1answer
170 views
How to convert a unicode key name so amazon-s3 will recognize it?
In a django application, I am receiving a POST variable with a name of a file uploaded into amazon s3.
But I receive the key in unicode, and when I pass the key to boto and amazon s3, nothing is ...
1
vote
1answer
139 views
AppEngine: Getting only 1KB when uploading from an fetched URL to S3
I´m trying to upload a file which is fetched from a server. But when the fetched file is bigger than 1MB there will be only a 1KB small file saved at S3. When it´s smaller than 1MB, the file will be ...
1
vote
2answers
373 views
What is wrong with my boto elastic mapreduce jar jobflow parameters?
I am using the boto library to create a job flow in Amazons Elastic MapReduce Webservice (EMR). The following code should create a step:
step2 = JarStep(name='Find similiar items',
...
1
vote
2answers
554 views
upload the image on s3 using boto
Here I have an image url. filename is image url
def upload(filename, content)
conn = S3Connection(aws_access_key, aws_secret_key)
b = Bucket(conn, bucket_name)
k = Key(b)
k.key = ...
1
vote
1answer
463 views
How to compile python code that uses boto to access S3?
I'm trying to compile a simple Python program, that uploads files to an S3 bucket using the boto package, in to a single, redistributable .exe file. I'm open to any compilation method. So far I've ...
1
vote
1answer
273 views
How do I use Avro to process a stream that I cannot seek?
I am using Avro 1.4.0 to read some data out of S3 via the Python avro bindings and the boto S3 library. When I open an avro.datafile.DataFileReader on the file like objects returned by boto it ...
1
vote
1answer
365 views
python s3 using boto, says 'attribute error: 'str' object has no attribute 'connection'
I have a connection that works as I can list buckets, but having issues when trying to add a object.
conn = S3Connection(awskey, awssecret)
key = Key(mybucket)
key.key = p.sku
...
1
vote
3answers
754 views
SimpleDB query performance improvement using boto
I am trying to use the SimpleDB in following way.
I want to keep 48 hrs worth data at anytime into simpledb and query it for different purposes.
Each domain has 1 hr worth data, so at any time ...
1
vote
1answer
570 views
Disable boto logging without modifying the boto files
I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn't seem to help.
...
1
vote
5answers
653 views
How to clone a key in Amazon S3 using Python (and boto)?
I have a file contained in a key in my S3 bucket. I want to create a new key, which will contain the same file. Is it possible to do without downloading that file?
I'm looking for a solution in Python ...
1
vote
1answer
2k views
Cast a class instance to a subclass
I'm using boto to manage some EC2 instances. It provides an Instance class. I'd like to subclass it to meet my particular needs. Since boto provides a query interface to get your instances, I need ...
0
votes
1answer
29 views
boto instance.__dict__['tags']['Name'] output issue
UPDATE:
I did what was suggested below, however, I was still getting an KeyError:'Name' in the output, even though the output was correct.
This was the output:
us-west-1 EC2Connection:
...
0
votes
1answer
18 views
AWS S3 changes in a bucket / prefix using boto
What is the most efficient way (i.e. lower cost :) to check for any changes to a bucket according to a prefix?
In other words, is there a way to check if there were new/updated/deleted files in a ...
0
votes
0answers
14 views
Error in Retriving instance under ELB in Amazon using Boto Python
def get_ap_loadbalancer_servers():
ap_dict = {}
ap_ec2 = ec2_regions[6]
ap_elb = elb_regions[3]
print ap_elb
conn_ap_ec2 = ap_ec2.connect(aws_access_key_id= AWS_ACCESS, ...
0
votes
1answer
22 views
Modify db parameter group in AWS RDS using boto
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, ...
0
votes
1answer
62 views
Why are my Amazon S3 key permissions not sticking?
I'm using the Python library boto to connect to Amazon S3 and create buckets and keys for a static website. My keys and values are dynamically generated, hence why I am doing this programmatically ...
0
votes
2answers
88 views
Django Boto and Upload to S3 is a 400 Bad Request
I am trying to create a super simple file upload script using the boto library, not any others. From what I have tried it feels like it should work, but it doesn't.
The error I am getting now is:
...
0
votes
0answers
48 views
What is the most efficient way of using boto with EC2 for processing on server and fetching results back?
I am toying with EC2 and here is my scenario :
One time : Created an EC2 instance with the necessary key pair.
Daily :
fire up an EC2 instance.
send a file of IDs to EC2 micro-instance from local ...
0
votes
2answers
69 views
How can I handle a boto exception in python?
How can I wrap a boto.storage_uri() call in python so I can handle possible exceptions?