GenericObjectPool參數(shù)解析

本文主要解析一下apache common pools下的GenericObjectPool的參數(shù)設(shè)置

GenericObjectPool

commons-pool2-2.4.2-sources.jar!/org/apache/commons/pool2/impl/GenericObjectPool.java

public class GenericObjectPool<T> extends BaseGenericObjectPool<T>
        implements ObjectPool<T>, GenericObjectPoolMXBean, UsageTracking<T> {
   //......
}        

默認(rèn)配置見
commons-pool2-2.4.2-sources.jar!/org/apache/commons/pool2/impl/GenericObjectPoolConfig.java

public class GenericObjectPoolConfig extends BaseObjectPoolConfig {

    /**
     * The default value for the {@code maxTotal} configuration attribute.
     * @see GenericObjectPool#getMaxTotal()
     */
    public static final int DEFAULT_MAX_TOTAL = 8;

    /**
     * The default value for the {@code maxIdle} configuration attribute.
     * @see GenericObjectPool#getMaxIdle()
     */
    public static final int DEFAULT_MAX_IDLE = 8;

    /**
     * The default value for the {@code minIdle} configuration attribute.
     * @see GenericObjectPool#getMinIdle()
     */
    public static final int DEFAULT_MIN_IDLE = 0;


    private int maxTotal = DEFAULT_MAX_TOTAL;

    private int maxIdle = DEFAULT_MAX_IDLE;

    private int minIdle = DEFAULT_MIN_IDLE;

    //......
}

pool基本參數(shù)

基本參數(shù)

  • lifo
    GenericObjectPool 提供了后進(jìn)先出(LIFO)與先進(jìn)先出(FIFO)兩種行為模式的池榕莺。默認(rèn)為true留储,即當(dāng)池中有空閑可用的對象時(shí)救恨,調(diào)用borrowObject方法會返回最近(后進(jìn))的實(shí)例
  • fairness
    當(dāng)從池中獲取資源或者將資源還回池中時(shí) 是否使用java.util.concurrent.locks.ReentrantLock.ReentrantLock 的公平鎖機(jī)制,默認(rèn)為false

數(shù)量控制參數(shù)

  • maxTotal
    鏈接池中最大連接數(shù),默認(rèn)為8

  • maxIdle
    鏈接池中最大空閑的連接數(shù),默認(rèn)也為8

  • minIdle
    連接池中最少空閑的連接數(shù),默認(rèn)為0

超時(shí)參數(shù)

  • maxWaitMillis
    當(dāng)連接池資源耗盡時(shí)辨绊,等待時(shí)間钞脂,超出則拋異常怔昨,默認(rèn)為-1即永不超時(shí)
  • blockWhenExhausted
    當(dāng)這個(gè)值為true的時(shí)候逗威,maxWaitMillis參數(shù)才能生效惨缆。為false的時(shí)候东羹,當(dāng)連接池沒資源剂桥,則立馬拋異常。默認(rèn)為true

test參數(shù)

  • testOnCreate
    默認(rèn)false百姓,create的時(shí)候檢測是有有效渊额,如果無效則從連接池中移除,并嘗試獲取繼續(xù)獲取
  • testOnBorrow
    默認(rèn)false垒拢,borrow的時(shí)候檢測是有有效旬迹,如果無效則從連接池中移除,并嘗試獲取繼續(xù)獲取
  • testOnReturn
    默認(rèn)false求类,return的時(shí)候檢測是有有效奔垦,如果無效則從連接池中移除,并嘗試獲取繼續(xù)獲取
  • testWhileIdle
    默認(rèn)false尸疆,在evictor線程里頭椿猎,當(dāng)evictionPolicy.evict方法返回false時(shí)惶岭,而且testWhileIdle為true的時(shí)候則檢測是否有效,如果無效則移除

檢測參數(shù)

  • timeBetweenEvictionRunsMillis
    空閑鏈接檢測線程檢測的周期犯眠,毫秒數(shù)按灶。如果為負(fù)值,表示不運(yùn)行檢測線程筐咧。默認(rèn)為-1.

commons-pool2-2.4.2-sources.jar!/org/apache/commons/pool2/impl/GenericObjectPool.java

public GenericObjectPool(PooledObjectFactory<T> factory,
            GenericObjectPoolConfig config) {

        super(config, ONAME_BASE, config.getJmxNamePrefix());

        if (factory == null) {
            jmxUnregister(); // tidy up
            throw new IllegalArgumentException("factory may not be null");
        }
        this.factory = factory;

        idleObjects = new LinkedBlockingDeque<PooledObject<T>>(config.getFairness());

        setConfig(config);

        startEvictor(getTimeBetweenEvictionRunsMillis());
    }

commons-pool2-2.4.2-sources.jar!/org/apache/commons/pool2/impl/BaseGenericObjectPool.java

/**
     * The idle object evictor {@link TimerTask}.
     *
     * @see GenericKeyedObjectPool#setTimeBetweenEvictionRunsMillis
     */
    class Evictor extends TimerTask {
        /**
         * Run pool maintenance.  Evict objects qualifying for eviction and then
         * ensure that the minimum number of idle instances are available.
         * Since the Timer that invokes Evictors is shared for all Pools but
         * pools may exist in different class loaders, the Evictor ensures that
         * any actions taken are under the class loader of the factory
         * associated with the pool.
         */
        @Override
        public void run() {
            ClassLoader savedClassLoader =
                    Thread.currentThread().getContextClassLoader();
            try {
                if (factoryClassLoader != null) {
                    // Set the class loader for the factory
                    ClassLoader cl = factoryClassLoader.get();
                    if (cl == null) {
                        // The pool has been dereferenced and the class loader
                        // GC'd. Cancel this timer so the pool can be GC'd as
                        // well.
                        cancel();
                        return;
                    }
                    Thread.currentThread().setContextClassLoader(cl);
                }

                // Evict from the pool
                try {
                    evict();
                } catch(Exception e) {
                    swallowException(e);
                } catch(OutOfMemoryError oome) {
                    // Log problem but give evictor thread a chance to continue
                    // in case error is recoverable
                    oome.printStackTrace(System.err);
                }
                // Re-create idle instances.
                try {
                    ensureMinIdle();
                } catch (Exception e) {
                    swallowException(e);
                }
            } finally {
                // Restore the previous CCL
                Thread.currentThread().setContextClassLoader(savedClassLoader);
            }
        }
    }
  • numTestsPerEvictionRun
    在每次空閑連接回收器線程(如果有)運(yùn)行時(shí)檢查的連接數(shù)量鸯旁,默認(rèn)為3
private int getNumTests() {
        int numTestsPerEvictionRun = getNumTestsPerEvictionRun();
        if (numTestsPerEvictionRun >= 0) {
            return Math.min(numTestsPerEvictionRun, idleObjects.size());
        } else {
            return (int) (Math.ceil(idleObjects.size() /
                    Math.abs((double) numTestsPerEvictionRun)));
        }
    }
  • minEvictableIdleTimeMillis
    連接空閑的最小時(shí)間,達(dá)到此值后空閑連接將可能會被移除量蕊。默認(rèn)為1000L * 60L * 30L

  • softMinEvictableIdleTimeMillis
    連接空閑的最小時(shí)間铺罢,達(dá)到此值后空閑鏈接將會被移除,且保留minIdle個(gè)空閑連接數(shù)残炮。默認(rèn)為-1.

  • evictionPolicyClassName
    evict策略的類名韭赘,默認(rèn)為org.apache.commons.pool2.impl.DefaultEvictionPolicy

public class DefaultEvictionPolicy<T> implements EvictionPolicy<T> {

    @Override
    public boolean evict(EvictionConfig config, PooledObject<T> underTest,
            int idleCount) {

        if ((config.getIdleSoftEvictTime() < underTest.getIdleTimeMillis() &&
                config.getMinIdle() < idleCount) ||
                config.getIdleEvictTime() < underTest.getIdleTimeMillis()) {
            return true;
        }
        return false;
    }
}

這里就用到了上面提到的兩個(gè)參數(shù)

doc

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市蛋勺,隨后出現(xiàn)的幾起案子瓦灶,更是在濱河造成了極大的恐慌鸠删,老刑警劉巖抱完,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異刃泡,居然都是意外死亡巧娱,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門烘贴,熙熙樓的掌柜王于貴愁眉苦臉地迎上來禁添,“玉大人,你說我怎么就攤上這事桨踪±锨蹋” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵锻离,是天一觀的道長铺峭。 經(jīng)常有香客問我,道長汽纠,這世上最難降的妖魔是什么卫键? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮虱朵,結(jié)果婚禮上莉炉,老公的妹妹穿的比我還像新娘钓账。我一直安慰自己,他們只是感情好絮宁,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布梆暮。 她就那樣靜靜地躺著,像睡著了一般绍昂。 火紅的嫁衣襯著肌膚如雪惕蹄。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天治专,我揣著相機(jī)與錄音卖陵,去河邊找鬼。 笑死张峰,一個(gè)胖子當(dāng)著我的面吹牛泪蔫,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播喘批,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼撩荣,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了饶深?” 一聲冷哼從身側(cè)響起餐曹,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎敌厘,沒想到半個(gè)月后台猴,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡俱两,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年饱狂,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片宪彩。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡休讳,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出尿孔,到底是詐尸還是另有隱情俊柔,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布活合,位于F島的核電站雏婶,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏芜辕。R本人自食惡果不足惜尚骄,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望侵续。 院中可真熱鬧倔丈,春花似錦憨闰、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至宏邮,卻和暖如春泽示,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蜜氨。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工械筛, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人飒炎。 一個(gè)月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓埋哟,卻偏偏與公主長得像,于是被迫代替她去往敵國和親郎汪。 傳聞我的和親對象是個(gè)殘疾皇子赤赊,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn)煞赢,斷路器抛计,智...
    卡卡羅2017閱讀 134,629評論 18 139
  • 之前學(xué)習(xí)了一下Jedis的操作原理和JedisPool的相關(guān)實(shí)現(xiàn),但是在JedisPool的實(shí)現(xiàn)中對于JedisP...
    一只小哈閱讀 2,825評論 3 10
  • 前言 Apache-Commons-DBCP是數(shù)據(jù)庫連接池中一款優(yōu)秀的產(chǎn)品照筑,熟悉dbcp同學(xué)都知道吹截,dbcp底層“...
    許da廣閱讀 2,577評論 1 6
  • Spring Boot 參考指南 介紹 轉(zhuǎn)載自:https://www.gitbook.com/book/qbgb...
    毛宇鵬閱讀 46,773評論 6 342
  • 創(chuàng)建新的對象并初始化的操作,可能會消耗很多的時(shí)間朦肘。在這種對象的初始化工作包含了一些費(fèi)時(shí)的操作(例如饭弓,從一臺位于20...
    九都散人閱讀 37,587評論 5 13