Skip to main content
Version: 2.2.2

Protocol Buffers API

This is an overview of the operations you can perform using the Protocol Buffers Client (PBC) interface to Riak, and can be used as a guide for developing a PBC-compliant Riak client.

Protocol

Riak listens on a TCP port (8087 by default) for incoming connections. Once connected, the client can send a stream of requests on the same connection.

Each operation consists of a request message and one or more response messages. Messages are all encoded the same way, consisting of:

  • 32-bit length of message code + Protocol Buffers message in network order
  • 8-bit message code to identify the Protocol Buffers message
  • N bytes of Protocol Buffers-encoded message

Example

00 00 00 07 09 0A 01 62 12 01 6B |----Len---|MC|----Message-----|

Len = 0x07 Message Code (MC) = 0x09 = RpbGetReq RpbGetReq Message = 0x0A 0x01 0x62 0x12 0x01 0x6B

Decoded Message: bucket: "b" key: "k"

Message Codes

CodeMessage
0RpbErrorResp
1RpbPingReq
2RpbPingResp
3RpbGetClientIdReq
4RpbGetClientIdResp
5RpbSetClientIdReq
6RpbSetClientIdResp
7RpbGetServerInfoReq
8RpbGetServerInfoResp
9RpbGetReq
10RpbGetResp
11RpbPutReq
12RpbPutResp
13RpbDelReq
14RpbDelResp
15RpbListBucketsReq
16RpbListBucketsResp
17RpbListKeysReq
18RpbListKeysResp
19RpbGetBucketReq
20RpbGetBucketResp
21RpbSetBucketReq
22RpbSetBucketResp
23RpbMapRedReq
24RpbMapRedResp
25RpbIndexReq
26RpbIndexResp
27RpbSearchQueryReq
28RbpSearchQueryResp
29RpbResetBucketReq
30RpbResetBucketResp
31RpbGetBucketTypeReq
32RpbSetBucketTypeResp
40RpbCSBucketReq
41RpbCSUpdateReq
50RpbCounterUpdateReq
51RpbCounterUpdateResp
52RpbCounterGetReq
53RpbCounterGetResp
54RpbYokozunaIndexGetReq
55RpbYokozunaIndexGetResp
56RpbYokozunaIndexPutReq
57RpbYokozunaIndexPutResp
58RpbYokozunaSchemaGetReq
59RpbYokozunaSchemaGetResp
60RpbYokozunaSchemaPutReq
80DtFetchReq
81DtFetchResp
82DtUpdateReq
83DtUpdateResp
253RpbAuthReq
254RpbAuthResp
255RpbStartTls
Message Definitions

All Protocol Buffers messages are defined in the riak.proto and other .proto files in the /src directory of the RiakPB project.

Error Response

If the request does not result in an error, Riak will return one of a variety of response messages, e.g. RpbGetResp or RpbPutResp, depending on which request message is sent.

If the server experiences an error processing a request, however, it will return an RpbErrorResp message instead of the response expected for the given request (e.g. RbpGetResp is the expected response to RbpGetReq). Error messages contain an error string and an error code, like this:

message RpbErrorResp {
required bytes errmsg = 1;
required uint32 errcode = 2;
}

Values

  • errmsg --- A string representation of what went wrong
  • errcode --- A numeric code. Currently, only RIAKC_ERR_GENERAL=1 is defined.

Bucket Operations

Object/Key Operations

Query Operations

Server Operations

Bucket Type Operations

Data Type Operations

Yokozuna Operations