Re: building a new email-like inbox service with cassandra

2011-11-17 Thread Edward Capriolo
On Thu, Nov 17, 2011 at 9:17 AM, Dotan N.  wrote:

> Hi all,
> New to cassandra, i'm about to embrak on building a scalable user inbox
> service on top of cassandra.
> I've done the preliminary googling and got some more info on bluerunner
> (IBM's project on the subject),
> and now looking for more information in this specific topic.
>
> If anyone can point me to researches/articles that would nudge me in the
> right direction i'd be tremendously thankful!
>
> Thanks!
>
> --
> Dotan, @jondot 
>
>
Why would you want to do inbox search with cassandra? (Just Kidding after
all that was it's first use case at Facebook). I would say your best best
is to research solandra or those doing full text search in Cassandra.


Re: building a new email-like inbox service with cassandra

2011-11-17 Thread Dotan N.
I'm sorry if I misrepresented the domain. it is not inbox search, but
implementation of inbox. that is: write messages for users, get messages
for a user, get unread messages for a user, mark messages as read for a
user.
basically this is it.
although (and due to) the use cases are simple we're aiming at cassandra
due to the large amount of users we expect.

--
Dotan, @jondot 



On Thu, Nov 17, 2011 at 5:26 PM, Edward Capriolo wrote:

>
>
> On Thu, Nov 17, 2011 at 9:17 AM, Dotan N.  wrote:
>
>> Hi all,
>> New to cassandra, i'm about to embrak on building a scalable user inbox
>> service on top of cassandra.
>> I've done the preliminary googling and got some more info on bluerunner
>> (IBM's project on the subject),
>> and now looking for more information in this specific topic.
>>
>> If anyone can point me to researches/articles that would nudge me in the
>> right direction i'd be tremendously thankful!
>>
>> Thanks!
>>
>> --
>> Dotan, @jondot 
>>
>>
> Why would you want to do inbox search with cassandra? (Just Kidding after
> all that was it's first use case at Facebook). I would say your best best
> is to research solandra or those doing full text search in Cassandra.
>


Re: building a new email-like inbox service with cassandra

2011-11-17 Thread Rustam Aliyev

Hi Dotan,

We have already built something similar and were planning to open source 
it. It will be available under http://www.elasticinbox.com/.


We haven't followed exactly IBM's paper, we believe our Cassandra model 
design is more robust. It's written in Java and provides LMTP and REST 
interfaces. ElasticInbox also stores original messages outside of the 
Cassandra, in the blob store.


Let me know if you are interested, I will need some time to do cleanup.

Regards,
Rustam.

On 17/11/2011 14:17, Dotan N. wrote:

Hi all,
New to cassandra, i'm about to embrak on building a scalable user 
inbox service on top of cassandra.
I've done the preliminary googling and got some more info on 
bluerunner (IBM's project on the subject),

and now looking for more information in this specific topic.

If anyone can point me to researches/articles that would nudge me in 
the right direction i'd be tremendously thankful!


Thanks!

--
Dotan, @jondot 



Re: building a new email-like inbox service with cassandra

2011-11-17 Thread Norman Maurer
I would be very interested in this. I wrote a prototype for JAMES which
uses cassandra to store emails and provide them via IMAP and POP3 so it
would be nice to see your impl.

thanks
norman

Am Donnerstag, 17. November 2011 schrieb Rustam Aliyev :
> Hi Dotan,
>
> We have already built something similar and were planning to open source
it. It will be available under http://www.elasticinbox.com/.
>
> We haven't followed exactly IBM's paper, we believe our Cassandra model
design is more robust. It's written in Java and provides LMTP and REST
interfaces. ElasticInbox also stores original messages outside of the
Cassandra, in the blob store.
>
> Let me know if you are interested, I will need some time to do cleanup.
>
> Regards,
> Rustam.
>
> On 17/11/2011 14:17, Dotan N. wrote:
>
> Hi all,
> New to cassandra, i'm about to embrak on building a scalable user inbox
service on top of cassandra.
> I've done the preliminary googling and got some more info on bluerunner
(IBM's project on the subject),
> and now looking for more information in this specific topic.
> If anyone can point me to researches/articles that would nudge me in the
right direction i'd be tremendously thankful!
> Thanks!
> --
> Dotan, @jondot
>


Re: building a new email-like inbox service with cassandra

2011-11-17 Thread Andrey V. Panov
I'm also interesting in your project and will be glad to follow you on
twitter if I can.

On 18 November 2011 00:37, Rustam Aliyev  wrote:

>  Hi Dotan,
>
> We have already built something similar and were planning to open source
> it. It will be available under http://www.elasticinbox.com/.
>
> We haven't followed exactly IBM's paper, we believe our Cassandra model
> design is more robust. It's written in Java and provides LMTP and REST
> interfaces. ElasticInbox also stores original messages outside of the
> Cassandra, in the blob store.
>
> Let me know if you are interested, I will need some time to do cleanup.
>
> Regards,
> Rustam.
>
> On 17/11/2011 14:17, Dotan N. wrote:
>
> Hi all,
> New to cassandra, i'm about to embrak on building a scalable user inbox
> service on top of cassandra.
> I've done the preliminary googling and got some more info on bluerunner
> (IBM's project on the subject),
> and now looking for more information in this specific topic.
>
>  If anyone can point me to researches/articles that would nudge me in the
> right direction i'd be tremendously thankful!
>
>  Thanks!
>
> --
> Dotan, @jondot 
>
>


Re: building a new email-like inbox service with cassandra

2011-11-18 Thread Rustam Aliyev
It's pleasing to see interest out there. We'll try to do some cleanups 
and push it to github this weekend.


You can follow us on twitter: @elasticinbox

Regards,
Rustam.

On Fri Nov 18 01:42:01 2011, Andrey V. Panov wrote:
I'm also interesting in your project and will be glad to follow you on 
twitter if I can.


On 18 November 2011 00:37, Rustam Aliyev > wrote:


Hi Dotan,

We have already built something similar and were planning to open
source it. It will be available under http://www.elasticinbox.com/.

We haven't followed exactly IBM's paper, we believe our Cassandra
model design is more robust. It's written in Java and provides
LMTP and REST interfaces. ElasticInbox also stores original
messages outside of the Cassandra, in the blob store.

Let me know if you are interested, I will need some time to do
cleanup.

Regards,
Rustam.

On 17/11/2011 14:17, Dotan N. wrote:

Hi all,
New to cassandra, i'm about to embrak on building a scalable user
inbox service on top of cassandra.
I've done the preliminary googling and got some more info on
bluerunner (IBM's project on the subject),
and now looking for more information in this specific topic.

If anyone can point me to researches/articles that would nudge me
in the right direction i'd be tremendously thankful!

Thanks!

-- 
Dotan, @jondot 






Re: building a new email-like inbox service with cassandra

2011-11-18 Thread Dotan N.
Thanks!!
--
Dotan, @jondot 



On Fri, Nov 18, 2011 at 2:48 PM, Rustam Aliyev  wrote:

> It's pleasing to see interest out there. We'll try to do some cleanups and
> push it to github this weekend.
>
> You can follow us on twitter: @elasticinbox
>
> Regards,
> Rustam.
>
>
> On Fri Nov 18 01:42:01 2011, Andrey V. Panov wrote:
>
>> I'm also interesting in your project and will be glad to follow you on
>> twitter if I can.
>>
>> On 18 November 2011 00:37, Rustam Aliyev > rus...@code.az>> wrote:
>>
>>Hi Dotan,
>>
>>We have already built something similar and were planning to open
>>source it. It will be available under http://www.elasticinbox.com/.
>>
>>We haven't followed exactly IBM's paper, we believe our Cassandra
>>model design is more robust. It's written in Java and provides
>>LMTP and REST interfaces. ElasticInbox also stores original
>>messages outside of the Cassandra, in the blob store.
>>
>>Let me know if you are interested, I will need some time to do
>>cleanup.
>>
>>Regards,
>>Rustam.
>>
>>On 17/11/2011 14:17, Dotan N. wrote:
>>
>>>Hi all,
>>>New to cassandra, i'm about to embrak on building a scalable user
>>>inbox service on top of cassandra.
>>>I've done the preliminary googling and got some more info on
>>>bluerunner (IBM's project on the subject),
>>>and now looking for more information in this specific topic.
>>>
>>>If anyone can point me to researches/articles that would nudge me
>>>in the right direction i'd be tremendously thankful!
>>>
>>>Thanks!
>>>
>>>-- Dotan, @jondot 
>>>
>>>
>>


Re: building a new email-like inbox service with cassandra

2011-12-06 Thread Rustam Aliyev

Hi,

Just updating this thread:

We've pushed initial version to github today. You can find sources, 
binary package and some information here: 
https://github.com/elasticinbox/elasticinbox/wiki


Your feedback is most welcome. We can discuss it further on 
elasticin...@googlegroups.com mail list.


Regards,
Rustam.

On 18/11/2011 13:08, Dotan N. wrote:

Thanks!!
--
Dotan, @jondot 



On Fri, Nov 18, 2011 at 2:48 PM, Rustam Aliyev > wrote:


It's pleasing to see interest out there. We'll try to do some
cleanups and push it to github this weekend.

You can follow us on twitter: @elasticinbox

Regards,
Rustam.


On Fri Nov 18 01:42:01 2011 , Andrey V. Panov wrote:

I'm also interesting in your project and will be glad to
follow you on twitter if I can.

On 18 November 2011  00:37, Rustam Aliyev
mailto:rus...@code.az> >> wrote:

   Hi Dotan,

   We have already built something similar and were planning
to open
   source it. It will be available under
http://www.elasticinbox.com/.

   We haven't followed exactly IBM's paper, we believe our
Cassandra
   model design is more robust. It's written in Java and provides
   LMTP and REST interfaces. ElasticInbox also stores original
   messages outside of the Cassandra, in the blob store.

   Let me know if you are interested, I will need some time to do
   cleanup.

   Regards,
   Rustam.

   On 17/11/2011 14:17, Dotan N. wrote:

   Hi all,
   New to cassandra, i'm about to embrak on building a
scalable user
   inbox service on top of cassandra.
   I've done the preliminary googling and got some more
info on
   bluerunner (IBM's project on the subject),
   and now looking for more information in this specific
topic.

   If anyone can point me to researches/articles that
would nudge me
   in the right direction i'd be tremendously thankful!

   Thanks!

   -- Dotan, @jondot 





Re: building a new email-like inbox service with cassandra

2011-12-07 Thread Dotan N.
Yep, i've been looking at it almost as you were pushing it :)
I'll keep looking, thanks!!
--
Dotan, @jondot 



On Wed, Dec 7, 2011 at 3:26 AM, Rustam Aliyev  wrote:

>  Hi,
>
> Just updating this thread:
>
> We've pushed initial version to github today. You can find sources, binary
> package and some information here:
> https://github.com/elasticinbox/elasticinbox/wiki
>
> Your feedback is most welcome. We can discuss it further on
> elasticin...@googlegroups.com mail list.
>
> Regards,
> Rustam.
>
> On 18/11/2011 13:08, Dotan N. wrote:
>
> Thanks!!
> --
> Dotan, @jondot 
>
>
>
> On Fri, Nov 18, 2011 at 2:48 PM, Rustam Aliyev  wrote:
>
>> It's pleasing to see interest out there. We'll try to do some cleanups
>> and push it to github this weekend.
>>
>> You can follow us on twitter: @elasticinbox
>>
>> Regards,
>> Rustam.
>>
>>
>> On Fri Nov 18 01:42:01 2011, Andrey V. Panov wrote:
>>
>>>  I'm also interesting in your project and will be glad to follow you on
>>> twitter if I can.
>>>
>>>  On 18 November 2011 00:37, Rustam Aliyev >> rus...@code.az>> wrote:
>>>
>>>Hi Dotan,
>>>
>>>We have already built something similar and were planning to open
>>>source it. It will be available under http://www.elasticinbox.com/.
>>>
>>>We haven't followed exactly IBM's paper, we believe our Cassandra
>>>model design is more robust. It's written in Java and provides
>>>LMTP and REST interfaces. ElasticInbox also stores original
>>>messages outside of the Cassandra, in the blob store.
>>>
>>>Let me know if you are interested, I will need some time to do
>>>cleanup.
>>>
>>>Regards,
>>>Rustam.
>>>
>>>On 17/11/2011 14:17, Dotan N. wrote:
>>>
 Hi all,
New to cassandra, i'm about to embrak on building a scalable user
inbox service on top of cassandra.
I've done the preliminary googling and got some more info on
bluerunner (IBM's project on the subject),
and now looking for more information in this specific topic.

If anyone can point me to researches/articles that would nudge me
in the right direction i'd be tremendously thankful!

Thanks!

 -- Dotan, @jondot 


>>>
>