Discussion:
[leveldb] leveldb as an event store
Vachagan Balayan
2015-09-18 10:04:32 UTC
Permalink
I'm considering to use leveldb as an event store, all entries insterted
into database are blobs (encoded with protobuf),
and database will be append only (nothing is removed ever), but i cant
really see how do we scale its capacity?
for example if almost all capacity of the box that runs the db is consumed,
i need to add some other node to it and dynamically get new data
persisted on new box and have no downtime on database while scaling...

Is this possible with leveldb?
--
You received this message because you are subscribed to the Google Groups "leveldb" group.
To unsubscribe from this group and stop receiving emails from it, send an email to leveldb+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Julian Gruber
2015-09-22 20:05:53 UTC
Permalink
For sure it's possible, but you'll need to build it. You can see leveldb as
a database building block, not a done solution.
Post by Vachagan Balayan
I'm considering to use leveldb as an event store, all entries insterted
into database are blobs (encoded with protobuf),
and database will be append only (nothing is removed ever), but i cant
really see how do we scale its capacity?
for example if almost all capacity of the box that runs the db is
consumed, i need to add some other node to it and dynamically get new data
persisted on new box and have no downtime on database while scaling...
Is this possible with leveldb?
--
You received this message because you are subscribed to the Google Groups "leveldb" group.
To unsubscribe from this group and stop receiving emails from it, send an email to leveldb+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...