forked from linkedpipes/etl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.properties.sample
115 lines (89 loc) · 3.32 KB
/
configuration.properties.sample
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
#
# LinkedPipes ETL Configuration file.
# http://etl.linkedpipes.com
#
##############
# Executor #
##############
# Port used by executor REST API.
executor.webserver.port = 8085
# URL of the executor REST API to be used. Must NOT end with '/'.
# This can be used for setups where executor and executor-monitor
# run on one machine and the frontend on another. If all components
# run on the same machine, this is http://localhost:8085 or the
# port from executor.webserver.port
executor.webserver.uri = http://localhost:8085
# Path to debug data. Debug data can be large.
# Windows ex: C:\\Tools\\lp\\etl\\working
# Linux ex: /data/lp/etl/working
executor.execution.working_directory =
# Prefix used for the IRIs of pipelines executions. Can be used
# to ensure ability to dereference the IRIs.
# Must end with '/'.
executor.execution.uriPrefix = http://localhost:8080/resources/executions/
# Directory used for logs.
# Windows ex: C:\\Tools\\lp\\etl\\log
# Linux ex: /data/lp/etl/log
executor.log.directory =
# TRACE, DEBUG, INFO, WARN, ERROR
executor.log.core.level = INFO
# Path to utilized libraries. This is usually the deploy/osgi
# folder where you cloned the repository.
# Windows ex: C:\\Users\\Kuba\\Documents\\GitHub\\etl\\deploy\\osgi
# Linux ex: /opt/lp/etl/deploy/osgi
executor.osgi.lib.directory =
# Path to OSGI working directory, used bundles are stored here.
executor.osgi.working.directory = .felix/
######################
# Executor-monitor #
######################
# Port used by executor-monitor REST API.
executor-monitor.webserver.port = 8081
# URL of the executor-monitor REST API to be used.
# Must end with '/'.
executor-monitor.webserver.uri = http://localhost:8081/api/v1/
# Directory used for logs.
# Windows ex: C:\\Tools\\lp\\etl\\log
# Linux ex: /data/lp/etl/log
executor-monitor.log.directory =
# TRACE, DEBUG, INFO, WARN, ERROR
executor-monitor.log.core.level = INFO
# FTP Port for executor-monitor.
# The FTP server is used to browse debug content of an execution.
executor-monitor.ftp.command_port = 2221
executor-monitor.ftp.data_ports_interval.start = 2222
executor-monitor.ftp.data_ports_interval.end = 2225
# External URL that should be used to access debug FTP server from outside.
# This must point to the FTP server instance command port.
# Must NOT end on '/'.
executor-monitor.ftp.uri = ftp://localhost:2221
##############
# Storage #
##############
# URL of the storage REST API to be used. Must NOT end with '/'.
# If all components run on the same machine, this is
# http://localhost:8083 or the port from storage.port
storage.uri = http://localhost:8083
# Port used by storage REST API.
storage.port = 8083
# Windows ex: C:\\Users\\Kuba\\Documents\\GitHub\\etl\\deploy\\jars
# Linux ex: /opt/lp/etl/deploy/jars
storage.jars.directory =
# Directory used by the storage.
# Windows ex: C:\\Tools\\lp\\etl\\storage
# Linux ex: /data/lp/etl/storage
storage.directory =
# Prefix used to create URI of templates and pipelines, should be dereferencable.
# Must NOT end with '/'.
domain.uri = http://localhost:8080
# Directory used for logs.
# Windows ex: C:\\Tools\\lp\\etl\\log
# Linux ex: /data/lp/etl/log
storage.log.directory =
# TRACE, DEBUG, INFO, WARN, ERROR
storage.log.core.level = INFO
##############
# Frontend #
##############
# Port for web server - for now used by storage.domain.
frontend.webserver.port = 8080