- Berkeley DB Reference Guide:
- RPC Client/Server
|
|
Client program
Changing a Berkeley DB application to remotely call a server program requires
only a few changes on the client side:
- The client application must create and use a Berkeley DB environment; that
is, it cannot simply call the db_create function, but must
first call the db_env_create function to create an environment
in which the database will live.
- The client application must call db_env_create using the
DB_RPCCLIENT flag.
- The client application must call the additional DB_ENV method
DB_ENV->set_rpc_server to specify the database server. This call must
be made before opening the environment with the DB_ENV->open
call.
The client application provides a few pieces of information to Berkeley DB as
part of the DB_ENV->set_rpc_server call:
- A client structure. Applications wanting to control their own client
structures can pass one in, and Berkeley DB will use it to connect to the
server. Most applications will not make use of this argument and should pass
in NULL. If this argument is used, the hostname and client timeout
arguments are ignored. Applications using this mechanism must
create their client structures using DB_RPC_SERVERPROG as the program
number and DB_RPC_SERVERVERS as the version number.
- The hostname of the server. The hostname format is not specified by
Berkeley DB, but must be in a format acceptable to the local network support
-- specifically, the RPC clnt_create interface.
- The client
timeout. This is the number of seconds the client will wait for the
server to respond to its requests. A default is used if this value is
zero.
- The server timeout. This is the number of seconds the server will allow
client resources to remain idle before releasing those resources. The
resources this applies to are transactions and cursors because those
objects hold locks; and if a client dies, the server needs to release
those resources in a timely manner. This value is really a hint to the
server because the server may choose to override this value with its
own.
The only other item of interest to the client is the home directory
that is given to the DB_ENV->open call.
The server is started with a list of allowed home directories.
The client must use one of those names (where a name is the last
component of the home directory). This allows the pathname structure
on the server to change without client applications needing to be
aware of it.
Once the DB_ENV->set_rpc_server call has been made, the client is
connected to the server, and all subsequent Berkeley DB
operations will be forwarded to the server. The client does not need to
be otherwise aware that it is using a database server rather than
accessing the database locally.
It is important to realize that the client portion of the Berkeley DB library
acts as a simple conduit, forwarding Berkeley DB interface arguments to the
server without interpretation. This has two important implications.
First, all pathnames must be specified relative to the server. For
example, the home directory and other configuration information passed
by the application when creating its environment or databases must be
pathnames for the server, not the client system. In addition, because
there is no logical bundling of operations at the server, performance
is usually significantly less than when Berkeley DB is embedded within the
client's address space, even if the RPC is to a local address.
Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.