Re: Riak CS: write ACL without delete permission

2014-03-28 Thread Jochen Delabie
Hi Reid, You're right, the way I use this with S3 is by using a custom policy where get and put only is allowed: { "Statement": [ { "Sid": "Stmt1356692141310", "Action": [ "s3:AbortMultipartUpload", "s3:GetBucketAcl", "s3:GetBucketLocation", "s3:G

Re: Lowlevel Access to RiakCS objects?

2014-03-28 Thread Tom Santero
Hi Martin, The short answer is no, Riak CS does not expose lower level access to the blocks that are replicated to Riak. That said, I'm curious, is anything preventing you from segmenting your videos and writing a playlist + the segements to Riak CS? This would allow you to seed varnish, while at

Two instances on the same server

2014-03-28 Thread Massimiliano Ciancio
Hello list, I'm trying to start two different instances of riak on the same server in order to have a test instance. I replicated the /riak/rel/riak dir into two dfferent dirs (prod and test) and changed node name and ports. To start/stop a node I use full path "//riak/rel/prod/bin/riak st

Re: Riak CS: write ACL without delete permission

2014-03-28 Thread Reid Draper
For those following along at home too, ACLs and bucket policies are distinct access controls in S3. Riak CS has only limited support for bucket policies at the moment. Reid On Mar 28, 2014, at 5:04 AM, Jochen Delabie wrote: > Hi Reid, > > You're right, the way I use this with S3 is by using

Re: Lowlevel Access to RiakCS objects?

2014-03-28 Thread Martin Alpers
Thanks for your answer, Tom. I wanted to avoid the overhead of one segemting layers whose objects are segmented by yet another layer, but come to think of it, since Riak can store chunks up to 1MB in size, why not use Riak directly? And I wanted to avoid additional complexity of additional code

Re: Two instances on the same server

2014-03-28 Thread Massimiliano Ciancio
I'm really sorry! It's fine: it wasn't Riak confusing instances. It was me!! I exchanged the config files :(( Sorry Massimiliano 2014-03-28 18:17 GMT+01:00 Massimiliano Ciancio : > Hello list, > I'm trying to start two different instances of riak on the same server > in order to have a test instan

Re: Two instances on the same server

2014-03-28 Thread Kelly McLaughlin
Try using the devrel Makefile target. It builds a set of releases under dev/ that are able to run on the same machine.  Kelly On March 28, 2014 at 11:19:09 AM, Massimiliano Ciancio (massimili...@ciancio.net) wrote: Hello list, I'm trying to start two different instances of riak on the same se

Re: Two instances on the same server

2014-03-28 Thread Brian Sparrow
Might also check out riak-manage[1], a tool for quickly setting up and managing clusters. I use it on my Mac Pro to manage local clusters. -Brian [1] https://github.com/basho/riak-manage -- Brian Sparrow Developer Advocate Basho Technologies Sent with Sparrow (http://www.sparrowmailapp.com/?

Re: Lowlevel Access to RiakCS objects?

2014-03-28 Thread Brian Akins
I know of at least one case that uses riak cs for live HLS video at scale, which is somewhat similar to your use case, so this is not uncharted territory. While technically it's possible you can design and implement something more efficient than CS, that may be effort better spent in other areas