我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么在Redis中实现延迟队列和分布式延迟队列

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么在Redis中实现延迟队列和分布式延迟队列

这篇文章给大家介绍怎么在Redis中实现延迟队列和分布式延迟队列,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

1. 实现一个简单的延迟队列。

  我们知道目前JAVA可以有DelayedQueue,我们首先开一个DelayQueue的结构类图。DelayQueue实现了Delay、BlockingQueue接口。也就是DelayQueue是一种阻塞队列。

怎么在Redis中实现延迟队列和分布式延迟队列

  我们在看一下Delay的类图。Delayed接口也实现了Comparable接口,也就是我们使用Delayed的时候需要实现CompareTo方法。因为队列中的数据需要排一下先后,根据我们自己的实现。Delayed接口里边有一个方法就是getDelay方法,用于获取延迟时间,判断是否时间已经到了延迟的时间,如果到了延迟的时间就可以从队列里边获取了。

怎么在Redis中实现延迟队列和分布式延迟队列

  我们创建一个Message类,实现了Delayed接口,我们主要把getDelay和compareTo进行实现。在Message的构造方法的地方传入延迟的时间,单位是毫秒,计算好触发时间fireTime。同时按照延迟时间的升序进行排序。我重写了里边的toString方法,用于将Message按照我写的方法进行输出。

package com.hqs.delayQueue.bean;import java.util.concurrent.BlockingQueue;import java.util.concurrent.DelayQueue;import java.util.concurrent.Delayed;import java.util.concurrent.TimeUnit;public class Message implements Delayed {    private String body;    private long fireTime;    public String getBody() {        return body;    }    public long getFireTime() {        return fireTime;    }    public Message(String body, long delayTime) {        this.body = body;        this.fireTime = delayTime + System.currentTimeMillis();    }    public long getDelay(TimeUnit unit) {        return unit.convert(this.fireTime - System.currentTimeMillis(), TimeUnit.MILLISECONDS);    }    public int compareTo(Delayed o) {        return (int) (this.getDelay(TimeUnit.MILLISECONDS) -o.getDelay(TimeUnit.MILLISECONDS));    }    @Override    public String toString() {        return System.currentTimeMillis() + ":" + body;    }    public static void main(String[] args) throws InterruptedException {        System.out.println(System.currentTimeMillis() + ":start");        BlockingQueue<Message> queue = new DelayQueue<>();        Message message1 = new Message("hello", 1000 * 5L);        Message message2 = new Message("world", 1000 * 7L);        queue.put(message1);        queue.put(message2);        while (queue.size() > 0) {            System.out.println(queue.take());        }    }}

  里边的main方法里边声明了两个Message,一个延迟5秒,一个延迟7秒,时间到了之后会将接取出并且打印。输出的结果如下,正是我们所期望的。

1587218430786:start
1587218435789:hello
1587218437793:world

  这个方法实现起来真的非常简单。但是缺点也是很明显的,就是数据在内存里边,数据比较容易丢失。那么我们需要采用Redis实现分布式的任务处理。

  2. 使用Redis的list实现分布式延迟队列。

  本地需要安装一个Redis,我自己是使用Docker构建一个Redis,非常快速,命令也没多少。我们直接启动Redis并且暴露6379端口。进入之后直接使用客户端命令即可查看和调试数据。

docker pull redisdocker run -itd --name redisLocal -p 6379:6379 redisdocker exec -it redisLocal /bin/bashredis-cli

  我本地采用spring-boot的方式连接redis,pom文件列一下,供大家参考。

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-parent</artifactId>        <version>2.2.6.RELEASE</version>        <relativePath/> <!-- lookup parent from repository -->    </parent>    <groupId>com.hqs</groupId>    <artifactId>delayQueue</artifactId>    <version>0.0.1-SNAPSHOT</version>    <name>delayQueue</name>    <description>Demo project for Spring Boot</description>    <properties>        <java.version>1.8</java.version>    </properties>    <dependencies>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>            <exclusions>                <exclusion>                    <groupId>org.junit.vintage</groupId>                    <artifactId>junit-vintage-engine</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-data-redis</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>        </dependency>        <dependency>            <groupId>redis.clients</groupId>            <artifactId>jedis</artifactId>            <version>2.9.0</version>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-devtools</artifactId>            <scope>runtime</scope>        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <optional>true</optional>        </dependency>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>            </plugin>        </plugins>    </build></project>

  加上Redis的配置放到application.properties里边即可实现Redis连接,非常的方便。

# redisredis.host=127.0.0.1redis.port=6379redis.password=redis.maxIdle=100redis.maxTotal=300redis.maxWait=10000redis.testOnBorrow=trueredis.timeout=100000

  接下来实现一个基于Redis的list数据类型进行实现的一个类。我们使用RedisTemplate操作Redis,这个里边封装好我们所需要的Redis的一些方法,用起来非常方便。这个类允许延迟任务做多有10W个,也是避免数据量过大对Redis造成影响。如果在线上使用的时候也需要考虑延迟任务的多少。太多几百万几千万的时候可能数据量非常大,我们需要计算Redis的空间是否够。这个代码也是非常的简单,一个用于存放需要延迟的消息,采用offer的方法。另外一个是启动一个线程, 如果消息时间到了,那么就将数据lpush到Redis里边。

package com.hqs.delayQueue.cache;import com.hqs.delayQueue.bean.Message;import lombok.extern.slf4j.Slf4j;import org.springframework.data.redis.core.RedisTemplate;import java.util.concurrent.BlockingQueue;@Slf4jpublic class RedisListDelayedQueue{    private static final int MAX_SIZE_OF_QUEUE = 100000;    private RedisTemplate<String, String> redisTemplate;    private String queueName;    private BlockingQueue<Message> delayedQueue;    public RedisListDelayedQueue(RedisTemplate<String, String> redisTemplate, String queueName, BlockingQueue<Message> delayedQueue) {        this.redisTemplate = redisTemplate;        this.queueName = queueName;        this.delayedQueue = delayedQueue;        init();    }    public void offerMessage(Message message) {        if(delayedQueue.size() > MAX_SIZE_OF_QUEUE) {            throw new IllegalStateException("超过队列要求最大值,请检查");        }        try {            log.info("offerMessage:" + message);            delayedQueue.offer(message);        } catch (Exception e) {            log.error("offMessage异常", e);        }    }    public void init() {        new Thread(() -> {            while(true) {                try {                    Message message = delayedQueue.take();                    redisTemplate.opsForList().leftPush(queueName, message.toString());                } catch (InterruptedException e) {                    log.error("取消息错误", e);                }            }        }).start();    }}

  接下来我们看一下,我们写一个测试的controller。大家看一下这个请求/redis/listDelayedQueue的代码位置。我们也是生成了两个消息,然后把消息放到队列里边,另外我们在启动一个线程任务,用于将数据从Redis的list中获取。方法也非常简单。

package com.hqs.delayQueue.controller;import com.hqs.delayQueue.bean.Message;import com.hqs.delayQueue.cache.RedisListDelayedQueue;import com.hqs.delayQueue.cache.RedisZSetDelayedQueue;import lombok.extern.slf4j.Slf4j;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.ResponseBody;import java.util.Set;import java.util.concurrent.*;@Slf4j@Controllerpublic class DelayQueueController {    private static final int CORE_SIZE = Runtime.getRuntime().availableProcessors();    //注意RedisTemplate用的String,String,后续所有用到的key和value都是String的    @Autowired    RedisTemplate<String, String> redisTemplate;    private static ThreadPoolExecutor taskExecPool = new ThreadPoolExecutor(CORE_SIZE, CORE_SIZE, 0, TimeUnit.SECONDS,            new LinkedBlockingDeque<>());    @GetMapping("/redisTest")    @ResponseBody    public String redisTest() {        redisTemplate.opsForValue().set("a","b",60L, TimeUnit.SECONDS);        System.out.println(redisTemplate.opsForValue().get("a"));        return "s";    }    @GetMapping("/redis/listDelayedQueue")    @ResponseBody    public String listDelayedQueue() {        Message message1 = new Message("hello", 1000 * 5L);        Message message2 = new Message("world", 1000 * 7L);        String queueName = "list_queue";        BlockingQueue<Message> delayedQueue = new DelayQueue<>();        RedisListDelayedQueue redisListDelayedQueue = new RedisListDelayedQueue(redisTemplate, queueName, delayedQueue);        redisListDelayedQueue.offerMessage(message1);        redisListDelayedQueue.offerMessage(message2);        asyncListTask(queueName);        return "success";    }    @GetMapping("/redis/zSetDelayedQueue")    @ResponseBody    public String zSetDelayedQueue() {        Message message1 = new Message("hello", 1000 * 5L);        Message message2 = new Message("world", 1000 * 7L);        String queueName = "zset_queue";        BlockingQueue<Message> delayedQueue = new DelayQueue<>();        RedisZSetDelayedQueue redisZSetDelayedQueue = new RedisZSetDelayedQueue(redisTemplate, queueName, delayedQueue);        redisZSetDelayedQueue.offerMessage(message1);        redisZSetDelayedQueue.offerMessage(message2);        asyncZSetTask(queueName);        return "success";    }    public void asyncListTask(String queueName) {        taskExecPool.execute(() -> {            for(;;) {                String message = redisTemplate.opsForList().rightPop(queueName);                if(message != null) {                    log.info(message);                }            }        });    }    public void asyncZSetTask(String queueName) {        taskExecPool.execute(() -> {            for(;;) {                Long nowTimeInMs = System.currentTimeMillis();                System.out.println("nowTimeInMs:" + nowTimeInMs);                Set<String> messages = redisTemplate.opsForZSet().rangeByScore(queueName, 0, nowTimeInMs);                if(messages != null && messages.size() != 0) {                    redisTemplate.opsForZSet().removeRangeByScore(queueName, 0, nowTimeInMs);                    for (String message : messages) {                        log.info("asyncZSetTask:" + message + " " + nowTimeInMs);                    }                    log.info(redisTemplate.opsForZSet().zCard(queueName).toString());                }                try {                    TimeUnit.SECONDS.sleep(1);                } catch (InterruptedException e) {                    e.printStackTrace();                }            }        });    }}

  我就不把运行结果写出来了,感兴趣的同学自己自行试验。当然这个方法也是从内存中拿出数据,到时间之后放到Redis里边,还是会存在程序启动的时候,任务进行丢失。我们继续看另外一种方法更好的进行这个问题的处理。

3.使用Redis的zSet实现分布式延迟队列。

  我们需要再写一个ZSet的队列处理。下边的offerMessage主要是把消息直接放入缓存中。采用Redis的ZSET的zadd方法。zadd(key, value, score) 即将key=value的数据赋予一个score, 放入缓存中。score就是计算出来延迟的毫秒数。

package com.hqs.delayQueue.cache;import com.hqs.delayQueue.bean.Message;import lombok.extern.slf4j.Slf4j;import org.springframework.data.redis.core.RedisTemplate;import java.util.concurrent.BlockingQueue;@Slf4jpublic class RedisZSetDelayedQueue {    private static final int MAX_SIZE_OF_QUEUE = 100000;    private RedisTemplate<String, String> redisTemplate;    private String queueName;    private BlockingQueue<Message> delayedQueue;    public RedisZSetDelayedQueue(RedisTemplate<String, String> redisTemplate, String queueName, BlockingQueue<Message> delayedQueue) {        this.redisTemplate = redisTemplate;        this.queueName = queueName;        this.delayedQueue = delayedQueue;    }    public void offerMessage(Message message) {        if(delayedQueue.size() > MAX_SIZE_OF_QUEUE) {            throw new IllegalStateException("超过队列要求最大值,请检查");        }        long delayTime = message.getFireTime() - System.currentTimeMillis();        log.info("zset offerMessage" + message + delayTime);        redisTemplate.opsForZSet().add(queueName, message.toString(), message.getFireTime());    }}

  上边的Controller方法已经写好了测试的方法。/redis/zSetDelayedQueue,里边主要使用ZSet的zRangeByScore(key, min, max)。主要是从score从0,当前时间的毫秒数获取。取出数据后再采用removeRangeByScore,将数据删除。这样数据可以直接写到Redis里边,然后取出数据后直接处理。这种方法比前边的方法稍微好一些,但是实际上还存在一些问题,因为依赖Redis,如果Redis内存不足或者连不上的时候,系统将变得不可用。

4. 总结一下,另外还有哪些可以延迟队列。

  上面的方法其实还是存在问题的,比如系统重启的时候还是会造成任务的丢失。所以我们在生产上使用的时候,我们还需要将任务保存起来,比如放到数据库和文件存储系统将数据存储起来,这样做到double-check,双重检查,最终达到任务的99.999%能够处理。

  其实还有很多东西可以实现延迟队列。

  1) RabbitMQ就可以实现此功能。这个消息队列可以把数据保存起来并且进行处理。

  2)Kafka也可以实现这个功能。

  3)Netty的HashedWheelTimer也可以实现这个功能。

关于怎么在Redis中实现延迟队列和分布式延迟队列就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

怎么在Redis中实现延迟队列和分布式延迟队列

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么在Redis中实现延迟队列和分布式延迟队列

这篇文章给大家介绍怎么在Redis中实现延迟队列和分布式延迟队列,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。1. 实现一个简单的延迟队列。  我们知道目前JAVA可以有DelayedQueue,我们首先开一个Dela
2023-06-15

如何实现 Java 延迟队列?(java延迟队列怎么实现)

在Java开发中,延迟队列是一种非常实用的数据结构,它允许我们在指定的延迟时间后才执行队列中的元素。本文将详细介绍Java延迟队列的实现方式,帮助你更好地理解和使用它。一、延迟队列的概念延迟队列是一种特殊的队列,其中的元
如何实现 Java 延迟队列?(java延迟队列怎么实现)
Java2024-12-20

redis延迟队列如何实现

redis 延迟队列的实现采用有序集合,将任务以分数(时间戳)存储,定期检索已到期的任务,删除并执行。步骤如下:创建有序集合 delayed_queue,将任务以分数(时间戳)存储。检索已到期的任务,分数介于 0 到当前时间戳之间。删除已到
redis延迟队列如何实现
2024-06-12

Redis如何实现延迟队列

目录Redis实现延迟队列Redis延迟队列Redis实现延时队列的优化方案延时队列的应用延时队列的实现总结Redis实现延迟队列Redis延迟队列Redis 是通过有序集合(ZSet)的方式来实现延迟消息队列的,ZSet 有一个 Sc
2023-04-28

使用Redis怎么实现延迟队列

本篇文章给大家分享的是有关使用Redis怎么实现延迟队列,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。方案一:采用通过定时任务采用数据库/非关系型数据库轮询方案。优点:1. 实
2023-06-15

如何在Redis中实现延迟任务队列

在Redis中实现延迟任务队列可以使用有序集合(Sorted Set)和定时任务的方式来实现。以下是一个基本的实现方法:将任务存储在一个有序集合中,按照任务的执行时间作为分数(score),任务的内容作为值(value)来存储。例如,使用Z
如何在Redis中实现延迟任务队列
2024-04-09

Java 延迟队列的实现方式究竟有哪些?(java延迟队列的实现方式是什么)

在Java开发中,延迟队列是一种非常实用的数据结构,它允许我们在指定的延迟时间后再取出队列中的元素。这种特性在许多场景下都非常有用,比如任务调度、消息队列等。那么,Java延迟队列的实现方式究竟有哪些呢?一、DelayQueue简介
Java 延迟队列的实现方式究竟有哪些?(java延迟队列的实现方式是什么)
Java2024-12-14

Redis实现延迟队列的方法是什么

这篇文章主要介绍“Redis实现延迟队列的方法是什么”,在日常操作中,相信很多人在Redis实现延迟队列的方法是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Redis实现延迟队列的方法是什么”的疑惑有所
2023-07-05

Redis实现延迟队列的方案总结

Redis实现的延迟队列适用于处理一些比较简单的业务,如发送邮件、发送通知等,对于复杂的业务不适用于Redis的延迟任务方案。​

thinkphp6使用think-queue怎么实现普通队列和延迟队列

本文小编为大家详细介绍“thinkphp6使用think-queue怎么实现普通队列和延迟队列”,内容详细,步骤清晰,细节处理妥当,希望这篇“thinkphp6使用think-queue怎么实现普通队列和延迟队列”文章能帮助大家解决疑惑,下
2023-06-30

SpringBoot实现redis延迟队列的示例代码

本篇文章介绍了SpringBoot实现Redis延迟队列的示例代码,采用了zset有序集合和list类型。入队任务时设置时间戳score,时间戳到达时任务从zset弹出执行,同时从list中移除。定时任务定时执行任务和移除过期任务,保证队列的正常运作。需要注意redisTemplate的连接池配置、定时任务执行间隔、过期任务清理策略等细节。
SpringBoot实现redis延迟队列的示例代码
2024-04-02

Redis实现延迟队列的全流程详解

Redisson是Redis服务器上的分布式可伸缩Java数据结构,这篇文中主要为大家介绍了Redisson实现的优雅的延迟队列的方法,需要的可以参考一下
2023-03-14

Golang实现基于Redis的可靠延迟队列

目录前言原理详解pending2ReadyScriptready2UnackScriptunack2RetryScriptackconsume前言在之前探讨延时队列的文章中我们提到了 redisson delayqueue 使用 redi
2022-06-22

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录