-
Notifications
You must be signed in to change notification settings - Fork 6
/
application.yml
74 lines (62 loc) · 1.25 KB
/
application.yml
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
application:
title: FlockData SearchWriter
eureka:
client:
healthcheck:
enabled: false
serviceUrl:
defaultZone: ${org.fd.discovery.url:http://localhost:8761/eureka/}
instance:
preferIpAddress: true
# enabled: false
spring:
application:
name: fd-search
profiles:
include: fd-server
# Run with the "discovery" profile active to connect
# cloud:
# discovery:
# enabled: false
messages:
encoding: UTF-8
rabbitmq:
password: guest
username: guest
host: localhost
port: 5672
virtual-host: /
server:
port: 14002
logging:
level:
org.flockdata: info
org.flockdata.client: debug
org.springframework: error
es:
clustername: es_flockdata
nodes: 127.0.0.1:9300
path.home: ./
org.fd:
engine:
messaging:
prefetchCount: 3
concurrentConsumers: 2
executor:
poolSize: 4
capacity: 4
search:
es:
mappings: ./
# Look outside of this jvm for an ES host
# True for dev/transportOnly = false (default)
# False for production/cluster/remote es client
local: true
system:
api: api
messaging:
concurrentConsumers: 2
prefetchCount: 3
executor:
poolSize: 4
capacity: 10