This repository has been archived by the owner on Jul 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig
48 lines (40 loc) · 1.57 KB
/
config
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
# Hostname to connect to mysql/mariadb
# NOTE: This is not used as of ExileTools v3 and is no longer necessary
# dbHost:localhost
# A flat file with database credentials (user/pass/database name)
# NOTE: This is not used as of ExileTools v3 and is no longer necessary
# dbCreds:../.dbcreds
# Here is an example .dbcreds file: (these aren't my credientials :p )
#
# dbUser:mariadb
# dbPass:totallysecurepassword
# dbName:indexer
# This is the location to store logs ($baseDir/logs) and other stuff
# The subroutines for this program and various other bits must be run directly
# out of bin regardless of this setting, for example:
#
# % cd /eti/dev/indexer/bin
# % tools/build-unique-item-hash.pl
#
# Otherwise the basedir is used for logs and other such things, though you
# will need to create the appropriate directories (see docs/INSTALL.txt)
baseDir:/eti/dev/indexer
# The primary elasticsearch host
esHost:elasticsearch
# The secondary elasticsearch host (if any)
# Multiple hosts are not supported by default in v4, you will need to add
# them into the code manually
#esHost2:elasticsearch2
#esHost3:elasticsearch3
# The main Elastic Search Index (recommended: 'poe')
esItemIndex:poedev
# The default type for items (recommended: 'type')
esItemType:item
# The Elastic Search stats index for thread/indexing stats
esStatsIndex:dev-indexing-stats
# Kafka configuration
# Note, you must make sure to create the topics in a way that matches
kafkaTopicNameIncoming:devincoming
kafkaTopicPartitionsIncoming:1
kafkaTopicNameProcessed:devprocessed
# The processed topic will always be 1 partition