Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
IDIEP-9
AuthorPavel Tupitsyn
SponsorPavel Tupitsyn
Created20-NOV-2017
Status
Status
colourGreyGreen
titleDRAFTCOMPLETED


Table of Contents

Info

This page includes low-level protocol documentation that might be outdated and is not maintained. Refer to the official protocol documentation here: https://apacheignite.readme.io/docs/binary-client-protocol

Motivation

Implement thin Ignite client in any programming language / platform using a well-defined binary connectiona protocol.

...

NameType CodeSize (bytes)
byte11
short22
int34
long48
float54
double68
char72
bool81
string94 bytes length + length * 2Utf8 byte count + Utf8 bytes
UUID (Guid)10816
date118 (milliseconds from 1 Jan 1970)
byte array124 bytes length + length
short array134 bytes length + length * 2
int array144 bytes length + length * 4
long array154 bytes length + length * 8
float array164 bytes length + length * 4
double array174 bytes length + length * 8
char array184 bytes length + length * 2
bool array194 bytes length + length
string array204 bytes length + variable length strings, see above. Nulls (byte 101) are allowed.
UUID (Guid) array214 bytes length + length * 816. Nulls (byte 101) are allowed.
date array224 bytes length + length * 8. Nulls (byte 101) are allowed.
object array234 bytes length + 4 bytes element type id + variable size binary objects
map254 bytes length + byte type (1 = HASH_MAP, 2 = LINKED_HASH_MAP) + length * (BinaryObject + BinaryObject)
NULL1010


Complex Objects

Complex objects consist of a 24-byte header and a , set of fields (key-value pairs)binary objects), and a schema (field ids and positions).

Header
byteObject type code, always 103
byteVersion, always 1
shortFlags, USER_TYPE = 1, HAS_SCHEMA = 2
intType id, Java-style hash code of the type name
intHash code, Java-style hash of contents without header, necessary for comparisons
intLength, including header
intSchema Id
intSchema offset from the header start, position where fields end
BinaryObject * nFields
(int + int) * nSchema, fieldId (Java-style hash of field name) + offset (from header start)

 

Message format

Wrapped Binary Objects

One ore more binary objects can be wrapped in an array. This allows reading, storing, passing and writing objects efficiently without understanding their contents, performing simple byte copy.

All cache operations return complex objects inside a wrapper (but not primitives).

byteType code, always 27
intByte array size
n bytesPayload
intOffset of the object within array (array can contain an object graph, this offset points to the root object)

Message format

All messages, request and response, including handshake, start with int message length (excluding these first 4 bytes). E.g. All messages, request and response, including handshake, start with int message length (excluding these first 4 bytes). E.g. empty message would be represented by 4 zero bytes.

...

Operation codes and request ids are omitted everywhere below for brevity.


OP_CACHE_GET = 11000

Retrieves a value from cache by key.

...

Response
BinaryObjectvalue

 

Cache flags

GET and all other cache operations include flags byte.

1KEEP_BINARY

Indicates wether IgniteCache.withKeepBinary should be called on the server side.

This flag has effect only for OP_QUERY_SCAN when Java filter is used.

Other operations ignore the flag and call withKeepBinary anyway.

 

 

OP_CACHE_GET_ALL = 1003OP_CACHE_GET_ALL = 12

Retrieves multiple values from cache given multiple keys. 

...

Response
intresult count
(BinaryObject + BinaryObject) * countResulting key-value pairs. Keys that are not present in the cache are not included.

 

OP_CACHE_PUT = 4 1001

Puts a value with a given key to cache (overwriting existing value if any).

...

Empy response.


OP_CACHE_PUT_ALL = 201004

Puts multiple key-value pairs to cache (overwriting existing associations if any).

...

Empy response.



OP_CACHE_CONTAINS_KEY = 101011

Returns a value indicating whether given key is present in cache.

...

 


OP_CACHE_CONTAINS_KEYS = 111012

Returns a value indicating whether all given keys are present in cache.

...

Response
boolTrue when keys are present, false otherwise

 


OP_CACHE_GET_AND_PUT = 131005

Puts a value with a given key to cache, returning previous value for that key.

...

OP_CACHE_GET_AND_REPLACE = 14 1006

Puts a value with a given key to cache, returning previous value for that key, if and only if there is a value currently mapped for that key.

...

OP_CACHE_GET_AND_REMOVE = 151007

Removes the cache entry with specified key, returning the value. 

...

 

OP_CACHE_PUT_IF_ABSENT = 16 1002

Puts a value with a given key to cache only if the key does not already exist. 

...

OP_CACHE_GET_AND_PUT_IF_ABSENT = 171008

Puts a value with a given key to cache only if the key does not already exist.  

...

Response
BinaryObjectPreviously contained value regardless of whether put happened or not.


 

 

OP_CACHE_REPLACE = 18 1009

Puts a value with a given key to cache only if the key already exists. 

...

OP_CACHE_REPLACE_IF_EQUALS = 19 1010

Puts a value with a given key to cache only if the key already exists and value equals provided value. 

...

Response
boolvalue indicating whether replace happened


 

OP_CACHE_CLEAR = 211013

Clears the cache without notifying listeners or cache writers.

...

Empy response.


 

OP_CACHE_CLEAR_KEY = 221014

 

Clears the cache key without notifying listeners or cache writers.

...

Empy response.

 

 

OP_CACHE_CLEAR_KEYS = 23 1015

 

Clears the cache keys without notifying listeners or cache writers. 

...

Empy response.

 

 

OP_CACHE_REMOVE_KEY = 241016

Removes an entry with a given key, notifying listeners and cache writers.

...

OP_CACHE_REMOVE_IF_EQUALS = 25 1017

Removes an entry with a given key if provided value is equal to actual value, notifying listeners and cache writers. 

...

Response
boolvalue indicating whether remove happened

 

 

OP_CACHE_GET_SIZE = 26 1020

Gets the cache size.  

Request
int
Cache ID: Java-style hash code of the cache name
byteflags
intPeek mode count. Can be 0, which means ALL.
byte * countPeek modes. ALL = 0, NEAR = 1, PRIMARY = 2, BACKUP = 3
Response
longCache size


 

 

OP_CACHE_REMOVE_KEYS = 271018

 

Removes entries with given keys, notifying listeners and cache writers. 

...

Empty response.

 

 


OP_CACHE_REMOVE_ALL = 28 1019

Removes all entries from cache, notifying listeners and cache writers. 

...

OP_CACHE_CREATE_WITH_NAME = 291051 

Creates a cache with a given name. Cache template can be applied if there is '*' in the cache name. Throws exception if a cache with specified name already exists. 

Request
string
Cache name

 


Empty response.

 


 

OP_CACHE_GET_OR_CREATE_WITH_NAME = 301052

 

Creates a cache with a given name. Cache template can be applied if there is '*' in the cache name. Does nothing if the cache exists.

...

Empty response.

 


 

OP_CACHE_DESTROY = 311056

Destroys cache with a given name.

...

Empty response.


 

OP_CACHE_GET_NAMES = 321050

Gets existing cache names.

...

OP_CACHE_GET_CONFIGURATION = 331055

Gets cache configuration

Request
intCache ID: Java-style hash code of the cache name
Response
CacheConfigurationSee below

Cache configuration is sent and received by server in the following format:

name
Response
CacheConfigurationSee below

Cache configuration is sent by server in the following format:

CacheConfiguration
intLength of the configuration, in bytes
intCacheAtomicityMode, TRANSACTIONAL = 0, ATOMIC = 1
intBackups
intCacheMode, LOCAL = 0, REPLICATED = 1, PARTITIONED = 2
boolCopyOnRead
stringDataRegionName
boolEagerTtl
boolStatisticsEnabled
stringGroupName
longDefaultLockTimeout (milliseconds)
intMaxConcurrentAsyncOperations
intMaxQueryIterators
stringName
boolIsOnheapcacheEnabled
intPartitionLossPolicy, READ_ONLY_SAFE = 0, READ_ONLY_ALL = 1, READ_WRITE_SAFE = 2, READ_WRITE_ALL = 3, IGNORE = 4
intQueryDetailMetricsSize
intQueryParallelism
boolReadFromBackup
intRebalanceBatchSize
longRebalanceBatchesPrefetchCount
longRebalanceDelay (milliseconds)
intRebalanceMode, SYNC = 0, ASYNC = 1, NONE = 2
intRebalanceOrder
longRebalanceThrottle (milliseconds)
longRebalanceTimeout (milliseconds)
boolSqlEscapeAll
intSqlIndexInlineMaxSize
stringSqlSchema
intWriteSynchronizationMode, FULL_SYNC = 0, FULL_ASYNC = 1, PRIMARY_SYNC = 2
intCacheKeyConfiguration count
CacheKeyConfiguration * count
CacheKeyConfiguration
stringType name
stringAffinity key field name
intQueryEntity count
QueryEntity * count
QueryEntity
stringKey type name
stringValue type name
stringTable name
stringKey field name
stringValue field name
intQueryField count
QueryField * count
QueryField
stringName
stringType name
boolIs key field
boolIs NotNull constraint field
intAlias count
(string + string) * countField name aliases
intQueryIndex count
QueryIndex * count
QueryIndex
stringIndex name
byteIndex type, SORTED = 0, FULLTEXT = 1, GEOSPATIAL = 2
intInline size
intField count
(string + bool) * countFields (name + IsDescensing)


 

OP_CACHE_CREATE_WITH_CONFIGURATION = 1053

Creates cache with provided configuration. Throws an exception if the name is already in use. 

Request
intLength of the configuration, in bytes
shortNumber of configuration properties
(short + ...) * nConfiguration property data

Any number of configuration properties can be provided. Name is required.

Cache configuration data is specified in key-value form, where key is `short` property id and value is property-specific data. Table below describes all available properties.

 

Property codeProperty typeDescription
2int
CacheConfiguration
intLength of the configuration, in bytes
intCacheAtomicityMode, TRANSACTIONAL = 0, ATOMIC = 1
3intBackups
1intCacheMode, LOCAL = 0, REPLICATED = 1, PARTITIONED = 2
5boolCopyOnRead
100stringDataRegionName
405boolEagerTtl
406boolStatisticsEnabled
400stringGroupNamebool
invalidate402longDefaultLockTimeout (milliseconds)
403intMaxConcurrentAsyncOperations
206intMaxQueryIterators
0stringName
101boolIsOnheapcacheEnabled
404intPartitionLossPolicy, READ_ONLY_SAFE = 0, READ_ONLY_ALL = 1, READ_WRITE_SAFE = 2, READ_WRITE_ALL = 3, IGNORE = 4
202intQueryDetailMetricsSize
201intQueryParallelism
6boolReadFromBackup
303intRebalanceBatchSize
304longRebalanceBatchesPrefetchCount
301longRebalanceDelay (milliseconds)
300intRebalanceMode, SYNC = 0, ASYNC = 1, NONE = 2
305intRebalanceOrder
306longRebalanceThrottle (milliseconds)
302longRebalanceTimeout (milliseconds)
205boolSqlEscapeAll
204intSqlIndexInlineMaxSize
203stringSqlSchema
4intWriteSynchronizationMode, FULL_SYNC = 0, FULL_ASYNC = 1, PRIMARY_SYNC = 2
401int + CacheKeyConfiguration * count

CacheKeyConfiguration

*

count

CacheKeyConfiguration
stringType name
stringAffinity key field name
200int QueryEntity count+ QueryEntity * count
count
QueryEntity
stringKey type name
stringValue type name
stringTable name
stringKey field name
stringValue field name
intQueryField count
QueryField * count
QueryField
stringName
stringType name
boolIs key field
boolIs NotNull constraint field
intAlias count
(string + string) * countField name aliases
intQueryIndex count
QueryIndex * count
QueryIndex
stringIndex name
byteIndex type, SORTED = 0, FULLTEXT = 1, GEOSPATIAL = 2
intInline size
intField
(string + bool) *
count
Fields (name + IsDescensing)

 

OP_CACHE_CREATE_WITH_CONFIGURATION = 34 

Creates cache with provided configuration. Throws an exception if the name is already in use. 

(string + bool) * countFields (name + IsDescensing
Request
CacheConfigurationCache config (see format above
)




Empty response.


 

OP_CACHE_GET_OR_CREATE_WITH_CONFIGURATION = 35 1054

Creates cache with provided configuration. Does nothing if the name is already in use.  

Request
CacheConfigurationCache config (see format above)

Same request format as above. Empty response.


 

 

OP_QUERY_SQL = 36 2002

Performs SQL query. 

Request
intCache ID: Java-style hash code of the cache name
stringQuery entity type name
stringSQL
intArgument count
BinaryObject * countArguments
boolDistributed joins
boolLocal query
boolReplicated only
intCursor page size
longTimeout (milliseconds)

...

OP_QUERY_SQL_CURSOR_GET_PAGE = 37 2003

Retrieves next SQL query cursor page by cursor id from OP_QUERY_SQL. 

...

Response
longCursor id
intRow count
(Object + Object) * countCache entries, key + value
bool

Indicates whether more results are available to be fetched with OP_QUERY_SQL_CURSOR_GET_PAGE.

When true, query cursor is closed automatically.

 


OP_RESOURCE_CLOSE = 90

Closes a resource, such as query cursor.

...

Empty response.

 

OP_QUERY_SQL_FIELDS = 382004

Performs SQL fields query

...

OP_QUERY_SQL_FIELDS_CURSOR_GET_PAGE = 392005

Retrieves next query page.

...

OP_GET_BINARY_TYPE_NAME = 23000

Gets the platform-specific full binary type name by id. For example, .NET and Java can map to the same type Foo, but classes will be Apache.Ignite.Foo in .NET and org.apache.ignite.Foo in Java.

...

Response
stringBinary type name


OP_GET_BINARY_TYPE = 33002

Gets the binary type information by id.

Response
Request
intType idid
Response
bool

False: binary type does not exist, response end.

True: binary type exists, response as follows.

intType id
stringType name
stringAffinity key field name
intBinaryField count
BinaryField * count
BinaryField
stringField name
intType id
intField id
boolIs enum
int (if isEnum)Enum field count
(string + int) * count (if isEnum)Enum values
intSchema count
(int + int[](schema id) + int (field count) + int (field id) * n) * countBinary schemas, set of (schemaId + fieldIds) pairs

...


OP_REGISTER_BINARY_TYPE_NAME = 53001

Registers the platform-specific full binary type name by id. For example, .NET and Java can map to the same type Foo, but classes will be Apache.Ignite.Foo in .NET and org.apache.ignite.Foo in Java.

...

Empty response.



OP_PUT_BINARY_TYPE = 63003

Registers binary type information in cluster.

Request
intType id
stringType name
stringAffinity key field name
intBinaryField count
BinaryField * count
BinaryField
stringField name
intType id
intField id
boolIs enum
int (if isEnum)Enum field count
(string + int) * count (if isEnum)Enum values
intSchema count
(int (schema id) + int (field count) + int [](field id) * n) * countBinary schemas, set of (schemaId + fieldIds) pairs

 Empty response.

 


OP_QUERY_SCAN = 72000

Performs scan query.

Request
intCache ID: Java-style hash code of the cache name
BinaryObjectFilter object
byte (if filter object is not null)Filter platform, JAVA = 1, DOTNET = 2, CPP = 3
intCursor page size
intPartition to query (negative to query entire cache)
boolLocal flag
Response
longCursor id
)
boolLocal flag
Response
longCursor id
intRow count for the first page
(Object + Object) * countCache entries, key + value

bool

Indicates whether more results are available to be fetched with OP_QUERY_SCAN_CURSOR_GET_PAGE

 


OP_QUERY_SCAN_CURSOR_GET_PAGE = 82001

Retrieves next SQL query cursor page by cursor id from OP_QUERY_SCAN. 

...

Code Block
var socket = openSocket("127.0.0.1:10800");
 
// Message length
socket.writeInt(8);
 
// Handshake operation
socket.writeByte(1);
 
// Protocol version 1.0.0
socket.writeShort(1);
socket.writeShort(0);
socket.writeShort(0);
 
// Client type: thin client
socket.writeByte(2);
 
// Receive result
var resLen = socket.readInt();
assert resLen == 1;  // Success message length is 1
var res = socket.readByte();
assert res == 1;  // Success code
// END HANDSHAKE
 
 
// Perform OP_CACHE_GET
// Message length
socket.writeInt(20)
 
// Op code = OP_CACHE_GET
socket.writeShort(11000);
 
// Request id (can be anything; does not matter for simple blocking socket IO)
var reqId = 1;
socket.writeLong(reqId);
 
// Cache id
var cacheName = "myCache";
var cacheId = javaHashCode(cacheName);
socket.writeInt(cacheId);
 
// Flags = none
socket.writeByte(0);
 
// Cache key 
socket.writeByte(3);  // Integer type code
socket.writeInt(1);  // Our cache value
 
// Read result
var len = socket.readInt();
assert len == 17;   // requestId (8) + status code (4) + int object (1 + 4)
 
var resReqId = socket.readLong();
assert reqId == resReqId;
 
var statusCode = socket.readInt();
assert statusCode == 0;  // Success
 
var resTypeCode = socket.readByte();
assert restypeCode == 3;  // Integer
 
var res = socket.readInt();
print(res);  // Resulting cache value

...

Tickets

See "thin client" component in JIRA

...