7832d1a9699234efdf581022ae2e71c2b474685c
[oom.git] / kubernetes / aai / charts / aai-graphadmin / resources / config / janusgraph-realtime.properties
1 #
2 # ============LICENSE_START=======================================================
3 # Copyright © 2018 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #    http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
17
18 query.fast-property=true
19 query.smart-limit=false
20
21 {{ if .Values.global.config.cluster.cassandra.dynamic }}
22
23 {{- $seed_size := default 1 .Values.global.cassandra.replicas | int -}}
24 {{- $global := . }}
25
26 storage.backend=cassandra
27 storage.hostname={{- range $i, $e := until $seed_size }}{{ $global.Release.Name }}-{{$global.Values.global.cassandra.serviceName}}-{{ $i }}.{{$global.Values.global.cassandra.serviceName}},{{- end }}
28
29 storage.cassandra.keyspace=aaigraph
30
31 storage.cassandra.read-consistency-level=LOCAL_QUORUM
32 storage.cassandra.write-consistency-level=LOCAL_QUORUM
33 storage.cassandra.replication-factor=3
34 storage.cassandra.replication-strategy-class=org.apache.cassandra.locator.SimpleStrategy
35
36 {{ else }}
37
38 {{ if .Values.global.config.storage }}
39
40 storage.backend={{ .Values.global.config.storage.backend }}
41
42 {{ if eq .Values.global.config.storage.backend "cassandra" }}
43
44 storage.hostname={{ .Values.global.config.storage.hostname }}
45 storage.cassandra.keyspace={{ .Values.global.config.storage.name }}
46
47 storage.cassandra.read-consistency-level={{ .Values.global.config.storage.cassandra.readConsistency }}
48 storage.cassandra.write-consistency-level={{ .Values.global.config.storage.cassandra.writeConsistency }}
49 storage.cassandra.replication-factor={{ .Values.global.config.storage.cassandra.replicationFactor | int }}
50 storage.cassandra.astyanax.cluster-name= {{ .Values.global.config.storage.clusterName }}
51 storage.cassandra.astyanax.local-datacenter= {{ .Values.global.config.storage.localDataCenter }}
52
53 storage.connection-timeout={{ .Values.global.config.storage.connectionTimeout | int }}
54 cache.tx-cache-size={{ .Values.global.config.storage.cacheSize | int }}
55 log.tx.key-consistent={{ .Values.global.config.storage.keyConsistent }}
56
57 {{ else if eq .Values.global.config.storage.backend "cql" }}
58
59 storage.hostname={{ .Values.global.config.storage.hostname }}
60 storage.cql.keyspace={{ .Values.global.config.storage.name }}
61
62 storage.cql.read-consistency-level={{ .Values.global.config.storage.cql.readConsistency }}
63 storage.cql.write-consistency-level={{ .Values.global.config.storage.cql.readConsistency }}
64 storage.cql.replication-factor={{ .Values.global.config.storage.cql.replicationFactor | int }}
65
66 storage.cql.only-use-local-consistency-for-system-operations={{ .Values.global.config.storage.cql.localConsistencyForSysOps }}
67 storage.cql.cluster-name={{ .Values.global.config.storage.clusterName }}
68 storage.cql.local-datacenter={{ .Values.global.config.storage.localDataCenter }}
69
70 storage.connection-timeout={{ .Values.global.config.storage.connectionTimeout | int }}
71 cache.tx-cache-size={{ .Values.global.config.storage.cacheSize | int }}
72 log.tx.key-consistent={{ .Values.global.config.storage.keyConsistent }}
73
74 {{ else if eq .Values.global.config.storage.backend "hbase" }}
75
76 storage.hostname={{ .Values.global.config.storage.hostname }}
77 storage.hbase.table={{ .Values.global.config.storage.name }}
78
79 storage.connection-timeout={{ .Values.global.config.storage.connectionTimeout | int }}
80 cache.tx-cache-size={{ .Values.global.config.storage.cacheSize | int }}
81 log.tx.key-consistent={{ .Values.global.config.storage.keyConsistent }}
82
83 {{ end }}
84
85 {{ end }}
86
87 {{ end }}
88
89 storage.lock.wait-time=300
90 # Setting db-cache to false ensure the fastest propagation of changes across servers
91 cache.db-cache = false
92 #load graphson file on startup
93 load.snapshot.file=false