-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
115 lines (91 loc) · 4.13 KB
/
.env
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# This file contains environment variables for the istsos4 project.
# HOSTNAME: The hostname of the server where the istsos4 project is running.
# Default: http://localhost:8018
HOSTNAME=http://localhost:8018
# SUBPATH: The subpath of the istSOS server.
# Default: /istsos-miu
SUBPATH=/istsos4
# VERSION: The version of the istSOS offered STA.
# Default: /v1.1
VERSION=/v1.1
# DEBUG: Enable or disable debug mode.
# 0 - disabled
# 1 - enabled
# Default: 0
DEBUG=0
# VERSIONING: Enable or disable versioning of data.
# true - enabled
# false - disabled
# Default: true
VERSIONING=true
# POSTGRES_DB: The name of the PostgreSQL database used by istSOS.
# Default: istsos
POSTGRES_DB=istsos
# POSTGRES_USER: The username for connecting to the PostgreSQL database.
# Default: admin
POSTGRES_USER=admin
# POSTGRES_PASSWORD: The password for connecting to the PostgreSQL database.
# Default: admin
POSTGRES_PASSWORD=admin
# PG_MAX_OVERFLOW: The maximum number of connections that can be opened above the maximum number of connections specified by PG_MAX_CONNECTIONS.
# Default: 0
PG_MAX_OVERFLOW=0
# PG_POOL_SIZE: The maximum number of connections to the PostgreSQL database pool.
# Default: 10
PG_POOL_SIZE=10
# PG_POOL_TIMEOUT: The maximum time in seconds that a client can wait for a connection from the connection pool.
# Default: 30
PG_POOL_TIMEOUT=30
# DUMMY_DATA: Set to 1 if you want to use dummy data for testing purposes.
# 0 - disabled
# 1 - enabled
# Default: 1
DUMMY_DATA=1
# CLEAR_DATA: Set to 1 if you want to clear existing data before running the program.
# 0 - disabled
# 1 - enabled
# Default: 0
CLEAR_DATA=0
# N_THINGS: Number of things to generate data for.
# Default: 10
N_THINGS=3
# N_OBSERVED_PROPERTIES: Number of observed properties to generate data for.
# Default: 2
N_OBSERVED_PROPERTIES=2
# INTERVAL: Interval for generating data.
# Default: P1Y (1 year)
INTERVAL=P1Y
# FREQUENCY: Frequency of data generation.
# Default: PT5M (every 5 minutes)
FREQUENCY=PT5M
# START_DATETIME: The start date for phenomenonTime of observation.
# Format: YYYY-MM-DDTHH:MM:SS.SSS+HH:MM
# Default: 2020-01-01T12:00:00.000+01:00
START_DATETIME=2020-01-01T12:00:00.000+01:00
# CHUNK_INTERVAL: The interval for chunking data.
# Default: P1Y (1 year)
CHUNK_INTERVAL=P1Y
# COUNT_MODE: Specifies the count mode for estimation.
# FULL - Fully count all entities. Can be very slow on large result sets, but always gives accurate results.
# LIMIT_ESTIMATE - First do a count, with a limit of countEstimateThreshold. If the limit is reached, do an
# estimate using EXPLAIN. For large result can be wildly inaccurate for fields that are not backed by an index.
# For low counts this method is still guaranteed to give accurate results.
# ESTIMATE_LIMIT - First do an estimate using EXPLAIN and if the estimate is below the threshold, do a count with
# a limit of countEstimateThreshold. This is the fastest method, but if the estimate is inaccurate,
# it can give an incorrect estimate for low counts.
# Default: FULL
COUNT_MODE=FULL
# COUNT_ESTIMATE_THRESHOLD: Specifies the threshold for count estimation.
# Default: 10000
COUNT_ESTIMATE_THRESHOLD=10000
# TOP_VALUE: Specifies the default top value.
# Default: 100
TOP_VALUE=100
# PARTITION_CHUNK: Determines the number of records to be processed in each partition.
# Default: 10000
PARTITION_CHUNK=10000
# EXPAND_MODE: Specifies the mode for expanding.
# BASIC - Basic expansion without iot.count and iot.nextLink for nested entity.
# ADVANCED - Advanced expansion with iot.count and iot.nextLink for nested entity.
# Default: BASIC
EXPAND_MODE=BASIC