Home > Database > Redis > body text

How to use Redis to lock resources

WBOY
Release: 2023-05-28 11:01:45
forward
929 people have browsed it

1. Overview

As this technology continues to be updated and iterated, the concept of distribution is gaining more and more weight in enterprises! When talking about distributed, distributed locks will inevitably be mentioned. At this stage, there are three mainstream implementation methods of distributed locks, Zookeeper, DB, Redis, we use Redis as an example in this article!

From our perspective, these three properties are the minimum guarantees required to effectively use distributed locks.

  1. Safety features: mutually exclusive. At any given moment, only one client can hold the lock.

  2. Vitality attribute: No deadlock. Ultimately, the lock can always be obtained even if the client locking the resource crashes or partitions.

  3. Activity: fault tolerance. As long as a majority of Redis nodes are running, clients can acquire and release locks.

2. Challenges brought by redis multi-node implementation of distributed locks

The simplest way for us to use Redis to lock resources is:

  1. Create a lock in the instance.

  2. Locks usually exist for a limited time using the Redis expiration function, so they will eventually be released, and will eventually be deleted after a given period.

  3. When the client needs to release the resource, it will remove the lock.

At first glance, there seems to be no problem. But let’s take a closer look. This implementation scheme does not seem to have any problems in a redis stand-alone environment! But what if the node goes down? Okay, so let's add a slave node! If the main server is down, use this node! But let’s take a look and see if she’s really guaranteed to be available?

When talking about the fatal flaw of this, we need to understand one knowledge point, Redis replication is asynchronous.

  1. Client A acquires the lock in the main server.

  2. The master crashed before transferring the lock copy to the slave.

  3. slavePromoted to ​ master.

  4. Client B acquires the lock because the slave does not have an object for the lock, and the acquisition is successful!

Obviously, this is wrong. The master node went down before it had time to synchronize the data, so the slave node does not have the data, causing the distributed lock to fail. Then the authorantirez’s point of view is how to solve this?

3. Redlock Algorithm

The author believes that we should use multiple Redis. These nodes are completely independent and do not require the use of replication or any system for coordinating data. The process of multiple redis systems acquiring locks becomes the following steps:

  1. Get the current server time in milliseconds

  2. Try to use Use the same key and random value to acquire the lock. There should be a timeout for each machine when acquiring the lock. For example, if the lock expiration time is 10s, then the timeout for acquiring a single node lock should be about 5 to 50 milliseconds. He is like this The purpose is to ensure that the client is connected to the failed machine, which wastes extra time! If the data is not obtained within the timeout period, the node will be abandoned and the next node will be obtained until all nodes are obtained!

  3. After the acquisition is completed, obtain the current time minus the time obtained in step 1. If and only if more than half of the clients obtain successfully and the time to obtain the lock is less than the lock amount timeout, it is proved that The lock takes effect!

  4. After acquiring the lock, the lock timeout is equal to The set valid time - the time it takes to acquire the lock

  5. #If more than half of the machines that acquire the lock are not satisfied, or the lock timeout is negative after calculation, etc. operation, the system will try to unlock all instances. Even if some instances fail to acquire the lock successfully, they will still be tried to unlock!

  6. Release the lock, simply release the lock in all instances, regardless of whether the client thinks it can successfully lock the given instance.

4. But can Redlock really solve the problem?

Martin Kleppmann published an article task, Redlock cannot guarantee the security of the lock!

He believes that there are only two uses of locks

  1. #Improve efficiency and use locks to ensure that a task does not need to be executed twice. For example (very expensive calculation)

  2. To ensure accuracy, a lock mechanism is used to ensure that tasks are performed in the normal process order to avoid two nodes operating on the same data at the same time, resulting in File conflicts and data loss.

For the first reason, we have a certain tolerance for locks. Even if two nodes work at the same time, the impact on the system will only be extra effort. Some computational cost, no additional impact. At this time, using a single point of Redis can solve the problem very well. There is no need to use RedLock to maintain so many Redis instances and increase the maintenance cost of the system.

1. Disadvantages caused by the timeout of distributed locks

But for the second scenario, you should be more cautious, because it is likely to involve some monetary transactions. If the lock fails, And if two nodes process the same data at the same time, the result will be file corruption, data loss, permanent inconsistency, or monetary loss!

Let's assume a scenario where we have two clients. Each client must get the lock before it can save data to the database. What problems will occur if we use the RedLock algorithm to implement it? In RedLock, in order to prevent deadlock, the lock has an expiration time, but Martin thinks this is unsafe! The flowchart looks like this!

How to use Redis to lock resources

After client 1 successfully obtained the lock, it started execution. Halfway through the execution, a Full GC occurred in the system, the system service was suspended, and the lock timed out after a while.

After client 2 waited for client 1's lock to time out, it successfully obtained the lock and began to perform the warehousing operation. After completion, client 1 completed the Full GC and performed another warehousing operation! This is unsafe! How to solve it?

Martin proposed an implementation mechanism similar to optimistic locking. The example diagram is as follows:

How to use Redis to lock resources

After client 1 was suspended for a long time, client 2 obtained the lock and started writing the library, carrying the token 34. After writing the library, client 1 woke up. The warehousing operation started, but because the token carried was 33 which was smaller than the latest token, the submission was rejected!

Even if there is a problem with the system that causes a hang, this idea seems complete to ensure that the data is still processed correctly. But think about it:

  • A datastore is a linearizable store if it can always accept writes only if your token is larger than all past tokens , which is equivalent to using a database to implement a distributed lock system, then the role of RedLock becomes minimal! You don’t even need to use redis to guarantee distributed locks!

2.RedLock is strongly dependent on the system clock

Recall the steps of Redlock algorithm to obtain the lock, you will find the effectiveness of the lock It is strongly dependent on the current system clock. We assume:

We have, A B C D E five redis nodes:

  1. Client 1 gets the nodes A, B, C locking. D and E cannot be accessed due to network problems.

  2. The clock on node C jumps forward, causing the lock to expire.

  3. Client 2 acquires the lock of nodes C, D, and E. A and B cannot be accessed due to network problems.

  4. Now, both clients 1 and 2 think they hold the lock.

A similar problem may occur if C crashes and restarts immediately before persisting the lock to disk.

Martin believes that the system time step mainly comes from two aspects (and the solution given by the author):

  1. Human modification.

  • What can you say about human modification? There is no way to prevent people from causing destruction.

  • A jump-time clock update was received from the NTP service.

    • Operation and maintenance personnel need to deal with the problem of NTP accepting step clock updates. When you need to update the step time to the server, you should take small steps and run quickly. Modify multiple times, and the time for each update should be as small as possible.

    3. Based on programming language to make up for the shortcomings caused by the timeout of distributed locks

    We review 1 point of view and delve into the root cause of this defect in abstraction The reason is to solve a series of problems caused by lock failure caused by system downtime and imposing an expiration time on the lock. Under abnormal circumstances, the execution time of the program (business) is greater than the lock expiration time. Can we start from this? Should we consider this aspect and use programs to solve such a dead situation?

    We can ensure that the execution time of the business program is absolutely less than the lock timeout, so as to avoid the problem that the lock expiration time is less than the business time.

    In the java language, redisson implements a A mechanism that ensures that the lock expiration time is absolutely greater than the execution time of the business program. Officially called the watchdog mechanism (Watchdog), its main principle is that after the program successfully acquires the lock, it will fork a child thread to continuously renew the lock until the lock is released! His schematic diagram roughly looks like this:

    How to use Redis to lock resources

    redisson uses daemon threads to renew locks. (The role of daemon threads: when main thread is destroyed, it will be destroyed together with main thread.) Prevent the program After the downtime, the thread continues to live, causing a deadlock!

    In addition, Redisson also implements and optimizes RedLock algorithm, fair lock, reentrant lock, chain and other operations, making the implementation of Redis distributed lock easier and more efficient!

    The above is the detailed content of How to use Redis to lock resources. For more information, please follow other related articles on the PHP Chinese website!

    Related labels:
    source:yisu.com
    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
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template