tree: 5fb09771b778c01b3cae6f0ff0b5c554a1c4a3bf [path history] [tgz]
  1. CMakeLists.txt
  2. main.cpp
  3. Order.cpp
  4. Order.hpp
  5. README.md
  6. startserver.sh
  7. stopserver.sh
examples/cpp/remotequery/README.md

Remote Query Example

This is a simple example showing how to create and execute a remote query.

Prerequisites

  • An installation of Apache Geode.
  • Apache Geode Native, built and installed.
  • Apache Geode Native examples, built and installed.
  • A GEODE_HOME environment variable set to the location of the Apache Geode installation.
  • GEODE_HOME/bin in the execution path.

Running

  1. Set the current directory to the remotequery directory in your example workspace.
$ cd workspace/examples/cpp/remotequery
  1. Run the startserver.sh script to start the Geode server, create a region, and populate the region with sample data.
$ sh ./startserver.sh
/Users/user/geode/bin/gfsh

(1) Executing - start locator --name=locator
...
(2) Executing - start server --name=server
...
(3) Executing - create region --name=custom_orders --type=PARTITION

Member | Status
------ | -------------------------------------------
server | Region "/custom_orders" created on "server"
  1. Execute remotequery:
$ build/remotequery
Create orders
Storing orders in the region
Getting the orders from the region
The following orders have a quantity greater than 30:
OrderID: 2 Product Name: product y Quantity: 37
OrderID: 4 Product Name: product z Quantity: 102
OrderID: 6 Product Name: product z Quantity: 42
  1. Stop the server
$ sh ./stopserver.sh
/Users/user/geode/bin/gfsh
(1) Executing - connect
...
(2) Executing - stop server --name=server
...
(3) Executing - stop locator --name=locator
....