Project

General

Profile

DB Worker Node Add-on » History » Revision 12

Revision 11 (Udo Offermann, 08.04.2013 16:52) → Revision 12/14 (Henning Blohm, 20.06.2013 09:03)

h1. DB Worker Node Add-on 

 The *DB Worker Node Add-on* is a all-in-one-system z2 installation comprising the z2-Environment plus a database (at the moment "H2 Database Engine":http://www.h2database.com/ and "Apache Derby":http://db.apache.org/ are supported). The purpose is to have a quick and easy system setup like development or demonstration environments. Of course one can use it also for productive systems if H2 or Derby fulfills your requirements. 

 The add-on provides wrapper components that launches the actual database during the z2 bootstrap. Since the wrapper is launched on a separate z2 worker node (i.e. the DB Worker node), node) the database runs in server mode from the web applications point of view (which are running on the web worker node). So in short, all worker nodes connect to the database worker node like they would connect to any other database server. 

  

 h2. Using the DB Worker Node Add-on 

 At first one have to tell the z2-Environment where to find the DB Worker Node Add-on. Usually this is done in the _environment_ module which is used to describe the overall system setup. The file @dbWorkerAddon.properties@ attached to this page is a z2 repository component for this add-on which you can directly add to the _environment_. 

 Secondly At second the DB worker must be launched in addition to the web worker (and possibly other worker nodes, like maybe also a batch job processing job worker). The so called _home layout_ is defined inside @environment/home.properties@. Attached to this page is a modified @home.properties@ that launches the DB worker and afterwards the web worker, simply replace the existing @home.properties@ file by this attached version.  

 Alternatively you can change the _home layout_ manually: 

 @home.properties:@ 
 <pre> 
 com.zfabrik.component.type=com.zfabrik.homeLayout 
 home.workers = com.zfabrik.db.environment/h2Worker, environment/webWorker 
 </pre> 

 Note that @com.zfabrik.db.environment/h2Worker@ precedes @environment/webWorker@ so that the DB is up and running before the web worker is started.  
 To use Derby instead of H2 you simply replace the @home.workers@ by 

 <pre> 
 home.workers = com.zfabrik.db.environment/derbyWorker, environment/webWorker 
 </pre> 

 The DB worker node is fully transparent to the web applications so there is no need for further changes. As usual you have to make sure that the applications on the web worker are using the corresponding JDBC drivers and database client settings (connection string, user and password etc). Also using migration tools like flyway or other automatic schema generation feature as provided by hibernate for example can be used as usual.