Skip to main content
Version: 2.0.0

Reading Objects

You can think of reads in Riak as analogous to HTTP GET requests. You specify a bucket type, bucket, and key, and Riak either returns the object that's stored there---including its siblings (more on that later)---or it returns not found (the equivalent of an HTTP 404 Object Not Found).

Here is the basic command form for retrieving a specific key from a bucket:

GET /types/<type>/buckets/<bucket>/keys/<key>

Here is an example of a read performed on the key rufus in the bucket dogs, which bears the bucket type animals:

// In the Java client, it is best to specify a bucket type/bucket/key
// Location object that can be used as a reference for further
// operations, as in the example below:
Location myKey = new Location(new Namespace("animals", "dogs"), "rufus");

Read Parameters

ParameterDefaultDescription
rquorumHow many replicas need to agree when retrieving an existing object before the write
pr0How many vnodes must respond for a read to be deemed successful
notfound_oktrueIf set to true, if the first vnode to respond doesn't have a copy of the object, Riak will deem the failure authoritative and immediately return a notfound error to the client

Riak also accepts many query parameters, including r for setting the R-value for GET requests (R values describe how many replicas need to agree when retrieving an existing object in order to return a successful response).

Here is an example of attempting a read with r set to 3:

// Using the "myKey" location specified above:
FetchValue fetch = new FetchValue.Builder(myKey)
.withOption(FetchValue.Option.R, new Quorum(3))
.build();
FetchValue.Response response = client.execute(fetch);
RiakObject obj = response.getValue(RiakObject.class);
System.out.println(obj.getValue());

If you're using HTTP, you will most often see the following response codes:

  • 200 OK
  • 300 Multiple Choices
  • 304 Not Modified

The most common error code:

  • 404 Not Found
Note

If you're using a Riak client instead of HTTP, these responses will vary a great deal, so make sure to check the documentation for your specific client.

No Object Stored

At the moment, there's no object stored in the location where we just attempted a read, which means that we'll get the following response:

java.lang.NullPointerException