Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
a1b433fa
Commit
a1b433fa
authored
13 years ago
by
Vo Minh Thu
Browse files
Options
Downloads
Patches
Plain Diff
[IMP] wsgi: make it possible to kill siblings.
bzr revid: vmt@openerp.com-20110824132220-htd1c4ssewwozl35
parent
84883852
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gunicorn.conf.py
+5
-2
5 additions, 2 deletions
gunicorn.conf.py
openerp/wsgi.py
+39
-6
39 additions, 6 deletions
openerp/wsgi.py
with
44 additions
and
8 deletions
gunicorn.conf.py
+
5
−
2
View file @
a1b433fa
import
openerp
# Standard OpenERP XML-RPC port.
bind
=
'
127.0.0.1:8069
'
# Some application-wide initialization is needed.
on_starting
=
openerp
.
wsgi
.
on_starting
pidfile
=
'
.gunicorn.pid
'
# This is the big TODO: safely use more than a single worker.
workers
=
1
# Some application-wide initialization is needed.
on_starting
=
openerp
.
wsgi
.
on_starting
when_ready
=
openerp
.
wsgi
.
when_ready
timeout
=
240
# openerp request-response cycle can be quite long
This diff is collapsed.
Click to expand it.
openerp/wsgi.py
+
39
−
6
View file @
a1b433fa
...
...
@@ -21,7 +21,7 @@
"""
WSGI stuffs (proof of concept for now)
This module offers a
n
WSGI interface to OpenERP.
This module offers a WSGI interface to OpenERP.
"""
...
...
@@ -29,7 +29,10 @@ from wsgiref.simple_server import make_server
from
SimpleXMLRPCServer
import
SimpleXMLRPCDispatcher
import
xmlrpclib
import
os
import
signal
import
sys
import
time
import
openerp
import
openerp.tools.config
as
config
...
...
@@ -63,10 +66,9 @@ def application(environ, start_response):
return
result
# We never returned from the loop.
else
:
response
=
'
No handler found.
\n
'
start_response
(
'
200 OK
'
,
[(
'
Content-Type
'
,
'
text/plain
'
),
(
'
Content-Length
'
,
str
(
len
(
response
)))])
return
[
response
]
response
=
'
No handler found.
\n
'
start_response
(
'
200 OK
'
,
[(
'
Content-Type
'
,
'
text/plain
'
),
(
'
Content-Length
'
,
str
(
len
(
response
)))])
return
[
response
]
# Serve XMLRPC via wsgiref's simple_server.
# Blocking, should probably be called in its own process.
...
...
@@ -74,13 +76,44 @@ def serve():
httpd
=
make_server
(
'
localhost
'
,
config
[
'
xmlrpc_port
'
],
application
)
httpd
.
serve_forever
()
# Application setup be fore we can spawn any worker process.
arbiter_pid
=
None
# Application setup before we can spawn any worker process.
# This is suitable for e.g. gunicorn's on_starting hook.
def
on_starting
(
server
):
global
arbiter_pid
arbiter_pid
=
os
.
getpid
()
# TODO check if this is true even after replacing the executable
config
=
openerp
.
tools
.
config
config
[
'
addons_path
'
]
=
'
/home/openerp/repos/addons/trunk/
'
# need a config file
openerp
.
tools
.
cache
=
kill_workers_cache
openerp
.
netsvc
.
init_logger
()
openerp
.
osv
.
osv
.
start_object_proxy
()
openerp
.
service
.
web_services
.
start_web_services
()
# Install our own signal handler on the master process.
def
when_ready
(
server
):
# Hijack gunicorn's SIGWINCH handling; we can choose another one.
signal
.
signal
(
signal
.
SIGWINCH
,
make_winch_handler
(
server
))
# Our signal handler will signal a SGIQUIT to all workers.
def
make_winch_handler
(
server
):
def
handle_winch
(
sig
,
fram
):
server
.
kill_workers
(
signal
.
SIGQUIT
)
# This is gunicorn specific.
return
handle_winch
# Kill gracefuly the workers (e.g. because we want to clear their cache).
# This is done by signaling a SIGWINCH to the master process, so it can be
# called by the workers themselves.
def
kill_workers
():
try
:
os
.
kill
(
arbiter_pid
,
signal
.
SIGWINCH
)
except
OSError
,
e
:
if
e
.
errno
==
errno
.
ESRCH
:
# no such pid
return
raise
class
kill_workers_cache
(
openerp
.
tools
.
real_cache
):
def
clear
(
self
,
dbname
,
*
args
,
**
kwargs
):
kill_workers
()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment