
Open
Posted
•
Ends in 1 day
Paid on delivery
I run Odoo 19 Enterprise and spend a lot of my day creating new products, assigning attributes, generating variants, then updating prices, stock levels and descriptions. Right now each save spins for far too long; I need that round-trip to finish in about 30 seconds or less. There are several custom modules in the database, so the job starts with profiling: pinpoint whether the slowdown lives in my add-ons, the ORM calls, PostgreSQL queries or server configuration. Once the bottlenecks are clear, I expect code refactoring, proper indexing, possible cron or queue adjustments and any server-level tuning required. Tests should prove that a standard product record – with its attributes and variants – can be created or edited and fully committed within the 30-second window. Deliverables • Technical report outlining the root causes of the latency • Optimised code / configs applied to my staging then production instance • Before-and-after metrics demonstrating sub-30-second updates • Brief hand-off notes so I can keep the system fast after future changes A solid grasp of Odoo framework, Python, PostgreSQL performance tools and common Enterprise add-ons will be essential.
Project ID: 40559729
17 proposals
Open for bidding
Remote project
Active 7 hours ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
17 freelancers are bidding on average ₹3,081 INR for this job

Hi, I can help get your Odoo 19 product saves down to under 30 seconds. I'll start by profiling the exact bottleneck—custom modules, ORM calls, PostgreSQL queries, and server config—using Odoo's logging and pg_stat_statements, then move to targeted fixes. Typical improvements come from adding missing database indexes, refactoring heavy compute methods to use batch operations or read_group, and offloading non-urgent work to queued jobs. I'll ensure all changes keep server-side validation, parameterized queries, and least-data logging in place, and I'll document before/after metrics plus hand-off notes so you can keep things fast later. I can complete this within about a week for INR 1500. One thing that helps me start quickly: could you share the approximate number of products and variants, and confirm I'll have access to a staging instance and the custom modules' code?
₹1,500 INR in 8 days
5.8
5.8

Hi , I have 5+ years of experience of Odoo implantation and developed products for Govt. sector . Please let me know your availability for further discussion . Regards Shobhit S
₹1,050 INR in 7 days
4.3
4.3

Hello Sir/Madam, Greetings for the day! I am an experienced Odoo consultant and developer with over a decade of expertise in Odoo implementation, customization, migration, and integration across all versions (4.0 to 18.0). My background includes delivering tailored Odoo solutions to optimize business operations, streamline workflows, and enhance productivity. Key Expertise: ✅ Odoo (formerly OpenERP) – Implementation, Customization & Migration ✅ Python Development ✅ Odoo API Integrations & Module Development ✅ Open-source ERP Solutions Recent Projects: ✔️ Travel Management System – Automating bookings, itinerary management, and invoicing ✔️ Online Course Management System – E-learning platform with enrollment and payment integration ✔️ School Management System – Student records, fee management, and scheduling ✔️ E-commerce & Retail Solutions – Odoo-based Online Shopping Store & POS Management ✔️ CRM & Order Management – Integrated lead tracking, sales, and invoicing system ✔️ Ground Booking System – Football & Tennis ground reservation and payment management ✔️ Restaurant Management System (POS) – Streamlining operations, orders, and billing I specialize in end-to-end Odoo implementations, helping businesses unlock the full potential of Odoo with custom modules, seamless integrations, and user-friendly solutions. Let’s discuss how I can contribute to your project’s success!
₹1,050 INR in 7 days
3.6
3.6

To optimize your Odoo 19 Enterprise performance, I will start by profiling your system to pinpoint the bottlenecks, whether they are in the custom modules, ORM calls, PostgreSQL queries, or server configuration. I will then refactor the code, apply proper indexing, and adjust cron or queue settings as needed to ensure that a standard product record can be created or edited within the 30-second window. I have worked on similar projects, such as the Real Estate Data Extraction project, where I developed a sophisticated data pipeline to extract and process large datasets, and the Attorney Settlement scrapping with AI project, where I optimized data scraping and processing to achieve high performance. However, I would like to ask, have you noticed any specific patterns or triggers that cause the slowdown, and are there any particular custom modules that you suspect may be contributing to the issue?
₹875 INR in 7 days
2.8
2.8

Odoo 19 product/variant saves crawling past 30 seconds points to one of a few usual suspects: ORM overhead from custom module hooks (onchange/compute methods firing too often), missing indexes on variant/attribute tables, or bloated cron jobs competing for DB connections. I'd start with profiling — Odoo's built-in profiler plus PostgreSQL's pg_stat_statements and EXPLAIN ANALYZE on the slow queries — to pinpoint whether it's your add-ons, ORM calls, or server config before touching anything. Once isolated, likely fixes: refactoring inefficient compute/onchange logic on product templates and variants, adding targeted indexes on frequently-filtered fields, tuning PostgreSQL (shared_buffers, work_mem) for your Enterprise workload, and offloading heavy background tasks to queue_job if crons are blocking writes. I've done backend performance work with Django/Postgres at similar scale, same diagnostic approach applies to Odoo's ORM layer. Deliverables as specified: technical report, applied fixes on staging then production, before/after metrics proving sub-30s commits, hand-off notes. Can you confirm which custom modules touch the product/variant save flow specifically?
₹1,050 INR in 7 days
1.0
1.0

Hi, I’m Jesus, a software developer experienced in optimizing existing backend systems. I believe I could help you with your issue if you provided more details. My experience ranges from creating specialized optimization libraries to major system overhauls—such as taking a system that was crashing at 5,000 requests per second and optimizing it to handle 25,000 requests per second with a straightforward approach. I have also handled everything from resolving network-related issues to optimizing systems to consume less than half the resources. I believe I can help you improve and optimize your entire system quickly, and I look forward to the possibility of working with you.
₹1,050 INR in 7 days
0.6
0.6

Hi, Odoo performance issues like this are usually traced to one of three places: inefficient custom module code, missing PostgreSQL indexes on frequently queried fields, or ORM calls that fetch too much data. I've worked with Python/Django and PostgreSQL profiling and the approach is the same here. My plan: 1. Profile with Python cProfiler and Odoo's built-in --log-level=debug to find slow RPCs 2. Use EXPLAIN ANALYZE on the slow PostgreSQL queries to spot missing indexes 3. Refactor any N+1 ORM calls in custom modules (switch to search_read with domain filters) 4. Add indexes on product variant/attribute lookup fields 5. Check if saves are triggering unnecessary compute fields — defer or cache where safe 6. Validate fix: time the round-trip before and after, target ≤30 seconds I'll deliver a short report showing what I found and what I changed. If cron/queue adjustments are needed I'll include those too. Can you share: which custom modules are installed, and what server specs (RAM/CPU) you're running on? — Santhosh, VELHADE
₹1,200 INR in 7 days
0.4
0.4

Hi, I can analyze and optimize your Odoo 19 Enterprise instance to identify the root causes of the slow product creation and update process. My approach includes: * Profiling custom modules, ORM calls, and PostgreSQL queries * Identifying bottlenecks affecting product, attribute, and variant operations * Optimizing database indexes and server configuration * Refactoring inefficient code where required * Reviewing cron jobs and background processes * Validating performance improvements with before-and-after benchmarks You’ll receive a technical report detailing the issues found, the optimizations applied, performance metrics, and handover notes to help maintain optimal performance going forward.
₹1,050 INR in 7 days
0.0
0.0

Hi, I have 9+ years of experience with Odoo ERP, including performance optimization, custom module development, PostgreSQL tuning, and debugging complex Enterprise implementations. I can identify the root cause of the slowdown by profiling your custom modules, ORM calls, SQL queries, and server configuration, then implement upgrade-safe optimizations to achieve your target performance. I'll also provide before/after metrics, a technical report, and handover documentation. I have experience optimizing large Odoo databases and would be happy to help improve your product creation and variant generation performance. Looking forward to discussing your project.
₹1,050 INR in 2 days
0.0
0.0

I'll start with systematic profiling using Django Debug Toolbar and PostgreSQL EXPLAIN ANALYZE to isolate whether your slowdown is in custom module logic, ORM queries, or database schema. I'll audit your product creation workflow, check for N+1 query patterns, missing indexes on product_attribute and product_template tables, and review any compute fields or onchange triggers in your custom add-ons. Once bottlenecks are identified, I'll refactor problematic code paths, apply targeted database indexing, optimize ORM calls with select_related/prefetch_related, and tune PostgreSQL settings if needed. I'll set up before/after load tests on your staging environment to confirm sub-30-second saves for full product records with attributes and variants, then document findings and hand-off notes for your team.
₹606 INR in 4 days
0.0
0.0

I can help optimize your Odoo 19 Enterprise instance and identify the root cause of the performance issues. I have solid experience with Odoo development, Python, PostgreSQL optimization, and debugging custom modules. I will profile your custom modules, ORM calls, SQL queries, and server configuration, optimize the bottlenecks, apply the necessary code and database improvements, and provide before-and-after performance metrics along with a technical report and hand-off documentation. I can start immediately and ensure the optimization is completed professionally with regular progress updates.
₹1,050 INR in 1 day
0.0
0.0

Hello, Odoo 19 save delays from ORM inefficiencies or custom module bottlenecks are a routine fix for me. I’m a Site Reliability Engineer with 15 years of Linux system experience and 7 years managing cloud and on-prem infrastructure, including PostgreSQL performance tuning and Python application optimization. I’ve reduced latency in production systems by profiling slow queries, fixing N+1 ORM patterns, and hardening database indexes, work that directly applies to Odoo’s behavior. I will start by analyzing your staging environment: using pg_stat_statements to identify slow queries, auditing custom modules for inefficient loops, and validating index usage on product, attribute, and variant tables. I’ll correlate response times to specific operations, checking for blocking cron jobs, unoptimized Python logic, or missing constraints. Changes will be tested against a realistic dataset before applying them to production. I’ve migrated and tuned PostgreSQL instances under heavy write loads, optimized LVM2 storage under concurrency, and automated recovery workflows for complex environments, all relevant to Odoo’s data patterns. I will deliver a technical report with root causes, applied fixes, before-and-after metrics proving sub-30-second saves, and clear hand-off notes for ongoing maintenance. All work will be documented in operational terms, not theoretical assumptions. I can apply the fixes and provide the metrics you need. Carlos Porter Site Reliability Engineer
₹10,000 INR in 7 days
0.0
0.0

Dear Sir, If you allow, I would like to have a try first. You don’t have to pay me if it’s not successful. Thank you! Joseph
₹10,000 INR in 7 days
0.0
0.0

Hi, I have over 3 years of experience as an Odoo Techno-Functional Consultant and Developer, with hands-on expertise in Odoo Enterprise and Community, custom module development, performance optimization, and PostgreSQL. Your requirement aligns well with my experience. Rather than making random changes, my approach is to first profile the complete request flow to identify whether the bottleneck is in custom modules, ORM calls, SQL queries, product variant generation, server configuration, or PostgreSQL performance. Once the root cause is identified, I optimize the system while ensuring stability and maintainability. For this project, I can help with: Performance profiling and root cause analysis Optimization of custom modules and ORM queries PostgreSQL query tuning and indexing Product and variant creation performance improvements cron jobs, queue processing, and server configuration optimization Before-and-after performance benchmarking Deployment on staging followed by production Documentation and recommendations for long-term performance I would be happy to review your current setup, analyze the bottlenecks, and propose the best optimization strategy to achieve your target response time. Looking forward to discussing your project. Best Regards, Gautam Odoo Techno-Functional Consultant & Developer
₹1,050 INR in 7 days
0.0
0.0

Surat, India
Payment method verified
Member since Mar 25, 2026
₹600-1500 INR
₹600-1500 INR
₹1500-12500 INR
₹600-1500 INR
₹100-400 INR / hour
$250-750 USD
₹750-1250 INR / hour
$30-250 USD
$15-25 USD / hour
₹1500-12500 INR
$10-30 USD
$30-250 SGD
min $50 USD / hour
$30-250 USD
$250-750 USD
₹1500-12500 INR
₹600-1500 INR
₹1500-12500 INR
₹75000-150000 INR
$100-300 AUD
₹100-400 INR / hour
$2-8 USD / hour
$250-750 USD
$250-750 USD