caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] PlasmaFS, PlasmaKV, and MapReduce, version 0.5.1
@ 2011-11-25 17:46 Gerd Stolpmann
  2011-11-26  4:06 ` Goswin von Brederlow
  0 siblings, 1 reply; 3+ messages in thread
From: Gerd Stolpmann @ 2011-11-25 17:46 UTC (permalink / raw)
  To: caml-list; +Cc: plasma-list

Hi,

I've just released Plasma-0.5.1, fixing a possible lock-up.

General information about Plasma:

Plasma consists now of three parts, namely PlasmaFS, PlasmaKV, and Plasma
Map/Reduce:

      * PlasmaFS is a distributed replicating filesystem. Unlike other
        such filesystems, it is transactional and exhibits transactions
        to the user. Also, it implements almost all of what is known as
        POSIX semantics, and it is mountable.
      * PlasmaKV is a key/value database on top of PlasmaFS. It is
        designed for ultra-high read workloads, and offers interesting
        properties borrowed from PlasmaFS (e.g. replication and ACID
        transactions).
      * Plasma Map/reduce implements a variant of the popular
        data processing scheme.

All pieces of software are bundled together in one download. The
project page with further links is

http://projects.camlcity.org/projects/plasma.html

There is now also a homepage at

http://plasma.camlcity.org

THIS IS NOW A BETA RELEASE! I'm searching for testers. Whoever has
access to a cluster please check Plasma out!

Plasma is installable via GODI for Ocaml 3.12.

For discussions on specifics of Plasma there is a separate mailing list:

https://godirepo.camlcity.org/mailman/listinfo/plasma-list

Gerd
-- 
Gerd Stolpmann, Darmstadt, Germany    gerd@gerd-stolpmann.de
Creator of GODI and camlcity.org.
Contact details:        http://www.camlcity.org/contact.html
Company homepage:       http://www.gerd-stolpmann.de
*** Searching for new projects! Need consulting for system
*** programming in Ocaml? Gerd Stolpmann can help you.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Caml-list] PlasmaFS, PlasmaKV, and MapReduce, version 0.5.1
  2011-11-25 17:46 [Caml-list] PlasmaFS, PlasmaKV, and MapReduce, version 0.5.1 Gerd Stolpmann
@ 2011-11-26  4:06 ` Goswin von Brederlow
  2011-11-26  9:46   ` Gerd Stolpmann
  0 siblings, 1 reply; 3+ messages in thread
From: Goswin von Brederlow @ 2011-11-26  4:06 UTC (permalink / raw)
  To: Gerd Stolpmann; +Cc: caml-list, plasma-list

"Gerd Stolpmann" <info@gerd-stolpmann.de> writes:

> Hi,
>
> I've just released Plasma-0.5.1, fixing a possible lock-up.
>
> General information about Plasma:
>
> Plasma consists now of three parts, namely PlasmaFS, PlasmaKV, and Plasma
> Map/Reduce:
>
>       * PlasmaFS is a distributed replicating filesystem. Unlike other
>         such filesystems, it is transactional and exhibits transactions
>         to the user. Also, it implements almost all of what is known as
>         POSIX semantics, and it is mountable.
>       * PlasmaKV is a key/value database on top of PlasmaFS. It is
>         designed for ultra-high read workloads, and offers interesting
>         properties borrowed from PlasmaFS (e.g. replication and ACID
>         transactions).
>       * Plasma Map/reduce implements a variant of the popular
>         data processing scheme.
>
> All pieces of software are bundled together in one download. The
> project page with further links is
>
> http://projects.camlcity.org/projects/plasma.html
>
> There is now also a homepage at
>
> http://plasma.camlcity.org
>
> THIS IS NOW A BETA RELEASE! I'm searching for testers. Whoever has
> access to a cluster please check Plasma out!
>
> Plasma is installable via GODI for Ocaml 3.12.
>
> For discussions on specifics of Plasma there is a separate mailing list:
>
> https://godirepo.camlcity.org/mailman/listinfo/plasma-list
>
> Gerd

Any plans to support fuse so the filesystem can be mounted locally?

MfG
        Goswin

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Caml-list] PlasmaFS, PlasmaKV, and MapReduce, version 0.5.1
  2011-11-26  4:06 ` Goswin von Brederlow
@ 2011-11-26  9:46   ` Gerd Stolpmann
  0 siblings, 0 replies; 3+ messages in thread
From: Gerd Stolpmann @ 2011-11-26  9:46 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: caml-list, plasma-list


> "Gerd Stolpmann" <info@gerd-stolpmann.de> writes:
>
>> Hi,
>>
>> I've just released Plasma-0.5.1, fixing a possible lock-up.
>>
>> General information about Plasma:
>>
>> Plasma consists now of three parts, namely PlasmaFS, PlasmaKV, and
>> Plasma
>> Map/Reduce:
>>
>>       * PlasmaFS is a distributed replicating filesystem. Unlike other
>>         such filesystems, it is transactional and exhibits transactions
>>         to the user. Also, it implements almost all of what is known as
>>         POSIX semantics, and it is mountable.
>>       * PlasmaKV is a key/value database on top of PlasmaFS. It is
>>         designed for ultra-high read workloads, and offers interesting
>>         properties borrowed from PlasmaFS (e.g. replication and ACID
>>         transactions).
>>       * Plasma Map/reduce implements a variant of the popular
>>         data processing scheme.
>>
>> All pieces of software are bundled together in one download. The
>> project page with further links is
>>
>> http://projects.camlcity.org/projects/plasma.html
>>
>> There is now also a homepage at
>>
>> http://plasma.camlcity.org
>>
>> THIS IS NOW A BETA RELEASE! I'm searching for testers. Whoever has
>> access to a cluster please check Plasma out!
>>
>> Plasma is installable via GODI for Ocaml 3.12.
>>
>> For discussions on specifics of Plasma there is a separate mailing list:
>>
>> https://godirepo.camlcity.org/mailman/listinfo/plasma-list
>>
>> Gerd
>
> Any plans to support fuse so the filesystem can be mounted locally?

You can already do this via NFS (V3). This is only a mild additional
overhead, and the Linux NFS client supports bigger blocksizes than fuse
(1M vs. 128K).

Fuse is on my list but low priority for now.

Gerd

> MfG
>         Goswin
>
>


-- 
Gerd Stolpmann, Darmstadt, Germany    gerd@gerd-stolpmann.de
Creator of GODI and camlcity.org.
Contact details:        http://www.camlcity.org/contact.html
Company homepage:       http://www.gerd-stolpmann.de
*** Searching for new projects! Need consulting for system
*** programming in Ocaml? Gerd Stolpmann can help you.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-11-26  9:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-25 17:46 [Caml-list] PlasmaFS, PlasmaKV, and MapReduce, version 0.5.1 Gerd Stolpmann
2011-11-26  4:06 ` Goswin von Brederlow
2011-11-26  9:46   ` Gerd Stolpmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).