Minimum Java version now 11
Issue #323 - WorkerPool
and WorkProcessor
have been removed, no more Disruptor::handleEventsWithWorkerPool
Disruptor
constructors using Executor
have been removed. Use ThreadFactory
instead.
Rolled up event handling extension interfaces on to EventHandler
:
BatchStartAware
LifecycleAware
SequenceReportingEventHandler
FatalExceptionHandler
and IgnoreExceptionHandler
now use the JDK 9 Platform Logging API, i.e. System.Logger
Add rewind batch feature to the BatchEventProcessor
Add a maximum batch size argument to BatchEventProcessor
EventHandler::onBatchStart
now gets both the batchSize
as well as queueDepth
(previously it had batchSize
which reported queue depth)
Added documentation to EventPoller
Util::log2
throws if passed a non-positive argument
Deprecations
Deprecated ThreadHints.onSpinWait()
Deprecated Disruptor.handleExceptionsWith()
- this had been javadoc deprecated since 2015 but not in the code
Removed previously deprecated methods
Ringbuffer.resetTo()
ConsumerRepository.getLastSequenceInChain()
Drop support for JDK6, support JDK7 and above only.
Add ThreadHints.onSpinWait
to all busy spins within Disruptor.
Increase default sleep time for LockSupport.parkNanos to prevent busy spinning.
Add batch size to BatchStartAware.onBatchStart()
Upgrade to newer versions of gradle, checkstyle and JUnit
Deprecate classes & methods for later release
Remove JMock and rewrite tests accordingly
Support adding gating sequences before calling Disruptor.start()
Fix minor concurrency race when dynamically adding sequences
Fix wrapping problem when adding work handlers to the Disruptor
Fix NPE in TimeoutBlockingWaitStrategy when used with WorkProcessor
Add LiteTimeoutBlockingWaitStrategy
Resignal any waiting threads when trying to publish to a full ring buffer
Minor Javadoc fixes, example code and file renames.
Additional generics for parametrised ExceptionHandler.
Inheritance based Padding for RingBuffer and Sequencers.
Better DSL support for adding custom EventProcessors.
Remove deprecated methods (slightly breaking change)
Experimental LiteBlockingWaitStrategy
Experimental EventPoller for polling for data instead of waiting.
Minor build and IDE updates
Rewrite of performance tests to run without JUnit and separate Queues in to their own tests
Remove old throttled performance test
Add performance tests for immutable message example
Add performance tests for off-heap example
Remove old Caliper tests
Remove some stray yield() calls
Fix performance bug in WorkProcessor with MultiProducerSequencer
Add EventRelease support to WorkProcessor (experimental)
Add PingPongLatencyTest
Switch to HdrHistogram for latency measurement
Fix bug in Disruptor DSL where some consumers wouldn’t be included in the gating sequences.
Add support for using the EventTranslator with batch publication.
Support timeouts when shutting down the Disruptor using the DSL.
Remove Sequencer.ensureAvailable() and move functionality into the ProcessingSequenceBarrier.
Add get() method and deprecate getPublished() and getPreallocated() from the RingBuffer.
Add TimeoutException to SequenceBarrier.waitFor().
Fix off by one bug in MultiProducerSequencer.publish(lo, hi).
Improve testing for Sequencers.
Add remaining capacity to RingBuffer
Add batch publish methods to Sequencer
Add DataProvider interface to decouple the RingBuffer and BatchEventProcessor
Upgrade to gradle 1.5
Refactoring, merge Publisher back into Sequencer and some of the gating sequence responsibilities up to the sequencer.
Significant Javadoc updates (thanks Jason Koch)
DSL support for WorkerPool
Small performance tweaks
Add TimeoutHandler and TimeoutBlockingWaitStrategy and support timeouts in BatchEventProcessor
Remove millisecond wakeup from BlockingWaitStrategy
Add RingBuffer.claimAndGetPreallocated
Add RingBuffer.isPublished
Remove claim strategies and replace with Publishers/Sequences, remove pluggability of claim strategies.
Introduce new multi-producer publisher algorithm (faster and more scalable).
Introduce more flexible EventPublisher interface that allow for static definition of translators that can handle local values.
Allow for dynamic addition of gating sequences to ring buffer. Default it to empty, will allow messages to be sent and the ring buffer to wrap if there are no gating sequences defined.
Remove batch writes to the ring buffer.
Remove timeout read methods.
Switch to gradle build and layout the source maven style.
API change, remove RingBuffer.get, add RingBuffer.getPreallocated for producers and RingBuffer.getPublished for consumers.
Change maven dependency group id to com.lmax.
Added PhasedBackoffStrategy.
Remove explicit claim/forcePublish and supply a resetTo method.
Added better handling of cases when the gating sequence is ahead of the cursor value.
Bug fix, race condition in SequenceGroup when removing Sequences and getting current value
Bug fix, potential race condition in BlockingWaitStrategy.
Bug fix set initial SequenceGroup value to -1 (Issue #27).
Deprecate timeout methods that will be removed in version 3.
Remove deprecated timeout methods.
Added OSGI metadata to jar file.
Removed PaddedAtomicLong and use Sequence in all places.
Fix various generics warnings.
Change Sequence implementation to work around IBM JDK bug and improve performance by ~10%.
Add a remainingCapacity() call to the Sequencer class.
Deprecate timeout methods for publishing.
Add tryNext and tryPublishEvent for events that shouldn’t block during delivery.
Small performance enhancement for MultithreadClaimStrategy.
Create new MultithreadClaimStrategy that works between when threads are highly contended. Previous implementation is now called MultithreadLowContentionClaimStrategy
Fix for bug where EventProcessors weren’t being added as gating sequences to the ring buffer.
Fix range tracking bug in Histogram
Artefacts made available via maven central repository. (groupId:com.googlecode.disruptor, artifactId:disruptor) See UsingDisruptorInYourProject for details.
Changed construction API to allow user supplied claim and wait strategies
Added AggregateEventHandler to support multiple EventHandlers from a single BatchEventProcessor
Support exception handling from LifecycleAware
Added timeout API calls for claiming a sequence when publishing
Use LockSupport.parkNanos() instead of Thread.sleep() to reduce latency
Reworked performance tests to better support profiling and use LinkedBlockingQueue for comparison because it performs better on the latest processors
Minor bugfixes
Introduced WorkerPool to allow the one time consumption of events by a worker in a pool of EventProcessors.
New internal implementation of SequenceGroup which is lock free at all times and garbage free for get and set operations.
SequenceBarrier now checks alert status on every call whether it is blocking or not.
Added scripts in preparation for publishing binaries to maven repository.
Bugfix for supporting SequenceReportingEventHandler from DSL. ([issue 9](https://github.com/LMAX-Exchange/disruptor/issues#issue/9))
Bugfix for multi-threaded publishing to multiple ring buffers ([issue 10](https://github.com/LMAX-Exchange/disruptor/issues#issue/10))
Change SequenceBarrier to always check alert status before entering waitFor cycle. Previously this was only checked when the requested sequence was not available.
Change ClaimStrategy to not spin when the buffer has no available capacity, instead go straight to yielding to allow event processors to catch up.
Changed RingBuffer and publisher API so any mutable object can be placed in the RingBuffer without having to extend AbstractEvent
Added EventPublisher implementation to allow the publishing steps to be combined into one action
DisruptorWizard has been renamed to Disruptor with added support for any subtype of EventProcessor
Introduced a new Sequencer class that allows the Disruptor to be applied to other data structures such as multiple arrays. This can be a very useful pattern when multiple event processors work on the same event and you want to avoid false sharing. The Diamond for FizzBuzz is a good example of the issue. It is also higher performance by avoiding the pointer indirection when arrays of primitives are used.
Further increased performance and scalability by reducing false sharing.
Added progressive backoff strategy to the MultiThreadedClaimStrategy to prevent publisher getting into the claim cycle when the buffer is full because of a slow EventProcessor.
Significantly improved performance to WaitStrategy.Option.BLOCKING
Introduced SequenceGroup to allow dynamic registration of EventProcessors.
Rework of "False Sharing" prevention which makes the performance much more predictable across all platforms. Special thanks to Jeff Hain for helping focus in on a solution.
Renaming mistake for publishEventAtSequence should have been claimEventAtSequence
Fixed bug in YieldingStrategy that was busy spinning more than yielding and introduced SleepingStrategy
Removed code duplication in Unicast perf tests for expected result
New API to reflect naming changes
Producer → Publisher
Entry → Event
Consumer → EventProcessor
ConsumerBarrier → DependencyBarrier
ProducerBarrier has been incorporated into the RingBuffer for ease of use
DisruptorWizard integrated for fluent API dependency graph construction
Rework of sequence tracking to avoid false sharing on Java 7, plus avoid mega-morphic calls to make better use of the instruction cache
Reduced usage of memory barriers where possible
WaitStrategy.YIELDING initially spins for a short period to reduce latency
Major performance improvement giving more than a 2X increase for throughput across most use cases.
ProducerBarrier change to yield after busy spinning for a while. This may help the situation when the the number of producers exceeds the number of cores.
Bug fix for regression introduced inlining multi-thread producer commit tracking code. This was a critical bug for the multi-threaded producer scenario.
Added new ProducerBarrier method for claiming a batch of sequences. This feature can give a significant throughput increase.
Off by one regression bug in ProducerBarrier introduced in 1.0.9.
Clarified the algorithm for initial cursor value in the ClaimStrategy.
Added Apache 2.0 licence and comments.
Small performance improvements to producers barriers and BatchConsumer.
Bugfix for BatchConsumer sequence update when using SequenceTrackingHandler to ensure sequence is always updated at the end of a batch regardless.
Factored out LifecycleAware interface to allowing consumers handlers to be notified when their thread starts and shuts down.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。