$ 204.93
Availability |
Odoo Online
Odoo.sh
On Premise
|
Technical Name |
rabbitmq_connector |
License | OPL-1 |
Website | https://ventor.tech |
Versions | 14.0 15.0 16.0 17.0 18.0 |
RabbitMQ Connector
by VentorTech
Quickly and easily configure communication between Odoo and other services of your Cloud Infrastructure by RabbitMQ
Odoo RabbitMQ connector allows you to exchange messages between Odoo and your other applications (such as show site and etc.) much faster and simpler than with REST API.
RabbitMQ is a popular messaging broker - an intermediary for messaging. It gives your applications a common platform to send and receive messages, and your messages - a safe place to live until received (more details here).
Features
Supporting Multiple Consumers
Possibility to define independent consumers that will be listening to the new messages
Easy Customizations
Designed to allow easy connection to any of your Odoomodelsl (custom or standard)
Supporting any environment configuration
Works both with credentials defined through the Odoo interface or Environment variables (e.g. in Kubernetes). Supporting RabbitMQ Cluster
Reliability and Scalability
Automatic recovery of any connections in the case of RabbitMQ disconnection or database disconnection. Tested on high-load environments
Supporting popular configurations
Most of the popular consumer and publisher options can be configured directly through the Odoo interface
Queue Job Integration
Supporting integration of message processing through the OCA Queue Job module. Requires separate free module
Architecture
What’s included in the price
- RabbitMQ Connector
-
Regular updates, including new features
We regularly release new functionality and fix bugs (if they occur) immediately. If you are familiar with our VentorTech products, you know how quickly we take care of everything.
-
Documentation
Check the Documentation tab and hints (help texts) for settings.
-
High-quality code
Enables extending your Odoo without fear of crashes (add new features, delivery integrations, install third-party modules, and so on).
-
Error logs
Human readable error log helps to easily identify possible issues with sync.
-
Zero support cost
Working with Odoo since 2011, we guarantee stability of our working products and a lack of unnecessary errors.
-
Bugfix
We fix critical bugs that block you.
-
Customer Care Package is not included
We can take care of all your VentorTech infrastructure. This can be provided as an additional service or as a subscription. Contact us for details – support@ventor.tech
Compatibility
- Odoo Community and Enterprise
- Third-party Odoo apps developed according to Odoo Enterprise standards
- Easy scalable – no functional or performance limitations based on number of massages or used RabbitMQ instances
Installation and Configuration
The installation module requires the following knowledge:
- How to install a module on your Odoo instance (self-hosted or odoo.sh)
- Odoo technical knowledge
Module installation and configuration are not included in the module's price. Refer to the Documentation tab in the current module for installation details.
Requesting features and reporting bugs
If you have questions, need any help, or have a customizations request, please contact us at support@ventor.tech.
VentorTech Ecosystem
This Odoo RabbitMQ connector is a part of the VentorTech ecosystem. It’s fully compatible with all products designed by VentorTech: Ventor, Odoo Direct Print, Odoo Shopify connector, Odoo PrestaShop connector, Odoo Magento 2 connector, Odoo MyParcel connector, Odoo WooCommerce connector, ZPL Label Designer, and other
About Developer
Our company
support@ventor.tech
al. Jerozolimskie 81 / 11.10, Warszaw, 02-001
POLAND
NIP: 9512525443
+48 789 338 655
Our team
Quick configuration guide
Install the RabbitMQ Connector module on your Odoo server
Install external dependencies by requirements.txt
Modify your odoo.conf by following settings:
[options] db_host=<db_host> db_port=<db_port> db_user=<db_user> db_password=<db_password> server_wide_modules=...,rabbitmq_connector,...
For getting access to management RabbitMQ connections and other configurations add for your user group RabbitMQ Connector by Settings -> Users -> <YourUser>
Configure outgoing or incoming connection by going to RabbitMQ Connector menu push Create button.
Setup credentials for connecting to RabbitMQ by one of the following options:
Setup RabbitMQ <user>, <password>, <host>, <port> by user interface
- By reading credentials from environment variables (Setup Is Use Env Vars = True and Env Number = <number> by interface)
Env Number = 0 will be used following environment variables:
S_RABBITMQ_USER=<rabbitmq_user> S_RABBITMQ_PASSWORD=<rabbitmq_password> RABBITMQ_HOST=<rabbitmq_host> RABBITMQ_PORT=<rabbitmq_port>
Env Number = <number> will be used following environment variables:
S_RABBITMQ_USER_<number>=<rabbitmq_user> S_RABBITMQ_PASSWORD_<number>=<rabbitmq_password> RABBITMQ_HOST_<number>=<rabbitmq_host> RABBITMQ_PORT_<number>=<rabbitmq_port>
Fill in field Connector Type
Connector Type is Consumer
- Fill in specific RabbitMQ connection fields
- Fill in RabbitMQ Call Method that will handle incoming messages and fill in RabbitMQ Call Model that method will call from
- Activate connection by Active switcher
Connector Type is Producer
Before configuration connection you should create binding between your producer and concrete RabbitMQ connection. Add rabbitmq_connector to yours module dependencies
Create special binding record by xml:
<data noupdate="0"> <record id="your_producer_binding" model="rabbitmq.connector.bind"> <field name="name">Your producer binding</field> </record> </data>
Integrate in your python method message publish code:
binging = self.env.ref("your_module.your_producer_binding") binging.publish_message(body, msg_format)
If you have only one publisher, you can use default binding:
binging = self.env.ref("rabbitmq_connector.default_producer_binding") binging.publish_message(body, msg_format)
Create connection and fill in specific RabbitMQ connection fields
Activate connection by Active switcher
Go to RabbitMQ Connector -> RabbitMQ Connector Binds and match your bindings with yours connectors
Now RabbitMQ is ready to consume and publish messages
Changelog
1.0.1 (2023-03-31)
- Initial version.
Odoo 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