تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
15834 أدوات العرض

I have been testing running Odoo in both threaded (workers = 0) and multiprocess mode (workers > 0). My environment has 4 cpus so I have set workers = 9 (# of cpu x 2 +1). The user interfaces is much less responsive in multiprocess mode. And some tasks even timeout in multiprocess mode (ie adding several modules at once). I have also tested using fewer workers (workers = 5) and the UI is a bit more responsive but still much slower than threaded mode.

The Odoo documentation says that multiprocess is meant for production use. Why would this mode be slower?

الصورة الرمزية
إهمال
أفضل إجابة

Check in the log if the instances are restarting. The way the multithreaded server works, if the thread reaches the resources limit, the trhead is killed and new thread is created. This sequence of killing and recrating new threads is what ususally makes the multi-worker server slow.

The parameters to controll the resources which you would need to adjust in order to tunethe multiinstance are:

limit_memory_soft
limit_memory_hard
limit_time_real
limit-time-cpu
limit-request

In my experiance the OS X and FreeBSD require the memory limits to be set more higher than on lynux in order to improve the performance.

الصورة الرمزية
إهمال
أفضل إجابة

I did the same with an Amazon instance (single core, 2GB RAM), I set the workers at 4, and also some others parameters: 

  • workers = 4
  • limit_time_real = 300
  • limit_time_cpu = 300

The last 2 parameters are the time limit for each request (correct me if I'm wrong) and CPU usage per request.

In my case, it works much more smooth than before.

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
أغسطس 23
2846
1
أغسطس 16
10378
1
ديسمبر 22
5515
0
فبراير 18
3182
0
يناير 16
4631