| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
Discuss (mail)
|
| Community Apps Dependencies | Show |
| Lines of code | 3737 |
| Technical Name |
eh_hero_queue |
| License | OPL-1 |
| Website | https://www.erpheritage.com.au/ |
| Versions | 16.0 17.0 18.0 19.0 |
Employment Hero Queue
Lightweight asynchronous job queue with retries, exponential backoff and a dead letter state. No external dependency: drains on a schedule and can be run on demand.
What this module does, in one read.
Lightweight asynchronous job queue with retries, exponential backoff and a dead letter state. No external dependency: drains on a schedule and can be run on demand.
6 things this module gives you, with no padding.
In database queue
Jobs live in an ordinary model, so there is no broker to install, secure or monitor.
Retries with backoff
Failed jobs retry on an exponential schedule instead of hammering a struggling endpoint.
Dead letter state
Jobs that exhaust their retries move to a dead letter state for review rather than vanishing.
Scheduled drain
A scheduled action drains the queue automatically, and you can also run it on demand.
Per job payload
Each job carries its own payload and target, so unrelated work never blocks behind one slow item.
Visibility
Queue state is a list view: pending, running, done, failed, dead, all in one place.
Configure once. Sync. Audit.
Enqueue
Producers add jobs with a payload and target.
Drain
The scheduled action runs pending jobs.
Retry
Failures retry on an exponential schedule.
Resolve
Exhausted jobs land in dead letter for review.
The engineering rules we hold ourselves to.
Data driven configuration.Endpoints and field mappings live as data, so most changes are configuration rows, not code deployments.
Idempotent by design.Sync runs upsert against an external id cross reference; running a job twice never duplicates a record.
Append only audit.Sync runs and API calls are recorded; the logs read cleanly into a compliance audit without preparing exports.
No silent overwrite.Conflict policies are explicit, so a record changed on both sides is resolved by a rule you chose, not by accident.
No broker required.The queue lives in the database with retries and a dead letter state, so light to medium volume needs no extra service.
Secrets stay secret.OAuth2 tokens are encrypted at rest and every credential is restricted to system administrators; none are written to logs.
Tested on real Odoo.Every module ships an automated test suite that runs on Odoo 16, 17, 18 and 19.
Original work.Every module is built from the published Employment Hero API behaviour, not derived from any other module.
Honest answers to the questions a buyer asks.
Do I need an external broker?
No. The queue lives in the database and drains on a schedule, so there is nothing extra to install or secure.
What happens to jobs that keep failing?
They retry with exponential backoff and then move to a dead letter state for review.
Which Odoo versions are supported?
Odoo 16, 17, 18 and 19 Community. Every module ships an automated test suite that runs on all four. A module requires Enterprise only when its name says so.
What is the licence?
This module is distributed under OPL-1. The full licence text ships with the module.
Will it conflict with other modules I use?
Models, fields and security groups are namespaced under eh_hero, so conflicts with other suites are unlikely.
How do I get support?
Reach the team at info@erpheritage.com.au. Deployment, configuration and customisation work is handled by ERP Heritage.
Built by ERP Heritage
ERP Heritage builds integration and HR engineering for the Odoo Community ecosystem. Every module is original work: data driven configuration, idempotent sync, append only audit logs, and plain Python where it adds clarity. No Enterprise dependency unless the module name says otherwise.
Distributed under OPL-1.
Employment Hero Queue, for Odoo Community 16 to 19.
Original work under OPL-1. Data driven configuration, idempotent sync, append only audit. Reach the team for deployment and support.
info@erpheritage.com.auOdoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module