Registry / networking / hystrix-core

hystrix-core

JSON →
library1.5.18javamavenunverified

A latency and fault tolerance library designed to isolate points of access to remote systems, services, and third-party libraries.

<dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>1.5.18</version> </dependency>
INSTALL
IMPORT
SIG · HYSTRIX-CORE
H
hystrix-core
networkingjavav1.5.18
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

HystrixCommand
com.netflix.hystrix.HystrixCommand

Creates a simple HystrixCommand that returns a string.

import com.netflix.hystrix.HystrixCommand; import com.netflix.hystrix.HystrixCommandGroupKey; public class HystrixExample { public static void main(String[] args) { HystrixCommand<String> command = new HystrixCommand<String>(HystrixCommandGroupKey.Factory.asKey("ExampleGroup")) { @Override protected String run() throws Exception { return "Hello, Hystrix!"; } }; String result = command.execute(); System.out.println(result); } }
Debug
Known issues
gotchaHystrix is in maintenance mode; consider alternatives like Resilience4j.
fix
Migrate to Resilience4j for active development and support.
affects: *
Upgrade
Version history
1.5.18latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
22 hits · last 30 days
node
18
OpenAI (training)
2
Resources
hystrix-core — mvn dependency:get hystrix-core · libregistry