We think koschei needs only 3 fedmsg endpoints (not 9).
This commit is contained in:
parent
d28f959a50
commit
ba4ea66ff3
3 changed files with 9 additions and 12 deletions
|
@ -18,9 +18,8 @@ koschei_bugzilla: bugzilla.redhat.com
|
||||||
|
|
||||||
|
|
||||||
tcp_ports: [ 80, 443,
|
tcp_ports: [ 80, 443,
|
||||||
# These 9 are for fedmsg right now, but we need to check with the koschei
|
# These 3 are for fedmsg. See also /etc/fedmsg.d/endpoints.py
|
||||||
# devs if this is enough or too much. See also /etc/fedmsg.d/endpoints.py
|
3000, 3001, 3002,
|
||||||
3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008,
|
|
||||||
]
|
]
|
||||||
|
|
||||||
custom_rules: [
|
custom_rules: [
|
||||||
|
|
|
@ -18,9 +18,8 @@ koschei_bugzilla: partner-bugzilla.redhat.com
|
||||||
|
|
||||||
|
|
||||||
tcp_ports: [ 80, 443,
|
tcp_ports: [ 80, 443,
|
||||||
# These 9 are for fedmsg right now, but we need to check with the koschei
|
# These 3 are for fedmsg. See also /etc/fedmsg.d/endpoints.py
|
||||||
# devs if this is enough or too much. See also /etc/fedmsg.d/endpoints.py
|
3000, 3001, 3002,
|
||||||
3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008,
|
|
||||||
]
|
]
|
||||||
|
|
||||||
custom_rules: [
|
custom_rules: [
|
||||||
|
|
|
@ -89,14 +89,13 @@ config = dict(
|
||||||
for i in range(2)
|
for i in range(2)
|
||||||
],
|
],
|
||||||
|
|
||||||
# I'm not sure how many endpoints koschei needs. There are four backend
|
# mizdebsk says he thinks we'll need three sockets. Two services
|
||||||
# processes.. i'm not sure how many of them publish messages and how
|
# (koschei-resolver and koschei-polling) are only sending messages, one
|
||||||
# many threads each of them might have. And there's a wsgi frontend
|
# service (koschei-watcher) can both send and receive them. The wsgi
|
||||||
# with 5 threads, but I don't think it publishes any messages.
|
# webapp doesn't use fedmsg at all and all services are single-threaded
|
||||||
# TODO -- update this after talking with the koschei devs.
|
|
||||||
"koschei.koschei01": [
|
"koschei.koschei01": [
|
||||||
"tcp://koschei01.%s:30%02i" % (suffix, i)
|
"tcp://koschei01.%s:30%02i" % (suffix, i)
|
||||||
for i in range(9)
|
for i in range(3)
|
||||||
],
|
],
|
||||||
|
|
||||||
# koji is not listed here since it publishes to the fedmsg-relay
|
# koji is not listed here since it publishes to the fedmsg-relay
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue