Version 1.3.2 (Maven Central)
- Pull 173 Fix Exception vs Throwable typo in preparation for RxJava 0.11.0
Version 1.3.1 (Maven Central)
- Pull 170 Add rx support to hystrix-clj
Version 1.3.0 (Maven Central)
This version integrations Hystrix with RxJava to enable non-blocking reactive execution and functional composition.
Async execution can now be done reactively with the observe()
method and it will callback when the value is received:
Observable<String> s = new CommandHelloWorld("World").observe();
A simple example of subscribing to the value (using a Groovy lambda instead of anonymous inner class):
s.subscribe({ value -> println(value) })
A "Hello World" example of reactive execution can be found on the wiki.
More can be learned about RxJava and the composition features at https://github.com/Netflix/RxJava/wiki
This release is a major refactoring of the Hystrix codebase. To assert correctness and performance it was run in production canary servers on the Netflix API several times during development and for over a week during release candidate stages. Prior to this release the 1.3.0.RC1 version has been running in full Netflix API production for several days performing billions of executions a day.
Version 1.2.18 (Maven Central)
- Pull 152 Escape meta-characters to fix dashboard
- Pull 156 Improve hystrix-clj docs
- Pull 155 Reset Hystrix after hystrix-clj tests have run
Version 1.2.17 (Maven Central)
- Pull 138 Eclipse and IDEA Config
- Pull 141 Upgrade Clojuresque (hystrix-clj builds)
- Pull 139 Fix dashboard math bug on thread pool rate calculations
- Pull 149 Allow getFallback to query failure states
Version 1.2.16 (Maven Central)
- Pull 132 Add
with-context
macro for conviently wrapping collapsers in thier own context - Pull 136 Fixed the mock stream
- Pull 137 Limit scope of CurrentThreadExecutingCommand
Version 1.2.15 (Maven Central)
This is fixing a bug introduced in the last release that affects semaphore isolated commands that use request caching.
- Pull 133 Fix NoSuchElement Exception
Version 1.2.14 (Maven Central)
- Issue 116 Mechanism for Auditing Network Access Not Isolated by Hystrix
A new module for instrumenting network access to identify calls not wrapped by Hystrix.
See the module README for more information: https://github.com/Netflix/Hystrix/tree/master/hystrix-contrib/hystrix-network-auditor-agent
Version 1.2.13 (Maven Central)
- Issue 127 Add destroy() method to MetricsServlet
Version 1.2.12 (Maven Central)
- Issue 124 NPE if Hystrix.reset() called when it's already shutdown
Version 1.2.11 (Maven Central)
- Issue 113 IllegalStateException: Future Not Started (on thread pool rejection with response caching)
- Issue 118 Semaphore counter scope was global instead of per-key
- Pull 121 Concurrent execution metric for semaphore and thread isolation
Version 1.2.10 (Maven Central)
- Issue 80 HystrixCollapser Concurrency and Performance Fixes
Version 1.2.9 (Maven Central)
- Issue 109 Hystrix.reset() now shuts down HystrixTimer
- Pull 110 hystrix-clj cleanup
- Pull 112 Further work on HystrixCollapser IllegalStateException (Issue 80)
Version 1.2.8 (Maven Central)
- Issue 102 Hystrix.reset() functionality for clean shutdown and resource cleanup
- Pull 103 hystrix-clj cleanup
- Pull 104 javadoc clarification
- Pull 105 Added IntelliJ IDEA support, cleanup to Eclipse support
Version 1.2.7 (Maven Central)
- Pull 99 Experimental Clojure Bindings hystrix-clj
Version 1.2.6 (Maven Central)
- Issue 96 Remove 'final' modifiers to allow mocking
Version 1.2.5 (Maven Central)
- Pull 94 Force character encoding for event stream to utf-8
- Issue 60 Dashboard: Hover for full name (when shortened with ellipsis)
- Issue 53 RequestLog: Reduce Chance of Memory Leak
Version 1.2.4 (Maven Central)
- Pull 91 handle null circuit breaker in HystrixMetricsPoller
Version 1.2.3 (Maven Central)
- Issue 85 hystrix.stream holds connection open if no metrics
- Pull 84 include 'provided' dependencies in Eclipse project classpath
Version 1.2.2 (Maven Central)
- Issue 82 ThreadPool stream should include reportingHosts
Version 1.2.1 (Maven Central)
- Issue 80 IllegalStateException: Future Not Started
- Issue 78 Include more info when collapsed requests remain in queue
Version 1.2.0 (Maven Central)
- Issue 10 HystrixCommand Execution Hooks via Plugin
- Issue 15 Property to disable percentile calculations
- Issue 69 Property to disable fallbacks
- Pull 73 Make servlet-api a provided dependency
- Pull 74 Dashboard problem when using Turbine (Stream not flushing)
Version 1.1.7 (Maven Central)
- Pull 67 Unit tests for request log and checked exceptions
- Pull 66 Making provided scope transtive
- Pull 65 Fixed gitignore definition of build output directories
- Issue 63 Add "throws Exception" to HystrixCommand run() method
- Pull 62 applying js fixes to threadPool ui
- Pull 61 Request log with timeouts
- Issue 55 HysrixRequestLog: Missing Events and Time on Timeouts
- Issue 20 TotalExecutionTime not tracked on queue()
- Pull 57 Dashboard js fix
- Issue 39 HystrixPlugins Bootstrapping Problem - Race Conditions
- Pull 52 Gradle Build Changes
- Pull 51 Merging in gradle-template, specifically provided
- Pull 50 Make javax.servlet-api a 'provided' dependency not 'compile'
- Pull 49 Cleaner design (for metrics) by injecting listener into constructor.
- Pull 47 Support pausing/resuming metrics poller
- Pull 48 Fixing non-deterministic unit test
- README files added to submodules
- Pull 44 Hystrix Dashboard
- Issue 24 Yammer Metrics Support
- Pull 43 Fix the wrong percentile for latencyExecute_percentile_75 in the Servo publisher
- Pull 32 servo-event-stream module
- Pull 33 Remove Servo dependency from core, move to submodule
- Pull 35 Metrics event stream
- Issue 34 Remove Strategy Injection on HystrixCommand
- Pull 36 example webapp
- Pull 37 Migrate metrics stream from org.json.JSONObject to Jackson
- Pull 4 Contrib request context servlet filters
- Pull 16 Change logger from info to debug for property changes
- Issue 12 Use logger.error not logger.debug for fallback failure
- Issue 8 Capture exception from run() and expose getter
- Issue 22 Default Collapser scope to REQUEST if using Setter
- Pull 27 Initialize HealthCounts to non-null value
- Issue 28 Thread pools lost custom names in opensource refactoring
- Pull 30 Simplified access to HystrixCommandMetrics
- Javadoc and README changes
- Javadoc changes
- Initial open source release