After you design and partition your database schema (Chapter 4, Designing the Database Schema), and after you design the necessary stored procedures (Chapter 5, Designing Stored Procedures to Access the Database), you are ready to write the client application logic. The client code contains all the business-specific logic required for the application, including business rule validation and keeping track of constraints such as proper data ranges for arguments entered in stored procedure calls.
The three steps to using VoltDB from a client application are:
Creating a connection to the database
Calling stored procedures
Closing the client connection
The following sections explain how to perform these functions using the standard VoltDB Java client interface. (See VoltDB Java Client API.) The VoltDB Java Client is a thread-safe class library that provides runtime access to VoltDB databases and functions.
It is possible to call VoltDB stored procedures from programming languages other than Java. However, reading this chapter is still recommended to understand the process for invoking and interpreting the results of a VoltDB stored procedure. See Chapter 8, Using VoltDB with Other Programming Languages for more information about using VoltDB from client applications written in other languages.
The first task for the calling program is to create a connection to the VoltDB database. You do this with the following steps:
org.voltdb.client.Client client = null; ClientConfig config = null; try { config = new ClientConfig("advent","xyzzy"); client = ClientFactory.createClient(config); client.createConnection("myserver.xyz.net"); } catch (java.io.IOException e) { e.printStackTrace(); System.exit(-1); }
Define the configuration for your connections. In its simplest form, the | |
Create an instance of the VoltDB | |
Call the client.createConnection("myserver.xyz.net",21211); If security is enabled and the username and password in the |
When you are done with the connection, you should make sure your application calls the close()
method to clean up any memory allocated for the connection. See Section 6.4, “Closing the Connection”.
You can create the connection to any of the nodes in the database cluster and your stored procedure will be routed appropriately. In fact, you can create connections to multiple nodes on the server and your subsequent requests will be distributed to the various connections. For example, the following Java code creates the client object and then connects to all three nodes of the cluster. In this case, security is not enabled so no client configuration is needed:
try { client = ClientFactory.createClient(); client.createConnection("server1.xyz.net"); client.createConnection("server2.xyz.net"); client.createConnection("server3.xyz.net"); } catch (java.io.IOException e) { e.printStackTrace(); System.exit(-1); }
Creating multiple connections has three major benefits:
Multiple connections distribute the stored procedure requests around the cluster, avoiding a bottleneck where all requests are queued through a single host. This is particularly important when using asynchronous procedure calls or multiple clients.
For Java applications, the VoltDB Java client library uses client affinity. That is, the client knows which server to send each request to based on the partitioning, thereby eliminating unnecessary network hops.
Finally, if a server fails for any reason, when using K-safety the client can continue to submit requests through connections to the remaining nodes. This avoids a single point of failure between client and database cluster. See Chapter 10, Availability for more.
An easier way to create connections to all of the database servers is to use the "smart" or topology-aware client. By setting the Java client to be aware of the cluster topology, you only need to connect to one server and the client automatically connects to all of the servers in the cluster.
An additional advantage of the smart client is that it will automatically reconnect whenever the topology changes. That is, if a server fails and then rejoins the cluster, or new nodes are added to the cluster, the client will automatically create connections to the newly available servers.
You enable auto-connecting when you initialize the client object by setting the configuration option before creating the client object. For example:
org.voltdb.client.Client client = null;
ClientConfig config = new ClientConfig("","");
config.setTopologyChangeAware(true);
try {
client = ClientFactory.createClient(config);
client.createConnection("server1.xyz.net");
. . .
When setTopologyChangeAware()
is set to true, the client library will automatically connect to
all servers in the cluster and adjust its connections any time the cluster topology changes.