blob: eadc72ac28e0a2629dcd812fdaba57c7c2f89a8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
####################################################################
# REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE
# TEMPLATE AND *ALL* DATAFILES
####################################################################
aai.config.checktime=1000
# this could come from siteconfig.pl?
aai.config.nodename=AutomaticallyOverwritten
aai.tools.enableBasicAuth=true
aai.tools.username=AAI
aai.tools.password=AAI
aai.auth.cspcookies_on=false
aai.dbmodel.filename=ex5.json
aai.server.url.base=<%= @AAI_SERVER_URL_BASE %>
aai.server.url=<%= @AAI_SERVER_URL %>
aai.global.callback.url=<%= @AAI_GLOBAL_CALLBACK_URL %>
aai.truststore.filename=<%= @AAI_TRUSTSTORE_FILENAME %>
aai.truststore.passwd.x=<%= @AAI_TRUSTSTORE_PASSWD_X %>
aai.keystore.filename=<%= @AAI_KEYSTORE_FILENAME %>
aai.keystore.passwd.x=<%= @AAI_KEYSTORE_PASSWD_X %>
aai.notification.current.version=<%= @AAI_NOTIFICATION_CURRENT_VERSION %>
aai.notificationEvent.default.status=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_EVENT_STATUS %>
aai.notificationEvent.default.eventType=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_EVENT_TYPE %>
aai.notificationEvent.default.domain=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_DOMAIN %>
aai.notificationEvent.default.sourceName=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_SOURCE_NAME %>
aai.notificationEvent.default.sequenceNumber=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_SEQUENCE_NUMBER %>
aai.notificationEvent.default.severity=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_SEVERITY %>
aai.notificationEvent.default.version=<%= @AAI_NOTIFICATION_EVENT_DEFAULT_VERSION %>
# This one lets us enable/disable resource-version checking on updates/deletes
aai.resourceversion.enableflag=<%= @RESOURCE_VERSION_ENABLE_FLAG %>
aai.logging.maxStackTraceEntries=10
aai.default.api.version=<%= @AAI_DEFAULT_API_VERSION %>
# Used by Model-processing code
aai.model.delete.sleep.per.vtx.msec=500
aai.model.query.resultset.maxcount=50
aai.model.query.timeout.sec=90
aai.model.proc.max.levels=50
aai.edgeTag.proc.max.levels=50
# for transaction log
aai.logging.hbase.interceptor=true
aai.logging.hbase.enabled=true
aai.logging.hbase.logrequest=true
aai.logging.hbase.logresponse=true
# for gremlin server
aai.server.rebind=g
hbase.table.name=<%= @TXN_HBASE_TABLE_NAME %>
hbase.table.timestamp.format=YYYYMMdd-HH:mm:ss:SSS
hbase.zookeeper.quorum=<%= @TXN_ZOOKEEPER_QUORUM %>
hbase.zookeeper.property.clientPort=<%= @TXN_ZOOKEEPER_PROPERTY_CLIENTPORT %>
hbase.zookeeper.znode.parent=<%= @TXN_HBASE_ZOOKEEPER_ZNODE_PARENT %>
aai.logging.trace.enabled=true
aai.logging.trace.logrequest=false
aai.logging.trace.logresponse=false
aai.transaction.logging=true
aai.transaction.logging.get=false
aai.transaction.logging.post=false
|