Home> Database> Redis> body text

12 key points often asked in redis interviews (with answers)

Release: 2022-02-14 11:26:47
forward
8496 people have browsed it

This article brings you a summary of some questions that are often asked during interviewsRedis. It simulates how the interviewer goes into depth on the topic of Redis step by step, and comprehensively examines the candidate's understanding of Redis. I hope it will be helpful to everyone.

12 key points often asked in redis interviews (with answers)

Recommended study: "2022 latest redis interview questions and answers"

Frequently asked questions in redis interviews 12 key points

Redis is an unavoidable threshold in interviews. As long as you write that you have used Redis in your resume, you will definitely not be able to escape.

Xiao Zhang:

Hello, interviewer. I'm here for an interview.

Interviewer:

Hello, Xiao Zhang. I have read your resume and I am proficient in Redis, so I will just ask you a few Redis-related questions. First of all, my question is, isRedis single-threaded or multi-threaded?

Xiao Zhang:

The threading model used in different versions of Redis is different. Before Redis version 4.0, the single-threaded model was used, and after version 4.0, it was increased Multi-threading support.

Before 4.0, although we said that Redis was single-threaded, it only meant that its network I/O thread and Set and Get operations were completed by one thread. However, Redis persistence and cluster synchronization are still completed using other threads.

After 4.0, multi-threading support was added, mainly reflected in the asynchronous deletion function of big data, such asunlink key,flushdb async,flushall asyncWait

Interviewer:

The answer is very good,Then why did Redis choose to use single thread before 4.0? And is it so fast using single thread?

Xiao Zhang:

I think the main reason for choosing single thread is that it is simple to use, there is no lock competition, all operations can be completed without locks, and there are no deadlocks and threads Switching brings performance and time overhead, but at the same time, single thread cannot fully exert the performance of multi-core CPU.

As for why single thread is so fast, I think there are mainly the following reasons:

  • Most operations of Redis are completed in memory, and the execution efficiency in memory itself It is fast and uses efficient data structures such as hash tables and skip tables.

  • Using a single thread avoids multi-thread competition, saves the time and performance overhead caused by multi-thread switching, and does not cause deadlock.

  • The I/O multiplexing mechanism is used to handle a large number of client Socket requests, because it is based on a non-blocking I/O model, which allows Redis to efficiently communicate over the network. , the I/O read and write process is no longer blocked.

Interviewer:

Yes,How does Redis achieve no data loss?

Xiao Zhang:

Redis data is stored in the memory. In order to ensure that the Redis data is not lost, it is necessary to store the data from the memory to the disk so that it can be restarted after the server is restarted. Afterwards, the original data can be restored from the disk. This is the data persistence of Redis. There are three ways to persist Redis data.

  • AOF log (Append Only File, file append mode): records all operation commands and appends them to the file in the form of text.

  • RDB Snapshot (Redis DataBase): Write the memory data at a certain moment to the disk in binary form.

  • Hybrid persistence method: Redis 4.0 adds a new hybrid persistence method, integrating the advantages of RDB and AOF.

Interviewer:

Then please talk about the implementation principles of AOF and RDB respectively.

Xiao Zhang:

AOF uses post-write logging. Redis first executes the command to write the data into the memory, and then records the log to the file. The AOF log records operation commands, not actual data. If the AOF method is used for fault recovery, the entire log needs to be executed.

12 key points often asked in redis interviews (with answers)

RDB uses a memory snapshot method. It records the data at a certain moment, not the operation. Therefore, when using the RDB method for fault recovery, you only need to directly The RDB file can be read into memory to achieve quick recovery.

Interviewer:

You just mentioned that AOF uses the "post-write log" method, while the MySQL we usually use uses the "pre-write log" method, thenWhy does Redis need to execute the command first and then write the data to the log?

Xiao Zhang: My forehead started to sweat. What are the questions you asked? . .

Well, this is mainly because Redis does not check the syntax of the command before writing it to the log, so it only records the successfully executed command to avoid recording the wrong command, and it is not possible to write the log after the command is executed. Will block the current write operation.

Interviewer:

What are the risks of writing a diary after?

Xiao Zhang:

I... I don't know how to do this.

Interviewer:

Well, there are two main risks that may occur when writing logs:

  • Data may be lost: If Redis just After executing the command, if a failure occurs, the command may be lost.

  • May block other operations: AOF log is actually executed in the main thread, so when Redis writes the log file to disk, it will still block subsequent operations and cannot be executed.

I still have a question:Will RDB block threads when taking snapshots?

Xiao Zhang:

Redis provides two commands to generate RDB snapshot files, namely save and bgsave. The save command is executed in the main thread and will cause blocking. The bgsave command will create a child process for writing RDB files, avoiding blocking the main thread. This is also the default configuration of Redis RDB.

Interviewer:

RDBCan the data be modified when taking a snapshot?

Xiao Zhang:

Save is synchronous and will block client commands. It can be modified during bgsave.

Interviewer:

SoHow does Redis solve the problem of allowing data modification when bgsave takes a snapshot?

Xiao Zhang: (Why are you still asking...I™ don’t know how!)

Um, I’m not sure about this...

Interview Official:

This is mainly implemented using the sub-threads ofbgsave. The specific operations are as follows:

If the main thread performs a read operation, the main thread andbgsaveThe sub-processes do not affect each other;

If the main thread performs a write operation, a copy of the modified data will be copied, and thenbgsaveThe sub-process will write the copy data RDB file, during this process, the main thread can still directly modify the original data.

12 key points often asked in redis interviews (with answers)

It should be noted that the frequency of Redis execution of RDB is very important, because this will affect the integrity of snapshot data and the stability of Redis, so after Redis 4.0, an additionalAOF and RDB mixed data persistence mechanism: Write the data to the file in the form of RDB, and then store the subsequent operation commands in the file in the AOF format, which not only ensures the restart speed of Redis, but also reduces the data Risk of loss.

Xiao Zhang:

I learned it.

Interviewer:

Then can you tell me how Redis achieves high availability?

Xiao Zhang:

There are three main ways to achieve high availability in Redis: master-slave replication, sentinel mode, and Redis cluster.

Master-slave replication

Synchronize data from a previous Redis server to multiple slave Redis servers, that is, a master-slave model. This is similar to MySQL The principle of master-slave replication is the same.

12 key points often asked in redis interviews (with answers)

Sentinel Mode

When using the Redis master-slave service, there will be a problem, that is, when the Redis master-slave server appears When a failure occurs, manual recovery is required. In order to solve this problem, Redis added the sentinel mode (because the sentinel mode can monitor the master and slave servers and provide automatic disaster recovery functions).

12 key points often asked in redis interviews (with answers)

Redis Cluster (Cluster)

Redis Cluster is a distributed and decentralized operating mode, which is based on Redis 3.0 The Redis cluster solution launched in the version distributes data on different servers to reduce the system's dependence on a single master node, thereby improving the read and write performance of the Redis service.

12 key points often asked in redis interviews (with answers)

Interviewer:

Use the sentinel mode to ensure that there is a copy of the data, and there is a sentinel monitoring on the availability. Once the master goes down, the slave will be elected. The node is the master node, which already meets the needs of our production environment.So why do we still need to use cluster mode?

Xiao Zhang:

Well, the sentinel mode is still the master-slave mode. In the master-slave mode, we can expand the read concurrency capability by adding salve nodes, but there is no way to expand it. Writing capacity and storage capacity, storage capacity can only be the upper limit that the master node can carry. Therefore, in order to expand writing capabilities and storage capabilities, we need to introduce cluster mode.

Interviewer:

There are so many Master nodes in the cluster, how does the redis cluster determine which node to choose when storing?

Xiao Zhang:

This should be using some kind of hash algorithm, but I’m not sure. . .

Interviewer:

Okay, that’s it for today’s interview. You go back and wait for our interview notification.

Xiao Zhang:

Okay, thank you interviewer, can you tell me how redis cluster implements node selection?

Interviewer:

Redis Cluster uses aconsistent hash algorithm to implement node selection. As for what a consistent hash algorithm is, you can go back and see for yourself .

Redis Cluster divides itself into 16384 Slots. Hash slots are similar to data partitions. Each key-value pair will be mapped to a hash slot according to its key. Specific execution The process is divided into two major steps.

  • Calculate a 16-bit value based on the key of the key-value pair according to the CRC16 algorithm.

  • Then use the 16bit value to modulo 16384 to get a modulus in the range of 0~16383. Each modulus represents a hash slot with a corresponding number.

Each Redis node is responsible for processing a part of the slots. If you have three master nodes ABC, the slots each node is responsible for are as follows:

12 key points often asked in redis interviews (with answers)

This implements the selection of cluster nodes.

Recommended learning: "Redis video tutorial", "2022 latest redis interview questions and answers"

The above is the detailed content of 12 key points often asked in redis interviews (with answers). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:公众号苏三说技术
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!