Project

General

Profile

Actions

How to use the hub cr » History » Revision 6

« Previous | Revision 6/16 (diff) | Next »
Henning Blohm, 20.07.2013 15:51


How to use the Hub Component Repository (beta)

Principles

(See also Z2V2.1 is out – working on v2.2)

By default, a Z2 installation (a z2 Home) accesses the version controlled storage that holds the system definition directly to download and prepare (and compile) modules as needed. This is the underpinnings of the system centric, pull-deployment based approach. In some situations however, it is not desirable to have source code on production servers at any time. This may be for compliance reasons or for fear of risking theft of intellectual property.

This is where the HubCR comes in. As a principle, all modules, all component resources, essentially anything the Z2 runtime knows about is served by component repository implementations. There are implementations for Subversion, Git, file system folders, development workspaces and now, the latest addition, for another Z2 server that provides a consolidated, source-code free and pre-compiled view onto production resources (the HubCR provider).

So, instead of having production systems read and process source code directly, an intermediate node provides a semantically equivalent but pre-processed view onto the system definition:

The way the HubCR does that is by maintaining a pre-compiled and source-code stripped snapshot of the original production configuration. At the same time, the HubCR is just a regular z2 Home that runs the production config.

To the real production nodes (on the right in the diagram) however, the HubCR presents everything but the HubCR and other remote component repositories.

As a result, production systems can be completely separated from the source level details of the system definition. They don’t even see authentication details to the configuration store – only those necessary to access the HubCR service. At the same time, the pull semantics are preserved and updates can flow in and will be distributed consistently as for any other Z2-based system.

How to configure and use

The HubCR consists of three parts: For once, there is a repository client implementation that is now part of the Z2 core (necessarily so that bootstrapping from a HubCR is possible). Secondly there is a z2-base level module that implements the serving side and thirdly there are some important rules that allow to implement the HubCR in a system that can be used in the default development flow as well.

The latter is a crucial cool feature: Just because a production system makes use of the HubCR, from where we do have access to the configuration source (i.e. the left side of the picture), we can still supply, implement and verify hot fixes without going through the HubCR.

Consuming from a Hub

In order to connect a z2 <home> to a HubCR, you simply configure a repository to read from as in all the other cases. In case of the HubCR however, the home would only read from one repository (whereas the HubCR serving side may read from many). A HubCR consuming declaration of com.zfabrik.boot.config/hubRepository.properties (see in particular How to create your own system to learn about repository topology) may look like this:

com.zfabrik.systemStates.participation=com.zfabrik.boot.main/bootrepo_up
#
# hub stored component repository
#
com.zfabrik.component.type=com.zfabrik.hubcr
#
# The URL to the source repo. Typically this is of the form http://<server>:<port>/z_hubcr
#
hubcr.url=http://myhub:8080/z_hubcr
#
# Connection timeout in ms for connecting to the providing side (defaults to 10000)
#
hubcr.timeout=10000
#
# The remote user to use (optional but required by default)
#    
hubcr.user=hubcraccess
hubcr.password=secret
#
# The priority of the repository (defaults to 500)
#
hubcr.priority=500

Updated by Henning Blohm almost 11 years ago · 6 revisions