irc.wikimedia.org is a very old IRC service for broadcasting recent changes events from WIkimedia wikis. Bots connect to IRC channels specific to a wiki (e.g. #en.wikipedia for English wikipedia) and every edit posts a notification event in there on which bots react. The edit events are sent by MediaWiki via UDP messages as configured via the $wgRCFeeds configuration directive. The IRC service itself is implemented via a patched version of irc-ratbox and a supplemental service written in Python and python-irc.
Most bots these days are using the vastly superior Eventstreams service, but there is still ~ two dozen bots for which ownership is often unknown which use irc.wikimedia.org.
irc.wikimedia.org has no owner within Wikimedia, but has been kept alive by SRE Infrastructure Foundations over the year to keep up with OS updates, but has increasinly become more difficult. The ircecho service is still in Python 2 and moving it to Python 3 has a long tail of changes since the Python 3 version of python-ircd made extensive changes to cope with string/byte changes.
We intend to replace the combination of ratbox and ircecho with new code once written by Faidon which implements irc.wikimedia.org as a standalone service.
This new code can run on parallel VMs and eventually we can failover the irc.wikimedia.org CNAME away from the old VMs to the service provided by the new implementation.
When the new infrastructure is in place, a possible next enhancement is to move away from the UDP broadcast events and also update the code to read the event notifications from Kafka.