diff options
4 files changed, 8 insertions, 6 deletions
diff --git a/cookbooks/aai-resources/aai-resources-config/attributes/titan-cached.rb b/cookbooks/aai-resources/aai-resources-config/attributes/titan-cached.rb index 103583b..59d86a0 100644 --- a/cookbooks/aai-resources/aai-resources-config/attributes/titan-cached.rb +++ b/cookbooks/aai-resources/aai-resources-config/attributes/titan-cached.rb @@ -1,6 +1,7 @@ node.default["aai-resources-config"]["STORAGE_HOSTNAME"] = 'localhost' +node.default["aai-resources-config"]["STORAGE_BACKEND"] = 'hbase' node.default["aai-resources-config"]["STORAGE_HBASE_TABLE"] = 'aaigraph.dev' node.default["aai-resources-config"]["STORAGE_HBASE_ZOOKEEPER_ZNODE_PARENT"] = '/hbase' node.default["aai-resources-config"]["DB_CACHE_CLEAN_WAIT"] = 20 node.default["aai-resources-config"]["DB_CACHE_TIME"] = 180000 -node.default["aai-resources-config"]["DB_CACHE_SIZE"] = 0.3
\ No newline at end of file +node.default["aai-resources-config"]["DB_CACHE_SIZE"] = 0.3 diff --git a/cookbooks/aai-resources/aai-resources-config/attributes/titan-realtime.rb b/cookbooks/aai-resources/aai-resources-config/attributes/titan-realtime.rb index c289a63..0673592 100644 --- a/cookbooks/aai-resources/aai-resources-config/attributes/titan-realtime.rb +++ b/cookbooks/aai-resources/aai-resources-config/attributes/titan-realtime.rb @@ -1,3 +1,4 @@ node.default["aai-resources-config"]["STORAGE_HOSTNAME"] = 'localhost' +node.default["aai-resources-config"]["STORAGE_BACKEND"] = 'hbase' node.default["aai-resources-config"]["STORAGE_HBASE_TABLE"] = 'aaigraph.dev' -node.default["aai-resources-config"]["STORAGE_HBASE_ZOOKEEPER_ZNODE_PARENT"] = '/hbase'
\ No newline at end of file +node.default["aai-resources-config"]["STORAGE_HBASE_ZOOKEEPER_ZNODE_PARENT"] = '/hbase' diff --git a/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-cached.properties b/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-cached.properties index d6c9c2d..ac6520a 100644 --- a/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-cached.properties +++ b/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-cached.properties @@ -1,6 +1,6 @@ # the following parameters are not reloaded automatically and require a manual bounce query.fast-property=true -storage.backend=hbase +storage.backend=<%= STORAGE_BACKEND %> storage.hostname=<%= @STORAGE_HOSTNAME %> #schema.default=none storage.lock.wait-time=300 @@ -10,4 +10,4 @@ storage.hbase.ext.zookeeper.znode.parent=<%= @STORAGE_HBASE_ZOOKEEPER_ZNODE_PARE cache.db-cache = true cache.db-cache-clean-wait = <%= @DB_CACHE_CLEAN_WAIT %> cache.db-cache-time = <%= @DB_CACHE_TIME %> -cache.db-cache-size = <%= @DB_CACHE_SIZE %>
\ No newline at end of file +cache.db-cache-size = <%= @DB_CACHE_SIZE %> diff --git a/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-realtime.properties b/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-realtime.properties index 2935cc1..9894849 100644 --- a/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-realtime.properties +++ b/cookbooks/aai-resources/aai-resources-config/templates/default/aai-resources-config/titan-realtime.properties @@ -1,6 +1,6 @@ # the following parameters are not reloaded automatically and require a manual bounce query.fast-property=true -storage.backend=hbase +storage.backend=<%= STORAGE_BACKEND %> storage.hostname=<%= @STORAGE_HOSTNAME %> #schema.default=none storage.lock.wait-time=300 @@ -10,4 +10,4 @@ storage.hbase.ext.zookeeper.znode.parent=<%= @STORAGE_HBASE_ZOOKEEPER_ZNODE_PARE cache.db-cache = false #cache.db-cache-clean-wait = 20 #cache.db-cache-time = 180000 -#cache.db-cache-size = 0.5
\ No newline at end of file +#cache.db-cache-size = 0.5 |