1. Download Protobuf for the target language of choice, build it, and install it.
  2. Download the latest pre-built release of Geode and install it.
  3. Start a Geode locator, start a Geode server, and create a region with the following gfsh commands:

    Start Server
    gfsh>start locator --name=locator --bind-address=localhost --port=10334
    ...
    gfsh>start server --name=server --bind-address=localhost --server-port=40404 --J=-Dgeode.feature-protobuf-protocol=true
    ...
    gfsh>create region --name=SampleData --type=REPLICATE
    Member | Status
    ------ | ----------------------------------------
    server | Region "/SampleData" created on "server"
  4. Extract the Protobuf message definition artifacts from the Geode release: $GEODE_HOME/tools/ClientProtocol/geode-protobuf-definitions-<version-number>.zip.
  5. Generate the language bindings from the message definitions using the relevant target language Protobuf library using the appropriate Protobuf utility such as protoc. Example:

    $PROTOBUF/bin/protoc -I=$PROTOBUF/include/ -I=`pwd` --java_out=`pwd` v1/*.proto
  6. Create your application that connects a TCP socket to the server running on the host localhost on port 40404.
  7. Within your application, build a NewConnectionHandshake message, write it in a delimited fashion to the socket. 

    handshakeRequest
    NewConnectionHandshake{
        majorVersion: 1
    	minorVersion: 1
    }
  8. Read the handshake response message in a delimited fashion from your socket. Note that your implementation language may not provide an API to explicitly read and/or write delimited messages. These messages are prepended with the message length encoded as a varint value. If you do not have an appropriate API, you may need to read and decode this value first, in order to determine how much data to read from the network to receive a complete message.
    Also be aware that messages may not arrive in one packet and may require multiple read() calls to receive all data from the network.  The response should match the following:

    handshakeResponse
    HandshakeAcknowledgement {
        serverMajorVersion: 1
        serverMinorVersion: 1
        handshakePassed: true
    }
  9. To exercise the protocol to interact with the server, within your application build a put request message to put the value bar for the key foo, write it in a delimited fashion to the socket, and read the put response message in a delimited fashion from it.

    putRequest
    message {
        request {
             putRequest {
                 regionName: "SampleData"
                 entry {
                 key {
                     stringResult: "foo"
                 }
                 value {
                     stringResult: "bar"
                 }
            }
        }
    }
    putResponse
    message {
        response {
            putResponse {}
        }
    }


    If an error occurs, your message will contain an ErrorResponse:

    errorResponse
    message {
        response {
            errorResponse {
                errorCode: 2100
                message: "Region passed by client did not exist: FOO"
            }
        }
    }



  10. Outside your application, verify that the put request message took effect with the following gfsh command:

    Verify Put
    gfsh>get --region=SampleData --key=foo
    Result      : true
    Key Class   : java.lang.String
    Key         : foo
    Value Class : java.lang.String
    Value       : bar

 

  • No labels

1 Comment

  1. 11. Do the same with all the other message types.