Skip to main content

Cube for starting RqJobs on a Rq worker

Project description

Cube for starting RqJobs on a Rq worker

Installation

Open the project in a terminal and run:

pip install -e .

This will install the cube in your active virtual environment as cubicweb-rq.

The following sections indicate additional steps when you install this cube as a dependency or as an instance.

As a dependency

If you plan to use this cube as a dependency for your own cube, add it to your __pkginfo__.py as follows:

__depends__ = {
    # ... Your previous dependencies
    "cubicweb-rq": None,
}

If the target cube is already used as an instance, you need to migrate it with the help of its python shell (replace YOUR_INSTANCE_NAME by your instance name):

cubicweb-ctl shell YOUR_INSTANCE_NAME

In the python prompt, enter the following command:

add_cube("rq")

Press Ctrl-D then restart your instance. The cube should now be available in your instance.

As an instance

If you plan to use this cube directly as an instance, create and start your instance with the following commands (replace cubicweb-instance by the name of your choice):

cubicweb-ctl create rq cubicweb-instance
cubicweb-ctl start -D cubicweb-instance

Learn More

Visit the official documentation to learn more about CubicWeb.

Launch a worker

Have redis installed and running on your machine.

$ sudo apt-get install redis-server
$ sudo system-ctl start redis

In your ~/etc/cubicweb.d/cubicweb-instance/pyramid.ini file, add the following lines

redis.sessions.timeout = 1200
redis.sessions.secret = stuff
redis.sessions.prefix = cubicweb-instance:
redis.sessions.url = redis://localhost:6379/0
rq.redis_url = redis://localhost:6379/0

Launch a worker with the following command line (replace cubicweb-instance with the name of your cubicweb instance):

cubicweb-ctl rq-worker cubicweb-instance

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

cubicweb-rq-0.1.1.tar.gz (10.4 kB view hashes)

Uploaded Source

Built Distribution

cubicweb_rq-0.1.1-py3-none-any.whl (12.4 kB view hashes)

Uploaded Python 3

Supported by

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