Skip to content

reldb-feature

The following configuration can be used to reduce unnecessary operations and load on the server.

If reldb.url is configured in insight.properties then all configs will be stored in reldb by default.

Property reldb.tree.mode controls whether all or no tree will be replicated to reldb

reldb.tree.mode=ALL // Defaultwert : replicate all trees to reldb reldb.tree.mode=NONE //

The global entry reldb.tree.mode=NONE can be overwritten in two ways:

  1. by the following entry in a treeConfiguration:

    "download": {
        ...
    },
    "indexerProperties" : {
        "reldb" : true
    },
    "root": {
       ... 
    }
    
  2. configure a list of trees in insight.properties which should replicated to reldb reldb.relevant.trees=tree1,tree2