Skip to main content

Backend worker daemon for Fedora Notifications

Project description

fmn is a family of systems to manage end-user notifications triggered by fedmsg, the Fedora FEDerated MESsage bus.

This module contains the backend worker daemon for Fedora Notifications.

There is a parental placeholder repo with some useful information you might want to read through, like an overview, a little architecture diagram.

HACKING

Find development instructions here: https://github.com/fedora-infra/fmn/#hacking

RUNNING

There are three components to run in section of the project:

  • the fedmsg consumer

  • one or more workers

  • the backend

The consumer is the part of the application that receives the messages from fedmsg, it then sends them to the worker(s) who will see whose preferences the message match (ie: to whom to send the notification and on which channel). The worker(s) then send its results to the backend that receives them and just do the IO: sending the email, posting to IRC and so on.

To run these parts, simply, start rabbitmq-server and redis and call, in three different terminals (all running the same virtual-environment):

$ fedmsg-hub
$ python fmn/consumer/worker.py
$ python fmn/consumer/backend.py

Handy Script

There’s a handy script in the scripts/ dir for debugging why some user did or did not receive a message. It takes a username and a fedmsg msg_id and tries to see if the two match up or not based on the production preferences for that user.

Architecture

                                                     +-------------+
                                              Read   |             |   Write
                                              +------+  prefs DB   +<------+
                                              |      |             |       |
   +                                          |      +-------------+       |
   |                                          |                            |   +------------------+   +--------+
   |                                          |                            |   |    |fmn.lib|     |   |        |
   |                                          v                            |   |    +-------+     |<--+  User  |
   |                                    +----------+                       +---+                  |   |        |
   |                                    |   fmn.lib|                           |  Central WebApp  |   +--------+
   |                                    |          |                           +------------------+
   |                             +----->|  Worker  +--------+
   |                             |      |          |        |
fedmsg                           |      +----------+        |
   |                             |                          |
   |                             |      +----------+        |
   |   +------------------+      |      |   fmn.lib|        |       +--------------------+
   |   | fedmsg consumer  |      |      |          |        |       | Backend            |
   +-->|                  +------------>|  Worker  +--------------->|                    |
   |   |                  |      |      |          |        |       +-----+   +---+  +---+
   |   +------------------+      |      +----------+        |       |email|   |IRC|  |SSE|
   |                             |                          |       +--+--+---+-+-+--+-+-+
   |                             |      +----------+        |          |        |      |
   |                             |      |   fmn.lib|        |          |        |      |
   |                             |      |          |        |          |        |      |
   |                             +----->|  Worker  +--------+          |        |      |
   |                         RabbitMQ   |          |    RabbitMQ       |        |      |
   |                                    +----------+                   |        |      |
   |                                                                   v        v      v
   |
   |
   |
   v

FAQ

Q: If the worker and backend complain about

self.db[key] = value
TypeError: String or Integer object expected for key, unicode found

A: Modify the config for fedmsg.d/fmn.py to use redis

# Some configuration for the rule processors
"fmn.rules.utils.use_pkgdb2": False,
"fmn.rules.utils.pkgdb2_api_url": "http://209.132.184.188/api/",
"fmn.rules.cache": {
    'backend': 'dogpile.cache.redis',
    'arguments': {
        'host': 'localhost',
        'port': 6379,
        'db': 0,
        'redis_expiration_time': 60*60*2,   # 2 hours
        'distributed_lock': True
    },
    # "backend": "dogpile.cache.dbm",
    # "expiration_time": 300,
    # "arguments": {
    #     "filename": "/var/tmp/fmn-cache.dbm",
    # },
},

Q: When I run the worker and backend it constantly quits right away

A: Do you have rabbitmq-server and redis running?

systemctl status rabbitmq-server redis

if not run

systemctl start rabbitmq-server redis

Q: When running fedmsg-hub it shows that stuff are not initialized in the output

A: Have you updated the repo and ran the setup again?

git pull
workon fmn
python setup.py develop

Q: I have fedmsg-hub, worker.py and backend running now what?

A: Load up the web interface and enable IRC and add your nick. Checkout fmn.web and fmn for more info.

Q: It’s saying my nick is invalid

A: Is your nick registered? If not run this with the correct information

/msg NickServ REGISTER password youremail@example.com

src: freenode

Q: How do I know if it’s working?

A: In IRC you should get contacted by threebot

<threebot> <user>.id.fedoraproject.org has requested that notifications be sent to this nick
<threebot> * To accept, visit this address:

Q: How do I stress test?

A: To be continued. Scripts are in process of being created

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fmn.consumer-1.0.1.tar.gz (51.8 kB view details)

Uploaded Source

File details

Details for the file fmn.consumer-1.0.1.tar.gz.

File metadata

  • Download URL: fmn.consumer-1.0.1.tar.gz
  • Upload date:
  • Size: 51.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for fmn.consumer-1.0.1.tar.gz
Algorithm Hash digest
SHA256 c0ec0f1623951646b57b47a545e800deca741a9e21704023b7d08da39f397db4
MD5 a5dadb41fb8851453daf580621cfd62f
BLAKE2b-256 a86787c5621a1801ad3d3657fa5e6f6776f8c029c1694ff701b5c8cf08cd2ede

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page