美文网首页
基于 RocksDB 的持久化队列

基于 RocksDB 的持久化队列

作者: 李传亮 | 来源:发表于2020-01-14 17:55 被阅读0次

https://github.com/artiship/rocks-queue-java

RocksDB 是一个基于 write-ahead-log 和 log-structured-merge-tree 实现的嵌入式的 KV 数据库. 如果通过类比来理解,可以认为它是单机版的 HBase. 这篇文章介绍和讨论的是如何基于 RocksDB 实现一个持久化队列,这种持久化队列的适用场景有:

  • 需要将数据持久化而不是存放在内存队列中,以防止当应用崩溃时的数据丢失
  • 当客户端和服务器端的生产消费速度不匹配,基于内存的队列存储不足,可以外溢到磁盘

1.如何在一个 KV 数据库上实现队列?

  1. RocksQueuequeue_name_queue_name 两个列簇组成. queue_name 用来存储数据, _queue_name 存储队列的 headtail 指针.
  2. RocksStore 是一个创建队列的工厂且负责维护 <queue_name, RocksQueue> 的关系。

2.使用

2.1 创建一个队列

StoreOptions storeOptions = StoreOptions.builder().database("rocks_db").build();
                    
rocksStore = new RocksStore(storeOptions);
queue = rocksStore.createQueue(generateQueueName());

2.2 出、入队列(Enqueue,Dequeue)

byte[] something = "something".getBytes();
long id = queue.enqueue(something);

QueueItem dequeue = queue.dequeue();
assertArrayEquals(dequeue.getValue(), something);

2.3 获取、删除队头(Consume, RemoveHead)

你可通过 consume 获取队列头然后处理, 然后使用 removeHead 方便删除队头.

QueueItem head = queue.consume();
log.info("Processing queue head {}", head);

queue.removeHead()

3. JMX 监控指标

项目提供了一些 jmx 指标如下

RocksStore

Metric Name Description
DatabaseName RocksStore database name
RocksdbLocation RocksStore location
RocksDBDiskUsageInBytes The current size for RocksStore in bytes
NumberOfQueueCreated How many queues have been created in store
IsOpen Is RocksStore been open
IsClosed Is RocksStore been closed

RocksQueue

Metric Name Description
QueueName The queue name
QueueSize Queue size
AccumulateBytes The current size of the queue in bytes,enqueue will increase and dequeue decrease
HeadIndex The head of the queue
TailIndex The tail oft the queue
IsCreated Has the queue been created
IsClosed Has the queue been closed
SecondsSinceLastEnqueue Seconds since the last enqueue in ms
SecondsSinceLastConsume Seconds since the last consume in ms
SecondsSinceLastDequeue Seconds since the last dequeue in ms

Benchmark 测试

Benchmark Mode Cnt Score Error Units
RocksQueueBenchmark.consume avgt 50 12576.618 ± 17929.697 ns/op
RocksQueueBenchmark.dequeue avgt 50 2168917.940 ± 1063197.522 ns/op
RocksQueueBenchmark.enqueue avgt 50 1762257.820 ± 232716.449 ns/op
RocksQueueBenchmark.removeHead avgt 50 1558168.420 ± 276410.130 ns/op

相关文章

  • 基于 RocksDB 的持久化队列

    https://github.com/artiship/rocks-queue-java RocksDB 是一个基...

  • RabbitMQ 消息持久化机制(消息不丢) --- 2022-

    RabbitMQ持久化机制分为队列持久化、消息持久化、交换器持久化。不管是持久化的消息还是非持久化的消息都可以被写...

  • RabbitMQ 如何保证消息的可靠性

    队列持久化 上面的代码就是进行消息持久话,当然还有其他写法,例如: 其他写法不一一赘述。如果队列A之前没有持久化,...

  • 持久化

        rabbitmq的持久化分成三个部分:交换器的持久化、队列的持久化和消息的持久化     交换器的持久化是...

  • RocksDB 的 Group Write 机制

    RocksDB 是 LSM-tree 结构的 KV 存储,写入的数据先通过 WAL 持久化,再写入到 memtab...

  • Redis基础篇-基本数据类型和API运用

    Redis是一个基于内存亦可持久化的日志型数据结构存储,基于RESP协议进行通讯,可用于数据库、缓存和消息队列。协...

  • 数据持久化

    1.必备条件 【交换器】必须是持久化 【队列】必须是持久化 【消息】必须是持久化 2.原生实现方式 交换器持久化:...

  • RabbitMQ发布确认

    消息持久化的两个前提:1、设置要求队列必须在持久化,保证RabbitMQ宕机后,信道不会消失2、设置要求队列中的消...

  • RabbitMQ高可用需要考虑哪些内容

    1. 消息持久化 交换机的持久化通过创建交换机时设置持久化标志。 队列的持久化也是一样。 2. 消息生产 生产者发...

  • 面试官上来就问:Java 进程中有哪些组件会占用内存?

    不管是持久化的消息还是非持久化的消息都可以被写入到磁盘。持久化的消息在到达队列时就被写入到磁盘,并且如果可以,持久...

网友评论

      本文标题:基于 RocksDB 的持久化队列

      本文链接:https://www.haomeiwen.com/subject/uspaactx.html