Re: Riak Search release date

2010-05-21 Thread Mark Phillips
Hey All,

As promised, here is the blog post on Riak Search.

http://blog.basho.com/2010/05/21/riak-search/

Have a great weekend.

Mark

Community Manager
Basho Technologies
wiki.basho.com
twitter.com/pharkmillups

___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Riak Recap for 5/20

2010-05-21 Thread Mark Phillips
Afternoon, Evening, Morning -

Just three short but worthwhile questions from #riak for today's Recap.

Bon week-end à tous -

Mark

Community Manager
Basho Technologies
wiki.basho.com
twitter.com/pharkmillups

--

Riak Recap for 5/20


1) Q --- Anyone know how i could query Riak directly with ExtJS, is
there a lib out there or can i use the jquery one? (from BBHoss via
#riak)

A --- There isn't a specialized lib but you could probably use our
js client if you were OK with also taking jquery as a dependency.

   JS client info is here --->
http://wiki.basho.com/display/RIAK/Client+Libraries#ClientLibraries-Javascript

2) Q --- Can riak data be encrypted on disk? Maybe an option with
innostore? (from bkaney via #riak)

A --- You could use an encrypted disk, or encrypt the data as it
goes in but Riak doesn't provide any built-in.

3) Q --- Is there a best practice for querying a riak cluster, like
round-robin or something? (from howboutjoe via #riak)

A --- Any node in the cluster can respond to any request so a
round-robin distribution would work.

___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: Riak Search release date

2010-05-21 Thread Senthilkumar Peelikkampatti
Thanks for the link. It definitely good news for Riak community. 

On May 21, 2010, at 11:02 AM, Mark Phillips wrote:

> Hey All,
> 
> As promised, here is the blog post on Riak Search.
> 
> http://blog.basho.com/2010/05/21/riak-search/
> 
> Have a great weekend.
> 
> Mark
> 
> Community Manager
> Basho Technologies
> wiki.basho.com
> twitter.com/pharkmillups


___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: Riak Search release date

2010-05-21 Thread Eric Gaumer
On Fri, May 21, 2010 at 12:02 PM, Mark Phillips  wrote:

> Hey All,
>
> As promised, here is the blog post on Riak Search.
>
> http://blog.basho.com/2010/05/21/riak-search/
>
>
Nice. Thanks for the update Mark.

It sounds like you're using Java in places (e.g., Lucene analyzers). Is that
assumption correct? I saw John mention work of an Erlang NIF to run an
embedded JVM. Probably unrelated but one has to wonder.

-Eric
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Bucket creation and deletion

2010-05-21 Thread Rajiv M Ranganath

Hi there,

Is it default behavior in Riak (thru' the HTTP interface) that everytime 
a GET request is issued, a bucket automatically gets created if one does 
not exist?


Thru' the web interface, I basically did,

curl -v http://127.0.0.1:8091/riak/abcd1
curl -v http://127.0.0.1:8091/riak/abcd2
curl -v http://127.0.0.1:8091/riak/abcd3
curl -v http://127.0.0.1:8091/riak/abcd4

and then, via the erlang APIs, the output of Client:list_buckets() showed,

(d...@127.0.0.1)78> Client:list_buckets().
{ok,[<<"test1">>,<<"groceries">>,<<"abcd">>,<<"abcd4">>,
 <<"abcd3">>,<<"abcd2">>,<<"abcd1">>]}

A related question - Once the buckets are created, is there anyway to 
delete them?


Best,
Rajiv


___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: Bucket creation and deletion

2010-05-21 Thread Adam Hunter
Hey,

Buckets act as a namespace only if you do not specify any properties for them.  
They come into existence on demand, so there is currently no meaningful way to 
delete them.  I *heard* Basho was considering using DELETE to a bucket to empty 
its contents.

- Adam


On May 21, 2010, at 6:24 PM, Rajiv M Ranganath wrote:

> Hi there,
> 
> Is it default behavior in Riak (thru' the HTTP interface) that everytime a 
> GET request is issued, a bucket automatically gets created if one does not 
> exist?
> 
> Thru' the web interface, I basically did,
> 
> curl -v http://127.0.0.1:8091/riak/abcd1
> curl -v http://127.0.0.1:8091/riak/abcd2
> curl -v http://127.0.0.1:8091/riak/abcd3
> curl -v http://127.0.0.1:8091/riak/abcd4
> 
> and then, via the erlang APIs, the output of Client:list_buckets() showed,
> 
> (d...@127.0.0.1)78> Client:list_buckets().
> {ok,[<<"test1">>,<<"groceries">>,<<"abcd">>,<<"abcd4">>,
> <<"abcd3">>,<<"abcd2">>,<<"abcd1">>]}
> 
> A related question - Once the buckets are created, is there anyway to delete 
> them?
> 
> Best,
> Rajiv
> 
> 
> ___
> riak-users mailing list
> riak-users@lists.basho.com
> http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com