Home Operation and Maintenance Linux Operation and Maintenance Introduction to session processing methods in Linux cluster/distributed environment

Introduction to session processing methods in Linux cluster/distributed environment

Sep 08, 2017 am 09:55 AM
linux session distributed

This article mainly introduces you to the five strategies for session processing in Linux cluster/distributed environment. The article introduces it in great detail through sample codes and pictures. It has certain reference learning value for everyone's study or work. Friends who need it, please follow the editor to learn together.

Preface

Generally, after we build a cluster environment, one issue we have to consider is how to handle sessions generated by user access. If no processing is done, users will log in frequently. For example, there are two servers A and B in the cluster. When the user visits the website for the first time, Nginx will forward the user request to server A through its load balancing mechanism. This will At this time, server A will create a Session for the user. When the user sends a request for the second time, Nginx will load balance the request to server B. At this time, server B does not have a Session, so the user will be kicked to the login page. This will greatly reduce the user experience and lead to the loss of users. This situation should never occur in the project.

We should process the generated Session to ensure user experience through sticky Session, Session copying or Session sharing.

Below I will explain 5 Session processing strategies and analyze their advantages and disadvantages. Not much to say, let’s take a look at the detailed introduction.

First type: sticky session

Principle: Sticky Session refers to locking the user to a certain server , such as the example mentioned above, when the user requests for the first time, the load balancer forwards the user's request to server A. If the load balancer sets a sticky session, then every subsequent request of the user will be forwarded to server A. , which is equivalent to sticking the user and server A together. This is the sticky Session mechanism.

Advantages: Simple, no need to do any processing on the session.

Disadvantages: Lack of fault tolerance. If the currently accessed server fails and the user is transferred to the second server, his session information will be invalid.

Applicable scenarios: Failure has a small impact on customers; server failure is a low-probability event.

Implementation method: Take Nginx as an example. Sticky Session can be achieved by configuring the ip_hash attribute in the upstream module.


upstream mycluster{
 #这里添加的是上面启动好的两台Tomcat服务器
 ip_hash;#粘性Session
  server 192.168.22.229:8080 weight=1;
  server 192.168.22.230:8080 weight=1;
}
Copy after login

Second type: server session replication

Principle: Any When the session on a server changes (addition, deletion, modification), the node will serialize all the contents of the session and then broadcast it to all other nodes, regardless of whether other servers need the session, to ensure session synchronization.

Advantages: Fault-tolerant, sessions between servers can respond in real time.

Disadvantages: It will put a certain pressure on the network load. If the number of sessions is large, it may cause network congestion and slow down server performance.

Implementation method:

① Set tomcat, server.xml turns on tomcat cluster function

Introduction to session processing methods in Linux cluster/distributed environment

Address: fill in Just use the local IP address and set the port number to prevent port conflicts.

② Add information to the application: notify that the application is currently in a cluster environment and supports distributed

Add options in web.xml<distributable/>

The third type: session sharing mechanism

Use distributed caching solutions such as memcached and redis, but Memcached or Redis must be cluster.

There are two mechanisms for using Session sharing. The two situations are as follows:

① Sticky session processing method

Principle: Different tomcat designated access Different master memcached. Information between multiple Memcached is synchronized, enabling master-slave backup and high availability. When a user accesses, he first creates a session in tomcat, and then copies the session to its corresponding memcahed. Memcache only plays a backup role, and all reading and writing are done on tomcat. When a certain tomcat hangs up, the cluster locates the user's access to the backup tomcat, and then searches for the session based on the SessionId stored in the cookie. If it cannot find the session, it goes to the corresponding memcached to retrieve the session. After finding it, it copies it to the backup tomcat. superior.

Introduction to session processing methods in Linux cluster/distributed environment

② Non-sticky session processing method

Principle: memcached does master-slave replication, and writes to sessions are written to the slave memcached service , reads are all read from the main memcached, tomcat itself does not store the session

Introduction to session processing methods in Linux cluster/distributed environment

Advantages:Fault-tolerant, session responds in real time.

Implementation method: Use the open source msm plug-in to solve the session sharing between tomcats: Memcached_Session_Manager (MSM)

a. 复制相关jar包到tomcat/lib 目录下

JAVA memcached客户端:spymemcached.jarmsm项目相关的jar包:1. 核心包,memcached-session-manager-{version}.jar2. Tomcat版本对应的jar包:memcached-session-manager-tc{tomcat-version}-{version}.jar序列化工具包:可选kryo,javolution,xstream等,不设置时使用jdk默认序列化。
Copy after login

b. 配置Context.xml ,加入处理Session的Manager

粘性模式配置:

Introduction to session processing methods in Linux cluster/distributed environment

非粘性配置:

Introduction to session processing methods in Linux cluster/distributed environment 

第四种:session持久化到数据库

原理:就不用多说了吧,拿出一个数据库,专门用来存储session信息。保证session的持久化。

优点:服务器出现问题,session不会丢失

缺点:如果网站的访问量很大,把session存储到数据库中,会对数据库造成很大压力,还需要增加额外的开销维护数据库。

第五种terracotta实现session复制

原理:Terracotta的基本原理是对于集群间共享的数据,当在一个节点发生变化的时候,Terracotta只把变化的部分发送给Terracotta服务器,然后由服务器把它转发给真正需要这个数据的节点。可以看成是对第二种方案的优化。

Introduction to session processing methods in Linux cluster/distributed environment

优点:这样对网络的压力就非常小,各个节点也不必浪费CPU时间和内存进行大量的序列化操作。把这种集群间数据共享的机制应用在session同步上,既避免了对数据库的依赖,又能达到负载均衡和灾难恢复的效果。

实现方式:篇幅原因,下篇再论。

小结

以上讲述的就是集群或分布式环境下,session的5种处理策略。其中就应用广泛性而言,第三种方式,也就是基于第三方缓存框架共享session,应用的最为广泛,无论是效率还是扩展性都很好。而Terracotta作为一个JVM级的开源群集框架,不仅提供HTTP Session复制,它还能做分布式缓存,POJO群集,跨越群集的JVM来实现分布式应用程序协调等,也值得学习一下。

The above is the detailed content of Introduction to session processing methods in Linux cluster/distributed environment. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

gate.io official website registration installation package link gate.io official website registration installation package link Feb 21, 2025 pm 08:15 PM

Gate.io is a highly acclaimed cryptocurrency trading platform known for its extensive token selection, low transaction fees and a user-friendly interface. With its advanced security features and excellent customer service, Gate.io provides traders with a reliable and convenient cryptocurrency trading environment. If you want to join Gate.io, please click the link provided to download the official registration installation package to start your cryptocurrency trading journey.

How to Install phpMyAdmin with Nginx on Ubuntu? How to Install phpMyAdmin with Nginx on Ubuntu? Feb 07, 2025 am 11:12 AM

This tutorial guides you through installing and configuring Nginx and phpMyAdmin on an Ubuntu system, potentially alongside an existing Apache server. We'll cover setting up Nginx, resolving potential port conflicts with Apache, installing MariaDB (

See all articles