I've recently moved from my local web.py/apache setup to a shared host and I'm trying to match my home configuration. One issue that is popping up is an OperationalError "MySQL server has gone away". Searching around the internet, people who come across this error tended to be inactive for the space of hours. This happens to me between seconds.
I've confirmed using mod_wsgi's application() function example that I am in fact running in daemon mode. One issue though, that concerns me is that if I spit out web.ctx.orm to the error log, it appears to be a new object for each request. Shouldn't my sqlalchemy session object be the same between page requests?
Here's my python code and a portion of my apache setup. Is there anything that would cause problems on this new machine I hadn't had before on my home machine?
def load_sqla(handler):
web.ctx.orm = scoped_session(sessionmaker(bind=engine))
try:
try:
return handler()
except web.HTTPError:
web.ctx.orm.commit()
raise
except:
web.ctx.orm.rollback()
raise
finally:
web.ctx.orm.commit()
# If the above alone doesn't work, uncomment
# the following line:
web.ctx.orm.expunge_all()
... urls and controllers ...
app = web.application(urls, globals(), autoreload=False)
app.add_processor(load_sqla)
application = app.wsgifunc()
and here's a portion of my apache setup.
WSGIDaemonProcess app processes=1 threads=1 python-path=/home/net/
public_html/myapp
WSGIProcessGroup app
WSGIScriptAlias /myapp /home/net/public_html/myapp/managio.py
<Directory "/home/stratton/public_html/myapp">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
</Directory>