[ceph-users] blind buckets

2016-07-26 Thread Tyler Bischel
Hi there, We are looking at using Ceph (Jewel) for a use case that is very write heavy strictly as an object store. We've been working with Rados Gateway because we can easily integrate with existing S3 libraries... but we will never be doing any of the bucket listing operations. I am concerned

Re: [ceph-users] blind buckets

2016-07-26 Thread Andrey Komarov
Hi, You can modify zone like this: "placement_pools": [ { "key": "default-placement", "val": { "index_pool": “test.rgw.buckets.index", "data_pool": “test.rgw.buckets.data", "data_extra_pool": “test.buckets.non-ec"

Re: [ceph-users] blind buckets

2016-07-28 Thread Yehuda Sadeh-Weinraub
In order to use indexless (blind) buckets, you need to create a new placement target, and then set the placement target's index_type param to 1. Yehuda On Tue, Jul 26, 2016 at 10:30 AM, Tyler Bischel wrote: > Hi there, > We are looking at using Ceph (Jewel) for a use case that is very write >

Re: [ceph-users] blind buckets

2016-07-28 Thread Tyler Bischel
Can I not update an existing placement target's index_type? I had tried to update the default pool's index type: radosgw-admin zone get --rgw-zone=default > default-zone.json #replace index_type:0 to index_type:1 in the default zone file, under the default-placement entry of the placement_pools

Re: [ceph-users] blind buckets

2016-07-28 Thread Yehuda Sadeh-Weinraub
On Thu, Jul 28, 2016 at 12:11 PM, Tyler Bischel wrote: > Can I not update an existing placement target's index_type? I had tried to > update the default pool's index type: > > radosgw-admin zone get --rgw-zone=default > default-zone.json > > #replace index_type:0 to index_type:1 in the default zo

Re: [ceph-users] blind buckets

2016-07-29 Thread Tyler Bischel
Thanks for the help guys. Just an FYI, we had to restart the RGW nodes before the configuration changes were respected, but we were able to change the default placement target, and new buckets were indexless. On Thu, Jul 28, 2016 at 1:08 PM, Yehuda Sadeh-Weinraub wrote: > On Thu, Jul 28, 2016 a