![]() |
Project
|
The Conditions and Calibration DataBase provides a REST API which can be used to list, store and retrieve objects.
The CCDB API class (CcdbApi
) is implemented using libcurl and gives C++ API access to the CCDB via its REST api. The API can be also used to create a snapshot of conditions objects on the local disc and retrieve the objects therefrom. This can be useful in circumstances of reduced or no network connectivity.
There are currently 2 different kinds of store/retrieve functions, which we expect to unify in the immediate future:
storeAsTFile/retrieveFromTFile
API serializing a TObject
in a ROOT TFile
.storeAsTFileAny<T>/retrieveFromTFileAny<T>
API allowing to handle any type T having a ROOT dictionary. We encourage to use this API by default.There is a test central CCDB at http://ccdb-test.cern.ch:8080. Feel free to use it. If you prefer to use a local instance, you can follow the instructions here.
If you access the CCDB with a web browser, add /browse
at the end of the URL to have a user readable interface. Moreover, using /browse/?report=true
will provide details on the number of files and the size of the folders (e.g. http://ccdb-test.cern.ch:8080/browse/?report=true).
A simple mechanism is offered that allows caching CCDB objects on disc. In this mode, the CcdbApi will look if an object is already located on the disc. If not, the request is made to the server and the response automically saved locally. If yes, we just take the local file. The feature can be activated by exporting a shell variable export ALICEO2_CCDB_LOCALCACHE=$PWD/.ccdb
which is set to a path on the disc where objects should be put. This mechanism is useful to reduce calls to the server in case multiple processes need the same objects (and the object can be regarded as valid for all requests).
Note that this mechanism also allows for local development and test cycles. Say, some algorithm needs access to object /Foo/Bar/
. Then it suffices to put the ROOT file containing the ccdb-object as filename snapshot.root
inside the /Foo/Bar/
directory structure, inside the ALICEO2_CCDB_LOCALCACHE
folder (so, something like /home/user/.ccdb/Foo/Bar/snapshot.root
). Then testing can proceed without actually having to upload the CCDB object to a server.
A basic higher level class BasicCCDBManager
is offered for convenient access to the CCDB from user code. This class
get
function to retrieve objects.The class was written for the use-case of transport MC simulation. Typical usage should be like
By default loaded object are cached in the BasicCCDBManager
and owned by it, therefore user should not delete retrieved objects. If the query is done for the object which is already in the cache, its pointer is returned instead of loading again the object from the CCDB server, unless the validity range of the cached object does not match to requested timestamp. In case user wants to enforce a fresh copy loading, the cache for particular CCDB path can be cleaned by invoking mgr.clear(<path>)
. One can also reset whole cache using mgr.clear()
.
Uncached mode can be imposed by invoking mgr.setCaching(false)
, in which case every query will retrieve a new copy of object from the server and the user should take care himself of deleting retrieved objects to avoid memory leaks.
Upper and lower limits on the object creation time can be set by mgr.setCreatedNotAfter(upper_limit_timestamp)
and mgr.setCreatedNotBefore(lower_limit_timestamp)
, it specifies the fields "If-Not-After" and "If-Not-Before" when retrieving an object from CCDB. This feature is useful to avoid using newer objects if the CCDB is updated in parallel to the task execution.
In cached mode, the manager can check that local objects are still valid by requiring mgr.setLocalObjectValidityChecking(true)
, in this case a CCDB query is performed only if the cached object is no longer valid.
The reason for using a TFile to store the data in the CCDB is because it has the advantage of keeping the data together with the ROOT streamer info in the same place and because it makes it easy to open objects directly from a ROOT session. The streamers enable class schema evolution.
A few prototypic command line tools are offered. These can be used in scriptable generic workflows and facilitate the following tasks:
Upload and annotate a generic C++ object serialized in a ROOT file
~~~{.sh} o2-ccdb-upload -f myRootFile.root –key histogram1 –path /Detector1/QA/ –meta "Description=Foo;Author=Person1;Uploader=Person2" ~~~ This will upload the object serialized in myRootFile.root
under the key histogram1
. Object will be put to the CCDB path /Detector1/QA
. For full list of options see o2-ccdb-upload --help
.
Download a CCDB object to a local ROOT file (including its meta information)
~~~{.sh} o2-ccdb-downloadccdbfile –path /Detector1/QA/ –dest /tmp/CCDB –timestamp xxx ~~~ This will download the CCDB object under path given by --path
to a directory given by --dest
on the disc. (The final filename will be /tmp/CCDB/Detector1/QA/snapshot.root
for the moment). All meta-information as well as the information associated to this query will be appended to the file.
For full list of options see o2-ccdb-downloadccdbfile --help
.
Inspect the content of a ROOT file and print summary about type of contained (CCDB) objects and its meta information
~~~{.sh} o2-ccdb-inspectccdbfile filename ~~~ Lists all keys and stored types in a ROOT file (downloaded with tool o2-ccdb-downloadccdbfile
) and prints a summary about the attached meta-information.