-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read snapshots? [JIRA: RIAK-2321] #115
Comments
Added 2.1 milestone, subject to further planning review. |
Looks like https://github.com/basho/eleveldb/compare/arg-snapshot-2 is implementing it. I wonder if anyone tried it. |
I would like to relaunch the discussion here. What I would like is having a way to read concurrently from writing. So eventually read could be done in another process. Is there a way to do that right now? Does the iterator provides a snapshot view of the db? |
Yes. Iterator is a snapshot view. Iterator, once constructed, can Seek to closest key as well as traverse Next and Prev. _[posted via JIRA by Matthew Von-Maszewski]_ |
can the iterator be passed to another erlang process ? |
Erlang process on same machine, yes. Linux process no. _[posted via JIRA by Matthew Von-Maszewski]_ |
Yes I meant , opening an iterator and use the ref in another process that will eventually close it. would it work? |
Reading the code it seems that read snapshots [1] are not supported. Did I miss something? Do you plan to add such support?
[1] http://leveldb.googlecode.com/svn/trunk/doc/index.html
The text was updated successfully, but these errors were encountered: