Displaying 20 results from an estimated 4000 matches similar to: "Amazon S3 recipes"
2010 Mar 22
1
Amazon S3 and ffmpeg
So we are setting up a file upload system for our web app. Files will
be uploaded to Amazon S3, and videos need to be converted to ffmpeg.
We have had problems with uploading of large files timing out, and it
was suggested to us to use http://github.com/elcgit/s3-swf-upload-plugin
for uploading directly to S3. This would fix the timeout, but then
could I use ffmpeg to convert the file once it is
2007 Aug 24
7
Problem restarting client service ssh in client
Hello,
I want a simple operation in a puppet node like restarting the ssh
service if it was stopped. My site.pp is simple as this:
import "services/*"
node default {
include ssh
}
The services directory as a ssh.pp :
class ssh {
service { ssh:
ensure => running,
subscribe => File["/etc/ssh/sshd_config"]
}
}
I''ve stopped the ssh service in the
2015 Nov 20
15
[RFC PATCH 0/9] vhost-nvme: new qemu nvme backend using nvme target
Hi,
This is the first attempt to add a new qemu nvme backend using
in-kernel nvme target.
Most code are ported from qemu-nvme and also borrow code from
Hannes Reinecke's rts-megasas.
It's similar as vhost-scsi, but doesn't use virtio.
The advantage is guest can run unmodified NVMe driver.
So guest can be any OS that has a NVMe driver.
The goal is to get as good performance as
2015 Nov 20
15
[RFC PATCH 0/9] vhost-nvme: new qemu nvme backend using nvme target
Hi,
This is the first attempt to add a new qemu nvme backend using
in-kernel nvme target.
Most code are ported from qemu-nvme and also borrow code from
Hannes Reinecke's rts-megasas.
It's similar as vhost-scsi, but doesn't use virtio.
The advantage is guest can run unmodified NVMe driver.
So guest can be any OS that has a NVMe driver.
The goal is to get as good performance as
2014 Apr 08
0
alternative for Amazon SQS for ruby
I need to use ElasticMQ in my rails project. But I dont see any
references which have used elasticmq with rails projects. I know that
Amazon SQS queuing system can be implemented with the help of right_aws
gem(an adapter which is used to connect to Amazon SQS). So I am
searching for a similar kind of gem/adapter which will support for both
ElasticMQ as well as AmazonSQS. I tried ElasticMQ with
2009 Jul 27
2
Simple resource manager?
I need to serialize computing job requests for two different multicore
machines, and in some near future, for a cluster. I have worked with
SGE but it requires NFS and other administrative steps, plus it seems
a bit overkill for my needs. I guess some simpler queue managing
engine may have been developed, possibly over SSH. Any pointers? TIA.
--
Eduardo Grosclaude
Universidad Nacional del
2011 Dec 23
2
missing value where TRUE/FALSE needed
Merry Xmas to all,
I am writing a function and curiously this runs sometimes on one data set
and fails on another and i cannot figure out why.
Any help much appreciated.
If i run the code below with
data <- iris[ ,1:4]
The code runs fine, but if i run on a large dataset i get the following
error (showing data structures as matrix is large)
> str(cluster.data)
num [1:9985, 1:811] 0 0 0 0
2007 Mar 31
1
Setting a call to be recorded before Xfer?
I need to allow the company operator to decide whether to record a call.
(Car dealership that needs to coach salespeople). They don't want to record
every sales call, just for the purposes of coaching certain employees on an
ad hoc basis.
The situation is:
a. Call comes in on PSTN PRI
b. Call is routed to operator in dialplan
c. Operator ascertains that its a sales call for a salesman in
2007 Mar 09
1
RE: Coaching in asterisk
BTW. We only use Asterisk for a few functions. Everything else is done
on an extenal application controlling Asterisk through AMI.
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Wai Wu
Sent: Friday, March 09, 2007 12:22 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE:
2015 Mar 07
2
AWS/EC2 server selection
Hi Jeff
Are you aware of any challenges of hosting it on AWS? It will help me to
work out alternate plan. Is there any recommendation? Should I split it
to multiple instances and balance traffic across multiple small server
instances? I can use Kamailio to balance traffic.
I see many posts referring to AWS deployment. Please help me to choose
AWS server instance.
*Thanks & Regards,*
2007 Mar 08
0
Re: Coaching in asterisk
NVWhisper.
Justin
------------------------------
Date: Thu, 08 Mar 2007 16:25:28 -0500
From: Wai Wu <wkwu@calltrol.com>
Subject: [asterisk-users] Coaching in asterisk
Is
there a way to setup a conference where party A can coach another
Party B, at the same time, all other parties cannot hear party A? In
order words, partis A and B can hear every one, and party A can only be
heard by
2010 Aug 25
5
Looking for an image (R 64-bit on Linux 64-bit) on Amazon EC2
I have found an existing image on Amazon EC2 including R. But unfortunately,
it is 32-bit
R on 32-bit Linux.
Does anybody know if there exists an mage (R 64-bit on Linux 64-bit) on
Amazon EC2?
Or how can I install 64-bit R on my own Linux instance there?
Thanks.
--
View this message in context:
2006 Mar 16
1
rails3 - example of Amazon S3 on rails
Hi
I''ve done a small rails application for file management on Amazon''s new
service, the storage webservice ''Amazon S3'' (at this time just upload, list
and delete methods are implemented). Maybe someone find it useful as
example.
The source code and a little more information can be found here:
http://caffo.backpackit.com/pub/502395
Best regards
Rodrigo Franco
2008 Sep 17
1
Stubbing Paperclip calls to Amazon S3 (for Rspec)
Would anyone happen to know how to stub a call to S3 from Paperclip?
I''ve searched every where and no one seems to have posted anything about
this. I''ve done very little in the way of spec''ing dependencies on
external services, so any ideas on how to do this with Paperclip & S3
would be most appreciated. I''m happy with stubbing out Thinking Sphinx -
would
2011 Dec 19
1
Using Amazon S3 storage for Maildir ?
I wonder if anyone has tried using an IMAP server with Amazon S3 as a
backend. There would be many factors to consider (speed, etc).
However, moreso, I don't know that Maildir(++) would support multiple
folders that might be linked into the cloud. For example, higher-I/O
local incoming mail is on disk, some folders archived on S3. Could be
easily done by simply creating another
2012 Sep 04
0
Add expire header for images stored in amazon s3
Hello everyone Good Morning,
I done adding expire header by put the following code into my product
model.
:s3_headers => { ''Cache-Control'' => ''max-age=315576000'', ''Expires'' =>
10.years.from_now.httpdate },
But its work only while i add new product and image.
Already i have 100 of products and images. How can i add expire
2008 Jun 13
0
How to force download with Amazon S3
I''m using amazon s3 to offer users large file downloads to save on
bandwidth. I''ve found the file with the s3 object and can send the url
to access the file, but I want to force the download instead of pulling
it up in the browser. These are large video files (.mov). Is there a
better way to do this?
I know that in a normal situation you would set the response.headers,
but
2009 Feb 26
0
header expiry on google charts and amazon s3
Hey all
I am using google charts in my app and even Amazon s3. So i m getting
some jpg component from these sites..
can ne one tell me how to set header expiry for those components that r
coming from other servers like google charts and amazon.
i m using nginx server.
thanks
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this
2012 Nov 27
1
multiple file upload to amazon s3 using jquery file upload rails app
Hi All,
I am a newbie. I am
following http://railscasts.com/episodes/383-uploading-to-amazon-s3?view=comments
to upload file.
I am able to upload single file with carrierwave.
But I got 403(Forbidden) error when I try to upload multiple files using
jquery file upload.
When I try to upload single/multiple file I get alert box saying failed to
upload and in console it says "Failed to
2013 May 23
1
[Bug 701] PPPoE masqeuraded connection reset when talking to Amazon S3
https://bugzilla.netfilter.org/show_bug.cgi?id=701
Phil Oester <netfilter at linuxace.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |netfilter at linuxace.com
Resolution|