webpy中auto_application的cookie共享问题

webpy+DBUtils是如何将数据库连接数占满的

妙音 posted @ 2014年1月10日 11:41 in webpy , 6275 阅读
webpy简单易用,而且非常轻量。这些特点很容易让人忽略它作为web服务器的主要目标,而把它当作一个小模块使用。
现在就把它当作小模块,只使用它操作数据库的api.
 
下面是个小程序,目的就是访问数据库,然后关闭连接。
import web

def main():
    db = web.database(port=5432, host='localhost', dbn='postgres', db='tax',
                      user='postgres', pw='postgres')
    rs = db.query("select count(*) as count from pg_stat_activity")
    print list(rs)[0].count
    db.ctx.db.close()

if __name__ == '__main__':
    main()
在正常情况下,上面程序表现很正常。不会有任何问题.
 
如果变成周期程序,并且安装了DBUtils模块
import time
import web
import psycopg2

def main():
    db = web.database(port=5432, host='localhost', dbn='postgres', db='tax',
                      user='postgres', pw='postgres')
    rs = db.query("select count(*) as count from pg_stat_activity")
    print list(rs)[0].count
    db.ctx.db.close()

if __name__ == '__main__':
    while True:
        main()
        time.sleep(1)
输出的count值不断增加,最终将连接数占满。
 
为什么close没有效果,数据库连接数不断增加?
 
第一个问题:close关闭的是什么?
在有DBUitls时,close关闭时的PooledDB.connection()产生的连接.
在无DBUtils时,close关闭的时psycopg2.connect()产生的连接.
 
第二个问题: 在有DBUtils时close为什么不会减少连接数?
写了段代码,来看看close是怎么回事
import psycopg2
from DBUtils import PooledDB

def main():
    #mincached,maxconnections限制连接池中的连接数
    pool = PooledDB.PooledDB(psycopg2, port=5432, host='localhost', dbname='postgres', database='tax',
                             user='postgres', password='postgres',
                             mincached=2, maxconnections=2)
    # 从连接池中取一个连接
    conn = pool.connection()
    cur = conn.cursor()
    cur.execute("select count(*) as count from pg_stat_activity")
    rs = cur.fetchone()
    print list(rs)
    cur.close()
    # 不会影响这个连接池的连接数量. pool.close()关闭连接池,会关闭所有连接.
    conn.close()

if __name__ == '__main__':
    while True:
        main()
        time.sleep(1)
发现连接数始终不是变,单个连接的close,不会影响到这个连接池。
 
试试将上面cur.close() conn.close()注释掉,会导致连接数增加吗?
答案也是不会. pool是局部变量,变量销毁,连接会自动关闭。
 
得到结论:
* 单个连接关闭,不会影响连接池
* 连接池变量释放,或者程序停止,连接会自动关闭
 
 
可推断webpy中定有全局变量,不释放而导致连接增加.
 
顺着这个思路阅读web源码,发现web.ctx是个TreadedDict类型
class ThreadedDict(threadlocal):
    """
    Thread local storage.

        >>> d = ThreadedDict()
        >>> d.x = 1
        >>> d.x
        1
        >>> import threading
        >>> def f(): d.x = 2
        ...
        >>> t = threading.Thread(target=f)
        >>> t.start()
        >>> t.join()
        >>> d.x
        1
    """
    # 原因就在这里
    _instances = set()

    def __init__(self):
        ThreadedDict._instances.add(self)

    def __del__(self):
        ThreadedDict._instances.remove(self)

    def __hash__(self):
        return id(self)
    ....
原来它有个静态属性ThreadedDict._instances保存每个实例,而每个实例中又保存web.database产生的PooledDB对象.
所以pool一直不释放。
 
所以原因就是: web.database每次新建一个PooledDB对象,而对象又保存在全局变量TreadedDict._instance中.
由于不断新建连接池,又不释放连接池,最终导致连接数不断增加。
 
 
webpy如何解决这个问题?
使用polling参数,禁止连接池
db = web.database(port=5432, host='localhost', dbn='postgres', db='tax',
                  user='postgres', pw='postgres', pooling=False)
 
这上面得出的结论对oracle和其它类型的数据库同样有效.
 
 
 
Avatar_small
maplye 说:
2016年7月22日 23:12

db = web.database(port=5432, host='localhost', dbn='postgres', db='tax',
user='postgres', pw='postgres')

不要建在循环里面。

Avatar_small
SaaS Security Postur 说:
2020年12月14日 15:12

Great write-up, I am a big believer in commenting on blogs to inform the blog writers know that they’ve added something worthwhile to the world wide web!..

Avatar_small
SaaS Security 说:
2020年12月14日 15:13

Thank you for some other informative blog. Where else could I get that type of information written in such an ideal means? I have a mission that I’m just now working on, and I have been at the look out for such information.

Avatar_small
bandarqq 说:
2020年12月15日 13:57

thank you for a great post.

Avatar_small
Andrea Natale 说:
2021年2月28日 17:42

Positive site, where did u come up with the information on this posting? I'm pleased I discovered it though, ill be checking back soon to find out what additional posts you include.

Avatar_small
cardiologist andrea 说:
2021年2月28日 17:44

I read a article under the same title some time ago, but this articles quality is much, much better. How you do this.. <a href="https://en.wikipedia.org/wiki/Andrea_Natale">cardiologist andrea natale</a>

Avatar_small
프로토 说:
2021年11月28日 05:05

Thank you very much for this great post. 프로토

Avatar_small
우리카지노 说:
2021年11月29日 19:15

I have recently started a blog, the info you provide on this site has helped me greatly. Thanks for all of your time & work. 우리카지노

Avatar_small
Harry 说:
2021年12月03日 00:31 Thanks, that was a really cool read! judi online24jam terpercaya 2020
Avatar_small
토토커뮤니티 说:
2021年12月04日 04:49

Super-Duper site! I am Loving it!! Will come back again, Im taking your feed also, Thanks. fiber distribution box

Avatar_small
토토커뮤니티 说:
2021年12月04日 04:56

Thanks for picking out the time to discuss this, I feel great about it and love studying more on this topic. It is extremely helpful for me. Thanks for such a valuable help again. sinotruk

Avatar_small
Harry 说:
2021年12月07日 00:11 This content is written very well. Your use of formatting when making your points makes your observations very clear and easy to understand. Thank you. download instagram photos
Avatar_small
สูตร บา คา ร่า ฟรี 说:
2021年12月18日 04:12

Hello, I have browsed most of your posts. This post is probably where I got the most useful information for my research. Thanks for posting, maybe we can see more on this. Are you aware of any other websites on this subject. สูตร บา คา ร่า ฟรี

Avatar_small
สมัครบาคาร่า 说:
2021年12月19日 05:10

This particular papers fabulous, and My spouse and i enjoy each of the perform that you have placed into this. I’m sure that you will be making a really useful place. I has been additionally pleased. Good perform! ballonger

Avatar_small
virus 说:
2022年1月03日 21:15

This article is an appealing wealth of useful informative that is interesting and well-written. I commend your hard work on this and thank you for this information. I know it very well that if anyone visits your blog, then he/she will surely revisit it again. real guest post

Avatar_small
virus 说:
2022年1月05日 19:37

Very informative post! There is a lot of information here that can help any business get started with a successful social networking campaign. dance studios kitchener

Avatar_small
สมัครบาคาร่า 说:
2022年1月11日 04:19

The writer has outdone himself this time. It is not at all enough; the website is also utmost perfect. I will never forget to visit your site again and again. french manicure 2022

Avatar_small
HGDFFH 说:
2022年1月11日 16:50

Positive site, where did u come up with the information on this posting?I have read a few of the articles on your website now, and I really like your style. Thanks a million and please keep up the effective work. 0x0 0x0

Avatar_small
virus 说:
2022年1月11日 17:16

Superbly written article, if only all bloggers offered the same content as you, the internet would be a far better place.. pubfilm

Avatar_small
สมัครบาคาร่า 说:
2022年1月17日 04:15

Platinum Sun is a manufacturer and retailer of healthy lifestyle products and elite Watersports apparel for athletes and ocean lovers. platinum sun

Avatar_small
virus 说:
2022年1月18日 21:52

Wonderful article. Fascinating to read. I love to read such an excellent article. Thanks! It has made my task more and extra easy. Keep rocking. security doors

Avatar_small
virus 说:
2022年1月27日 20:09

Nice to read your article! I am looking forward to sharing your adventures and experiences. 메이저놀이터 검증

Avatar_small
สมัครบาคาร่า 说:
2022年2月07日 06:05

You make so many great points here that I read your article a couple of times. Your views are in accordance with my own for the most part. This is great content for your readers. Lip fillers

Avatar_small
สมัครบาคาร่า 说:
2022年2月08日 06:20

Pick up the Random Galaxy range of cute, funny t-shirts, posters, tapestries, and shower curtains, featuring space cat designs, sloths, llamas, and loads more options to choose from. sloth shirt

Avatar_small
virus 说:
2022年2月08日 17:59

Yes, I am entirely agreed with this article, and I just want say that this article is very helpful and enlightening. I also have some precious piece of concerned info !!!!!!Thanks. Yale lodge

Avatar_small
สมัครบาคาร่า 说:
2022年2月12日 04:14

I found this is an informative and interesting post so i think so it is very useful and knowledgeable. I would like to thank you for the efforts you have made in writing this article. wine bottle bag

Avatar_small
. 카지노사이트 说:
2022年2月17日 03:32

This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here keep up the good work CBD oil dose for dogs

Avatar_small
สมัครบาคาร่า 说:
2022年2月20日 06:01

I found your this post while searching for some related information on blog search...Its a good post..keep posting and update the information. custom Packaging Bags

Avatar_small
สมัครบาคาร่า 说:
2022年2月21日 04:14

This is my first visit to your web journal! We are a group of volunteers and new activities in the same specialty. Website gave us helpful data to work. Τυπωμένα καπέλα του μπέιζμπολ

Avatar_small
danchapmanloans.com/ 说:
2022年2月22日 03:38

I am so grateful for your article. Much thanks again. Fantastic.

Avatar_small
virus 说:
2022年2月26日 15:02

Nice post! This is a very nice blog that I will definitively come back to more times this year! Thanks for informative post. skyward fbisd

Avatar_small
Harry 说:
2022年2月27日 18:02

This is a great article thanks for sharing this informative information. I will visit your blog regularly for some latest post. I will visit your blog regularly for Some latest post. cheap instagram likes

Avatar_small
สมัครบาคาร่า 说:
2022年3月07日 03:13

Thanks for providing recent updates regarding the concern, I look forward to read more. rainbow shirt

Avatar_small
สมัครบาคาร่า 说:
2022年3月07日 04:19

I got what you mean , thanks for posting .Woh I am happy to find this website through google. taco shirt

Avatar_small
virus 说:
2022年3月07日 21:32

I think this is an informative post and it is very useful and knowledgeable. therefore, I would like to thank you for the efforts you have made in writing this article. Betflix

Avatar_small
. 카지노사이트 说:
2022年3月10日 02:21

Thankyou for this wondrous post, I am glad I observed this website on yahoo. click here for more info

Avatar_small
สมัครบาคาร่า 说:
2022年3月21日 05:44

Omni Group Australia provide specialized home care services and facility management in Australia. Call us to book an appointment! 040 66 999 69. omni group Australia

Avatar_small
สมัครบาคาร่า 说:
2022年3月30日 05:47

Our range of caps and hats look stunning and feel amazing to wear. Feel stylish whatever the occasion, or choose from our range of fine gifts for the special person in your life. black baseball cap

Avatar_small
สมัครบาคาร่า 说:
2022年3月30日 06:52

Our collapsible laundry baskets are a stylish and convenient addition to your laundry. Designed with functionality in mind, these complete laundry solutions don't take up too much space and can carry any items around your home with ease. wicker laundry baskets

Avatar_small
สมัครบาคาร่า 说:
2022年3月31日 06:31

Our broom and mop holders and an ideal way to maximize vertical storage space. Organize the garage, workshop, laundry or shed and easily access your stored items when you need them. push broom

Avatar_small
สมัครบาคาร่า 说:
2022年4月02日 05:54

Above 6'2" and just tall? Our tall men's clothing is just for you: the tall lean guy. Organic fabrics. Free shipping. Find your fit now with a tall that fits. Clothes for tall skinny guys

Avatar_small
สมัครบาคาร่า 说:
2022年4月03日 04:26

Great write-up, I am a big believer in commenting on blogs to inform the blog writers know that they’ve added something worthwhile to the world wide web!.. login slot777

Avatar_small
สมัครบาคาร่า 说:
2022年4月16日 04:53

Experienced and trusted paving contractors in Dublin and wicklow. We offer driveways paving including Resin, tarmac, gravel, cobblestone Paving

Avatar_small
สมัครบาคาร่า 说:
2022年4月16日 05:13

Everything you should know about resin driveways paving to help you decide on your new driveway by experienced paving contractors in Dublin. Resin Paving

Avatar_small
สมัครบาคาร่า 说:
2022年4月20日 03:01

I found your this post while searching for some related information on blog search...Its a good post..keep posting and update the information. sea doo spark trixx review

Avatar_small
virus 说:
2022年4月21日 15:26

I found that site very usefull and this survey is very cirious, I ' ve never seen a blog that demand a survey for this actions, very curious... 먹튀검증커뮤니티

Avatar_small
ทางเข้า lucabet 说:
2022年4月23日 20:20

I am always searching online for articles that can help me. There is obviously a lot to know about this. I think you made some good points in Features also. Keep working, great job ทางเข้า lucabet

Avatar_small
. 카지노사이트 说:
2022年4月24日 02:31

Thanks so much for sharing this awesome info! I am looking forward to see more postsby you! Op zoek naar nieuwe functie?

Avatar_small
. 카지노사이트 说:
2022年4月27日 03:27

This is very interesting content! I have thoroughly enjoyed reading your points and have come to the conclusion that you are right about many of them. You are great. white label metaverse

Avatar_small
. 카지노사이트 说:
2022年4月30日 01:26

Thanks for posting this info. I just want to let you know that I just check out your site and I find it very interesting and informative. I can't wait to read lots of your posts. paphos hotel offers

Avatar_small
. 카지노사이트 说:
2022年4月30日 02:38

I am incapable of reading articles online very often, but I’m happy I did today. It is very well written, and your points are well-expressed. I request you warmly, please, don’t ever stop writing. basahjeruk

Avatar_small
virus 说:
2022年5月01日 14:46

I have read your blog it is very helpful for me. I want to say thanks to you. I have bookmark your site for future updates. 현금화

Avatar_small
. 카지노사이트 说:
2022年5月02日 03:07

This is very educational content and written well for a change. It's nice to see that some people still understand how to write a quality post.! Lederen Dress Boots

Avatar_small
. 카지노사이트 说:
2022年5月03日 01:26

We think that everyone deserves a chance at solid & secure authentication tools which includes privacy by default. That's why we created AuthGS™ We're proud to be one of the easiest authentication providers to integrate in your application, and we have a lot of security features waiting for you! sales api

Avatar_small
. 카지노사이트 说:
2022年5月06日 20:23

Wow, cool post. I'd like to write like this too - taking time and real hard work to make a great article... but I put things off too much and never seem to get started. Thanks though. 출장안마

Avatar_small
สมัครบาคาร่า 说:
2022年5月07日 04:59

Hello I am so delighted I located your blog, I really located you by mistake, while I was watching on google for something else, Anyways I am here now and could just like to say thank for a tremendous post and a all round entertaining website. Please do keep up the great work. Situs Judi Online

Avatar_small
. 카지노사이트 说:
2022年5月09日 01:50

You have outdone yourself this time. It is probably the best, most short step by step guide that I have ever seen. 6 ساعة هواوي باند

Avatar_small
LIC term plan calcul 说:
2022年7月29日 21:37

As the name suggests, this LIC premium calculator online introduced by LIC India helps its customer to calculate the amount of premium to be paid against any particular Life insurance policy on any type of endowment, child, pension, money back, term plan, LIC term plan calculator whole life plan or health plan. Where LIC premium calculator not only calculates about premium but also calculates the amount that you will get after the LIC maturity.

Avatar_small
dark web/deep web/d 说:
2022年8月09日 15:31

Link farms are websites which exist solely to collect numerous links from web directories. The more links they have, the higher their site will climb in the rankings of search engine results.  deep web

Avatar_small
dark web/deep web/d 说:
2022年8月09日 16:02

All you need to do is make sure that you choose a product that is relevant to your own site. You will be able to make much more profit by only picking relevant products. dark web sites

Avatar_small
dark web/deep web/d 说:
2022年8月09日 19:48

In fact, some of the dark net is used to conduct criminal activities as well as to buy credit cards and other sensitive personal information. dark web

Avatar_small
Karnataka 10th Class 说:
2022年9月21日 22:27

KSEEB SSLC Question Paper 2023 for Karnataka SSLC Kannada Language Model Paper 2023 Pdf Download with Answer Solutions for theory, objective type MCQ Questions as KSEEB 10th Kannada Model Paper 2023 or KAR SSLC 1st Language Model Set 2023 for Kannada medium and English Medium General, Vocational and NQSF students. Karnataka 10th Class SSLC kannada Model Paper Karnataka State Class 10th (STD-10) first language (Kannada) model question paper 2023 Pdf download for Kannada medium students to the academic year of 2023.


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter