Skip to content

nitishgoyal13/hystrix-optimizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Hystrix Optimizer

Usage

  • Works for com.hystrix:hystrix-configurator:0.0.8

  • Add maven dependency

                <dependency>
                    <groupId>io.phonepe</groupId>
                    <artifactId>hystrix-optimizer</artifactId>
                    <version>1.0.3</version>
                </dependency>
  • Disable Metrics Publisher in HystrixBundle for your dropwizard app
       // Add the Hystrix Bundle with metrics publisher disabled
        bootstrap.addBundle(HystrixBundle.builder()
                .disableStreamServletInAdminContext()
                .disableMetricsPublisher()
                .withApplicationStreamPath("/hystrix.stream")
                .build()
        );
  • Remove HystrixConfigurationFactory init, taken care of by hystrix optimizer
        // Remove following from run method, initialized by hystrix optimizer with provided hystrix config
        HystrixConfigurationFactory.init(hystrixConfig);
  • Add OptimizerConfig to dropwizard application configuration class
    public class AppConfiguration extends Configuration {
      ...
      private OptimizerConfig hystrixOptimizerConfig;
      ...
    }
  • Add Hystrix optimizer bundle to dropwizard app initialize method
    @Override
    public void initialize(Bootstrap<AppConfiguration> bootstrap) {
        ...
               // Add Hystrix optimizer bundle
                bootstrap.addBundle(new HystrixOptimizerBundle<AppConfiguration>() {
                    @Override
                    public HystrixConfig getHystrixConfig(AppConfiguration configuration) {
                        return configuration.getHystrixConfig();
                    }
        
                    @Override
                    public OptimizerConfig getOptimizerConfig(AppConfiguration configuration) {
                        return configuration.getHystrixOptimizerConfig();
                    }
                });
     ...           
    }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages