Weblogic Session複製策略與方式

perfychi發表於2014-07-31
From:http://guojuanjun.blog.51cto.com/277646/1063486/



Weblogic中,HttpSession Replication的方式是透過在weblogic.xml中的session- descriptor的定義persistent-store-type來實現的. persistent-store-type可選的屬性包括memory, replicated, replicated_if_clustered, async-replicated, async-replicated-if-clustered, file, async-jdbc, jdbc, cookie, coherence-web.

·         memory—Disables persistent session storage.

·         replicated—Same as memory, but session data is replicated across the clustered servers.

·         replicated_if_clustered—If the Web application is deployed on a clustered server, the in-effect persistent-store-type will be replicated. Otherwise, memory is the default.

·         async-replicated—Enables asynchronous session replication in an application or Web application. See  in Performance and Tuning for Oracle WebLogic Server.

·         async-replicated-if-clustered—Enables asynchronous session replication in an application or Web application when deployed to a cluster environment. If deployed to a single server environment, then the session persistence/replication defaults to in-memory. This allows testing on a single server without deployment errors.

·         file—Uses file-based persistence (See also session-descriptor).

·         async-jdbc—Enables asynchronous JDBC persistence for HTTP sessions in an application or Web application. See.

·         jdbc—Uses a database to store persistent sessions. (see also session-descriptor).

·         cookie—All session data is stored in a cookie in the user's browser.

·         Coherence*-web For more information, see .

Replicatedasync-replicated只用部置叢集在叢集上,而replicated_if_clusteredasync-replicated-if-clustered也可以部署在獨立例項上。都不能只部署在叢集的部分例項中上。

參考:http://docs.oracle.com/cd/E23943_01/web.1111/e13712/weblogic_xml.htm#i1071981

例如:

xml version="1.0" encoding="UTF-8"?>

<weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app"xmlns:xsi=""xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd"> 

  <session-descriptor> 

    <!-- replicated --&gt

    <persistent-store-type>replicated_if_clusteredpersistent-store-type>

    <!--memory   --&gt

    <timeout-secs>60timeout-secs> 

  session-descriptor> 

weblogic-web-app>

1.       Load BlanaceSession Affinity

由於這裡的機制是主從備份所以叢集中只有兩個例項會有同一HTTP Session的資料當叢集裡的例項多於2個以上時,為了確保後續的HTTP請求能訪問到Session資料必須要求前置分發請求的load balancer支援session affinity(sticky session/seamless session). Session Affinity就是能夠把特定Session的所有請求都路由到第一次建立Session的同一物理機器上;否則後續的請求就有可能不能夠訪問 Session資料了.

如果設定成非Replication方式即memory模式生成的JSESSIONID類似:

gGMWQy2LcSTHTSyLdyLpqYGskYpXPpRJkc2VB618mSKSQC9rgsCv!-1274119771!1353236040031

可以看出這個session被二個!分隔成三部分。第一部分應該是真正的sessionid, -1274119771是例項標識。而1353236040031session建立時間。

一旦配置成Replicated模式,Weblogic會生成的SessionID類似:

sHkLQyQTnJQQ217Js7SmQL2x9hBb0JQ5hFm7n4QpNkZL7wMnLbPn!-9326295!959096067!1353236595093

這裡出現三個!,第二,三部分為主備例項的標識。

SessionID格式的: sessionid!primary_server_id[!secondary_server_id]!creationTime

2.配置weblogic Load Blanace

配置方式參考http://guojuanjun.blog.51cto.com/277646/748768

1)       透過訪問,頁面顯示:

session Id:

KSW2QyJFzVcnFxQTWpSLJLhJTTQsCzLGqlM1ShnCvSyKm2r4k29h!-1458785082!2113129367!1353238917906

session CreateTime :1353238917906

current instance :Server1

可以看到該sessionprimary_server_id-1458785082,即Server1(每個serverid是啟動時生成的,所以也是變化,所以你的測試可能與我不一樣。) secondary_server_id2113129367,server3. server3Server1的備點。

2)       停止Server1,再次訪問頁面顯示:

session Id:

KSW2QyJFzVcnFxQTWpSLJLhJTTQsCzLGqlM1ShnCvSyKm2r4k29h!2113129367!-481865348!1353238917906

session CreateTime :1353238917906

current instance :Server3

可以看到sessionId沒有變化,而該sessionprimary_server_id2113129367,Server3secondary_server_id-481865348,server0.Server0Server3的備點。

3)       停止Server3,再次訪問頁面顯示:

session Id:

KSW2QyJFzVcnFxQTWpSLJLhJTTQsCzLGqlM1ShnCvSyKm2r4k29h!-481865348!NONE!1353238917906

session CreateTime :1353238917906

current instance :Server0

可以看到sessionId沒有變化,該sessionprimary_server_id-481865348,Server0secondary_server_idNONE,即該session沒有備點.

透過測試我們大致可以猜出weblogic session複製的基本思路:

1)       每個例項都有兩份Session資料。主資料和備份資料。

2 當請求的sessionIdprimary_server_id為當前例項時,從主資料裡獲取session響應請求,否則進行3).

3 當請求的sessionIdsecondary_server_id為當前例項時,從備份資料裡取session響應請求。並修正該sessionprimary_server_id/secondary_server_id為自已及其的備點。

 

  3. Weblogic支援的負載均衡

       Weblogic支援兩種機制的負載均衡

1)       Proxy plug-ins

Weblogic內建外掛,即http://guojuanjun.blog.51cto.com/277646/748768中提到的mod_wl.

如果一個例項失敗,plug-in會定位該sessionsecondary_server,將請求發給它。

2)       Hardware load balancers

Hardware load balancers,比如F5. 這些第三方產品並不能按weblogic的意願,定位sessionsecondary_server。他會隨機選機選擇一個可用例項發給他。然後該例項透過session id裡的secondary_server_id,secondary_server獲取資料。

雖然weblogic允許這種請求的隨機轉發,但並不建議使用會話不親和方式,因為這將帶來資料併發和一致性問題。

參考文獻:

1.       http://blog.csdn.net/mobicents/article/details/7067957

2.       

3.  http://stackoverflow.com/questions/6429990/weblogic-jsessionid

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-1243307/,如需轉載,請註明出處,否則將追究法律責任。

相關文章