Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Voldemort 0.96 is released
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  17 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Lei Gao  
View profile  
 More options Sep 7 2012, 8:27 pm
From: Lei Gao <gao...@gmail.com>
Date: Fri, 7 Sep 2012 17:27:28 -0700 (PDT)
Local: Fri, Sep 7 2012 8:27 pm
Subject: Voldemort 0.96 is released

Hello everyone,

Voldemort 0.96 is just released. You can find out more details on the
following blog post:
http://data.linkedin.com/blog/2012/09/project-voldemort-096-release

Thanks,

Lei Gao


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Carlos Tasada  
View profile  
 More options Sep 8 2012, 2:43 am
From: Carlos Tasada <ctas...@gmail.com>
Date: Sat, 8 Sep 2012 08:43:56 +0200
Local: Sat, Sep 8 2012 2:43 am
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Lei,

Answering to your questions:

* Besides the features/enhancements mentioned in "Next play" section, what
is the one feature/enhancement you like to see in Voldemort?

Probably the main enhancement that I'm looking for is a better storage
support. BDB is great, but I have the feeling that other alternatives as
Krati or LevelDB are giving better performance.
Other nice to have would be: Maven support and better documentation

* How often would you like to see the development updates from the
Voldemort team - for features/enhancements initiated by the team at
LinkedIn? How to improve the communication between the Voldemort team at
LinkedIn and the open source community?

I really thing that depends of what new code is ready. I would like to see
bug-fix/minor releases as frequently as needed. Big releases can take
longer, lets say 6 to 9 months.

To improve the communication between the Voldemort team and the OS
community I think:
a) The V LinkedIn team should keep the transparency regarding the were the
project is heading to
b) The V LinkedIn team should have some frequently releases
c) The OS community should make its voice heard, with proposals about how
to improve the project
d) The OS community should involve itself with more coding in the project,
helping to improve the documentation and writing about it in blogs,
twitter, ....

My 2 cents.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Vinoth Chandar  
View profile  
 More options Sep 8 2012, 1:33 pm
From: Vinoth Chandar <mail.vinoth.chan...@gmail.com>
Date: Sat, 8 Sep 2012 10:33:53 -0700 (PDT)
Local: Sat, Sep 8 2012 1:33 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Carlos,

I can answer the questions about BDB and storage in general, since I have
been slogging on it for close to 4-5 months now. We did evaluate LevelDB
and it did not go well. There are no proper JNI bindings available.

We are also white boarding ideas about rolling our own storage engine
optimized for flash. But, the problem with these new storage engines is
that they are not really battle tested.  So, this is a touchy subject. We
are actively evaluating other options as well, including good old mysql.

I will do a personal blog on my BDB experiences and post in the groups.

Thanks
Vinoth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mickey Hsieh  
View profile  
 More options Sep 8 2012, 2:05 pm
From: Mickey Hsieh <micke...@gmail.com>
Date: Sat, 8 Sep 2012 11:05:51 -0700
Local: Sat, Sep 8 2012 2:05 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Vinoth,

We had used Voldemort for 3 years and tried different storage engine,
mysql, postgre and bdb. None of them meet our requirement (access 650M
records of value 1 KB size, random read/write, on client side average 5 ms).
So, We wrote storage plug-in  for Voldemort. It had deployed in production
for one and half year and  handles 180M request per day.

Please take a look http://code.google.com/p/cachestore.. It was written for
0.81 and I am in process of porting to 0.95

Thanks,

Mickey

On Sat, Sep 8, 2012 at 10:33 AM, Vinoth Chandar <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Carlos Tasada  
View profile  
 More options Sep 8 2012, 3:49 pm
From: Carlos Tasada <ctas...@gmail.com>
Date: Sat, 8 Sep 2012 21:48:59 +0200
Local: Sat, Sep 8 2012 3:48 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Vinoth,

Looking forward for your comments on BDB. In the next weeks I'm going to go
through testing different engines in Voldemort to find which one adapts
better to our requirements.

Basically we need some kind of storage that can manage multiple writes (avg
100 writes/second and 1000 read/second per node). Right now BDB seems to be
enough, but the usage growth that I'm expecting in the next year may be too
much.

Regards,
Carlos.

On Sat, Sep 8, 2012 at 7:33 PM, Vinoth Chandar <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Carlos Tasada  
View profile  
 More options Sep 8 2012, 3:50 pm
From: Carlos Tasada <ctas...@gmail.com>
Date: Sat, 8 Sep 2012 21:50:09 +0200
Local: Sat, Sep 8 2012 3:50 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Mickey,

Sounds really interesting. I'll take a look!

Maybe would be interesting to have some wiki entry pointing to the
different available storage engines and how to configure them.

Thanks


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mickey Hsieh  
View profile  
 More options Sep 8 2012, 5:54 pm
From: Mickey Hsieh <micke...@gmail.com>
Date: Sat, 8 Sep 2012 14:54:39 -0700
Local: Sat, Sep 8 2012 5:54 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Carlos,

Here is configuration.link
http://code.google.com/p/cachestore/wiki/Configuration

The server.properties configuration  is for each node. Cluster.xml and
stores.xml stay the same.
Let me know if you have any questions.

Mickey


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Otis Gospodnetic  
View profile  
 More options Sep 8 2012, 7:10 pm
From: Otis Gospodnetic <otis.gospodne...@gmail.com>
Date: Sat, 8 Sep 2012 16:10:01 -0700 (PDT)
Local: Sat, Sep 8 2012 7:10 pm
Subject: Re: Voldemort 0.96 is released

Lei - the README on Github still points to Google code at the end.

Otis


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lei Gao  
View profile  
 More options Sep 10 2012, 3:07 pm
From: Lei Gao <gao...@gmail.com>
Date: Mon, 10 Sep 2012 12:07:01 -0700 (PDT)
Local: Mon, Sep 10 2012 3:07 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hey Mickey,

Do you have any design doc on the storage engine you guys built, if it's
okey for you to share it w/ the open source community?

Lei


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lei Gao  
View profile  
 More options Sep 10 2012, 3:15 pm
From: Lei Gao <gao...@gmail.com>
Date: Mon, 10 Sep 2012 12:15:32 -0700 (PDT)
Local: Mon, Sep 10 2012 3:15 pm
Subject: Re: Voldemort 0.96 is released

Otis,

Thanks for letting us know. We will change it once we finish the ticket
migration.

Lei


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lei Gao  
View profile  
 More options Sep 10 2012, 3:18 pm
From: Lei Gao <gao...@gmail.com>
Date: Mon, 10 Sep 2012 12:18:22 -0700 (PDT)
Local: Mon, Sep 10 2012 3:18 pm
Subject: Re: Voldemort 0.96 is released

A quick note: there was an issue with downloading voldemort-0.96.zip. The
problem is fixed now.

Lei


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mickey Hsieh  
View profile  
 More options Sep 10 2012, 3:42 pm
From: Mickey Hsieh <micke...@gmail.com>
Date: Mon, 10 Sep 2012 12:42:50 -0700
Local: Mon, Sep 10 2012 3:42 pm
Subject: Re: [project-voldemort] Voldemort 0.96 is released

Hi Lei,

Yes, this is link for power point presentation
http://code.google.com/p/cachestore/wiki/CacheStorePresentation

If you have any questions, More than happy to connect by Google+ or Skype.

Thanks,

Mickey


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Maarten Koopmans  
View profile  
 More options Sep 11 2012, 7:22 am
From: Maarten Koopmans <maarten.koopm...@gmail.com>
Date: Tue, 11 Sep 2012 13:22:07 +0200
Local: Tues, Sep 11 2012 7:22 am
Subject: Re: [project-voldemort] Voldemort 0.96 is released
I just saw this, awesome. Kudos!

--Maarten


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Maarten Koopmans  
View profile  
 More options Sep 11 2012, 7:29 am
From: Maarten Koopmans <maarten.koopm...@gmail.com>
Date: Tue, 11 Sep 2012 13:29:01 +0200
Local: Tues, Sep 11 2012 7:29 am
Subject: Re: [project-voldemort] Voldemort 0.96 is released
And to answer the questions:

1) I'd really like to see VaaS, it is an idea that I had in mind when
thinking about an alternative. Might be slower, but would be very
useful. Besides, it would mean just more smaller nodes ;-) I'd be
happy to contribute a Lift (see Liftweb.net) based REST interface if
there is interest.

2) Update frequency: 3-6 months would do for a release.

--Maarten

PS: a REST interface might abstract node implementations away,
specifically it would allow other implementations (I was thinking....
Go....) to succeed once the protocol are stable and documented. Idea?

On Tue, Sep 11, 2012 at 1:22 PM, Maarten Koopmans


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Carlos Tasada  
View profile  
 More options Sep 11 2012, 8:10 am
From: Carlos Tasada <ctas...@gmail.com>
Date: Tue, 11 Sep 2012 14:10:02 +0200
Local: Tues, Sep 11 2012 8:10 am
Subject: Re: [project-voldemort] Voldemort 0.96 is released

+1 for the REST interface

On Tue, Sep 11, 2012 at 1:29 PM, Maarten Koopmans <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lei Gao  
View profile  
 More options Sep 11 2012, 2:29 pm
From: Lei Gao <gao...@gmail.com>
Date: Tue, 11 Sep 2012 11:29:54 -0700 (PDT)
Local: Tues, Sep 11 2012 2:29 pm
Subject: Re: Voldemort 0.96 is released

We are considering a Thin Client option for voldemort. However, there are
issues to address for a Thin Client implementation. How thin should it be?
Shall we have connection pooling or connection multiplexing support? What
about serialization?  The only thing for certain, is that routing will be
on the server side.

Lei


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tatu Saloranta  
View profile  
 More options Sep 11 2012, 2:33 pm
From: Tatu Saloranta <tsalora...@gmail.com>
Date: Tue, 11 Sep 2012 11:33:23 -0700
Local: Tues, Sep 11 2012 2:33 pm
Subject: Re: [project-voldemort] Re: Voldemort 0.96 is released

On Tue, Sep 11, 2012 at 11:29 AM, Lei Gao <gao...@gmail.com> wrote:
> We are considering a Thin Client option for voldemort. However, there are
> issues to address for a Thin Client implementation. How thin should it be?
> Shall we have connection pooling or connection multiplexing support? What

If HTTP is used as the underlying protocol, connection reuse and
pooling should work quite nicely (with HTTP 1.1) without extra work?

-+ Tatu +-


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »