Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Odoo 8.0 takes long time to perform all operations

Subscribe

Get notified when there's activity on this post

This question has been flagged
configurationnginxoptimizationodooV8docker
1 Reply
4446 Views
Avatar
khalil

I have Odoo 8.0 installed using Docker and nginx, my problem is that all operations take a crazy time to be performed.

here is my configs:

server's specs

* CPU cors = 8

* RAM= 32GB

----------------------

odoo.conf​​​​​

[options] 
; This is the password that allows database operations: 
admin_passwd = **** 
db_host = db 
db_port = 5432 
db_user = pg 
db_password =****
db_template = template1 
db_maxconn = 90000 
mangento_databases = mangento 
;openpgpwd 
addons_path = /opt/odoo/sources/odoo/addons,/opt/odoo/sources/odoo/addons1_2beta/addons_std/,/opt/odoo/sources/odoo/addons1_2beta/addons_pro/,/opt/odoo/sources/odoo/addons1_2beta/addons_ent/,/opt/odoo/sources/odoo/addons1_2beta/ad$ 
; xmlrpc_port = 9090 
data_dir = /opt/odoo/data 
proxy_mode = True 
max_cron_threads = 1 
logfile = /opt/odoo/etc/odoo.log 
;log_db = True 
; 
timezone = False 
translate_modules = ['all'] 
unaccent = False 
without_demo = False 
workers = 11 
xmlrpc = True 
xmlrpc_interface = 
test_file = False 
test_report_directory = False 
; 
longpolling_port = 8072 
osv_memory_age_limit = 1.0 
osv_memory_count_limit = False 
; 
limit_memory_hard = 8858370048 
limit_memory_soft = 7381975040 
limit_request = 8192 
limit_time_cpu = 4069 
limit_time_real = 4069 
;max_cron_threads = 6 
; 
list_db = True 
log_db = False 
log_db_level = warning 
log_handler = :INFO 
log_level = error 
logrotate = True
 --------------------------------------------------------

postgres.conf

​x_connections = 11700 
shared_buffers = 2GB 
effective_cache_size = 6GB 
maintenance_work_mem = 512MB 
checkpoint_completion_target = 0.7 
wal_buffers = 16MB 
default_statistics_target = 100 
random_page_cost = 4 
effective_io_concurrency = 200 
work_mem = 233kB 
min_wal_size = 1GB 
max_wal_size = 2GB 
max_worker_processes = 2
------------------------------------------​

nginx.conf

user www-data; 
worker_processes auto; 
pid /run/nginx.pid; 

events { 
       worker_connections 768; 
} 
http { 
       sendfile on; 
       tcp_nopush on; 
       tcp_nodelay on; 
       keepalive_timeout 65; 
       types_hash_max_size 2048; 


       include /etc/nginx/mime.types; 
       default_type application/octet-stream; 
       ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE 
       ssl_prefer_server_ciphers on; 
       access_log /var/log/nginx/access.log; 
       error_log /var/log/nginx/error.log; 
       gzip on; 
       gzip_disable "msie6";  
       include /etc/nginx/conf.d/*.conf; 
       include /etc/nginx/sites-enabled/*; 
} 

I don't know how to optimize the system, any help with some explanation please!
0
Avatar
Discard
Avatar
Hilar Andikkadavath
Best Answer

I think Your setup for long-polling and workers need to be updated in Nginx.Here I can share with you the docs for setting long-polling and workers properly.


Worker number calculation

  • Rule of thumb : (#CPU * 2) + 1
  • Cron workers need CPU
  • 1 worker ~= 6 concurrent users

memory size calculation

  • We consider 20% of the requests are heavy requests, while 80% are simpler ones
  • A heavy worker, when all computed field is well designed, SQL requests are well designed, … is estimated to consume around 1Go of RAM
  • A lighter worker, in the same scenario, is estimated to consume around 150MB of RAM

Needed RAM = #worker * ( (light_worker_ratio * light_worker_ram_estimation) + (heavy_worker_ratio * heavy_worker_ram_estimation) )



https://www.odoo.com/documentation/13.0/setup/deploy.html

https://odoo-development.readthedocs.io/en/latest/admin/longpolling.html

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Why default Nginx config is in conf.d/ folder and not in sites-available/ folder ?
configuration nginx
Avatar
Avatar
1
May 24
4032
Timeout error with nginx Solved
nginx odooV8
Avatar
Avatar
Avatar
Avatar
3
May 24
150251
Nginx error in Docker
nginx docker
Avatar
0
Feb 20
4678
Error Related to config file
configuration error docker
Avatar
Avatar
1
Apr 25
1769
What is the use of db_maxconn parameter in odoo .conf file ?? Solved
configuration connection odooV8
Avatar
Avatar
1
Jul 19
15852
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now