bigqueue

Light, fast and persistent queue.

Лицензия

Лицензия

Группа

Группа

com.bluejeans
Идентификатор

Идентификатор

bigqueue
Последняя версия

Последняя версия

1.7.0.6
Дата

Дата

Тип

Тип

jar
Описание

Описание

bigqueue
Light, fast and persistent queue.
Ссылка на сайт

Ссылка на сайт

https://github.com/bluejeansnet/bigqueue
Система контроля версий

Система контроля версий

https://github.com/bluejeansnet/bigqueue

Скачать bigqueue

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.bluejeans/bigqueue/ -->
<dependency>
    <groupId>com.bluejeans</groupId>
    <artifactId>bigqueue</artifactId>
    <version>1.7.0.6</version>
</dependency>
// https://jarcasting.com/artifacts/com.bluejeans/bigqueue/
implementation 'com.bluejeans:bigqueue:1.7.0.6'
// https://jarcasting.com/artifacts/com.bluejeans/bigqueue/
implementation ("com.bluejeans:bigqueue:1.7.0.6")
'com.bluejeans:bigqueue:jar:1.7.0.6'
<dependency org="com.bluejeans" name="bigqueue" rev="1.7.0.6">
  <artifact name="bigqueue" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.bluejeans', module='bigqueue', version='1.7.0.6')
)
libraryDependencies += "com.bluejeans" % "bigqueue" % "1.7.0.6"
[com.bluejeans/bigqueue "1.7.0.6"]

Зависимости

provided (2)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.13
com.google.guava : guava jar 18.0

test (2)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
org.mockito : mockito-all jar 1.10.19

Модули Проекта

Данный проект не имеет модулей.

Big Queue

A big, fast and persistent queue based on memory mapped file.

Notice, bigqueue is just a standalone library, for a high-throughput, persistent, distributed, publish-subscrible messaging system, please refer to Luxun, Luxun messaging system uses bigqueue internally as fast and persistent queue.

##Feature Highlight:

  1. Fast: close to the speed of direct memory access, both enqueue and dequeue are close to O(1) memory access.
  2. Big: the total size of the queue is only limited by the available disk space.
  3. Persistent: all data in the queue is persisted on disk, and is crash resistant.
  4. Reliable: OS will be responsible to presist the produced messages even your process crashes.
  5. Realtime: messages produced by producer threads will be immediately visible to consumer threads.
  6. Memory-efficient: automatic paging & swapping algorithm, only most-recently accessed data is kept in memory.
  7. Thread-safe: multiple threads can concurrently enqueue and dequeue without data corruption.
  8. Simple&Light-weight: current number of source files is 12 and the library jar is less than 30K.

The Big Picture

###Memory Mapped Sliding Window

design

##Performance Highlight:

  • In concurrent producing and consuming case, the average throughput is around 166M bytes per second.
  • In sequential producing then consuming case, the average throughput is around 333M bytes per second.

Suppose the average message size is 1KB, then big queue can concurrently producing and consuming
166K message per second. Basically, the throughput is only limited by disk IO bandwidth.

here is a detailed performance report

##How to Use

Note : bigqueue depends on log4j, please also added log4j jar reference if you use bigqueue.

Maven reference

	<dependency>
	  <groupId>com.bluejeansnet</groupId>
	  <artifactId>bigqueue</artifactId>
      <version>1.7.0.6</version>
	</dependency>

##Docs

  1. a simple design doc
  2. big queue tutorial
  3. fanout queue tutorial
  4. big array tutorial
  5. how to turn big queue into a thrift based queue service
  6. use case : producing and consuming 4TB log daily on one commodity machine
  7. use case : sort and search 100GB data on a single commodity machine
  8. the architecture and design of a pub-sub messaging system tailored for big data collecting and analytics
  9. a big, fast and persistent queue[ppt]

Version History

1.7.0.6 - Jun 23, 2016 :

  • Fix: support peek multiple elements

1.7.0.4 - March 31, 2016 :

  • Feature: support peek multiple elements

1.7.0.2 - March 30, 2016 :

  • Feature: support dequeue multiple elements

0.7.0 - March 24, 2013 : repository

  • Feature: support fanout queue semantics
  • Enhancement: make data file size configurable

0.6.1 — January 29, 2013 : repository

  • Initial version:)

##Copyright and License Copyright 2012 Leansoft Technology 51startup@sina.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Версии библиотеки

Версия
1.7.0.6