91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[Spring cloud 一步步實現廣告系統] 19. 監控Hystrix Dashboard

發布時間:2020-07-13 06:38:10 來源:網絡 閱讀:502 作者:zhangpan0614 欄目:編程語言

在之前的18次文章中,我們實現了廣告系統的廣告投放廣告檢索業務功能,中間使用到了 服務發現Eureka服務調用Feign,網關路由Zuul以及錯誤熔斷HystrixSpring Cloud組件。
簡單調用關系:
[Spring cloud 一步步實現廣告系統] 19. 監控Hystrix Dashboard

但是系統往往都會報錯,我們之前定義了一些容錯類和方法,但是只是在控制臺可以看到錯誤信息,我們想要統計一些數據,怎么才能更直觀的看到我們的服務調用情況呢,接下來,和大家討論一個新的熔斷監控組件Hystrix Dashboard,顧名思義,從名字上我們就能看出來,它是監控的圖形化界面。

Hystrix 在服務中的使用
結合openfeign使用

在我們實際的項目當中,使用的最多的就是結合FeignClient#fallbackHystrix一起來實現熔斷,我們看一下我們在mscx-ad-feign-sdk中的實現。

@FeignClient(value = "mscx-ad-sponsor", fallback = SponsorClientHystrix.class)
public interface ISponsorFeignClient {
    @RequestMapping(value = "/ad-sponsor/plan/get", method = RequestMethod.POST)
    CommonResponse<List<AdPlanVO>> getAdPlansUseFeign(@RequestBody AdPlanGetRequestVO requestVO);

    @RequestMapping(value = "/ad-sponsor/user/get", method = RequestMethod.GET)
    /**
     * Feign 埋坑之 如果是Get請求,必須在所有參數前添加{@link RequestParam},不能使用{@link Param}
     * 會被自動轉發為POST請求。
     */
    CommonResponse getUsers(@RequestParam(value = "username") String username);
}

在上述代碼中,我們自定義了一個feignclient,并且給了這個client一個fallback的實現類:

@Component
public class SponsorClientHystrix implements ISponsorFeignClient {
    @Override
    public CommonResponse<List<AdPlanVO>> getAdPlansUseFeign(AdPlanGetRequestVO requestVO) {
        return new CommonResponse<>(-1, "mscx-ad-sponsor feign & hystrix get plan error.");
    }

    @Override
    public CommonResponse getUsers(String username) {
        return new CommonResponse<>(-1, "mscx-ad-sponsor feign & hystrix get user error.");
    }
}

這個fallback類實現了我們自定義的ISponsorFeignClient,那是因為fallback的方法必須和原始執行類的方法簽名保持一致,這樣在執行失敗的時候,可以通過反射映射到響應的降級方法/容錯方法。
mscx-ad-search服務中,我們通過注入ISponsorFeignClient來調用我們的mscz-ad-sponsor服務。

@RestController
@Slf4j
@RequestMapping(path = "/search-feign")
public class SearchFeignController {

    /**
     * 注入我們自定義的FeignClient
     */
    private final ISponsorFeignClient sponsorFeignClient;
    @Autowired
    public SearchFeignController(ISponsorFeignClient sponsorFeignClient) {
        this.sponsorFeignClient = sponsorFeignClient;
    }

    @GetMapping(path = "/user/get")
    public CommonResponse getUsers(@Param(value = "username") String username) {
        log.info("ad-search::getUsersFeign -> {}", JSON.toJSONString(username));
        CommonResponse commonResponse = sponsorFeignClient.getUsers(username);
        return commonResponse;
    }
}
使用HystrixCommand

其實Hystrix本身提供了一種直接在方法中應用的方式,就是使用@ com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand,我們看一下這個類的源碼:

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface HystrixCommand {
    ...

        /**
     * Specifies a method to process fallback logic.
     * A fallback method should be defined in the same class where is HystrixCommand.
     * Also a fallback method should have same signature to a method which was invoked as hystrix command.
     * for example:
     * <code>
     *      @HystrixCommand(fallbackMethod = "getByIdFallback")
     *      public String getById(String id) {...}
     *
     *      private String getByIdFallback(String id) {...}
     * </code>
     * Also a fallback method can be annotated with {@link HystrixCommand}
     * <p/>
     * default => see {@link com.netflix.hystrix.contrib.javanica.command.GenericCommand#getFallback()}
     *
     * @return method name
     */
    String fallbackMethod() default "";

    ...
}

我們主要關注2個點:

  1. @Target({ElementType.METHOD})表明當前的注解只能應用在方法上面。
  2. 可直接定義fallbackMethod來保證容錯。這個方法有一個缺陷,就是必須和執行方法在同一個類文件中,這就會造成我們的方法在實現的時候,顯得特別的冗余和不夠優雅。

以我們的mscx-ad-search中的廣告查詢為例:

@Service
@Slf4j
public class SearchImpl implements ISearch {

    /**
     * 查詢廣告容錯方法
     *
     * @param e 第二個參數可以不指定,如果需要跟蹤錯誤,就指定上
     * @return 返回一個空map 對象
     */
    public SearchResponse fetchAdsFallback(SearchRequest request, Throwable e) {

        System.out.println("查詢廣告失敗,進入容錯降級 : %s" + e.getMessage());
        return new SearchResponse().builder().adSlotRelationAds(Collections.emptyMap()).build();
    }

    @HystrixCommand(fallbackMethod = "fetchAdsFallback")
    @Override
    public SearchResponse fetchAds(SearchRequest request) {
        ...
    }
}

在我們請求出錯的時候,會轉到我們的fallback方法,這個實現是通過在應用啟動的時候,我們開始了@EnableCircuitBreaker注解,這個注解會通過AOP攔截所有的HystrixCommand方法,將HystrixCommand整合到springboot的容器中,并且將注解標注的方法放入hystrix的線程中,一旦失敗,通過反射調用fallback方法來實現。

創建dashboard project

上述代碼我們看了Hystrix實現熔斷的2種方式,接下來我們來實現請求監控的圖形化界面,創建mscx-ad-dashboard,Let's code.
依然遵從我們springboot項目的三部曲:

  1. 加依賴

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix</artifactId>
            <version>1.2.7.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
            <version>1.2.7.RELEASE</version>
        </dependency>
        <!--eureka client-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
    </dependencies>
  2. 加注解

    /**
       * AdDashboardApplication for Hystrix Dashboard 啟動類
       *
       * @author <a href="mailto:magicianisaac@gmail.com">Isaac.Zhang | 若初</a>
       * @since 2019/8/15
       */
        @SpringBootApplication
        @EnableDiscoveryClient
        @EnableHystrixDashboard
        public class AdDashboardApplication {
    
            public static void main(String[] args) {
                SpringApplication.run(AdDashboardApplication.class, args);
            }
        }
  3. 改配置

        server:
            port: 1234
        spring:
            application:
                name: mscx-ad-dashboard
        eureka:
            client:
                service-url:
                defaultZone: http://server1:7777/eureka/,http://server2:8888/eureka/,http://server3:9999/eureka/
        management:
            endpoints:
                web:
                exposure:
                    include: "*"`

直接啟動,可以看到如下頁面:
[Spring cloud 一步步實現廣告系統] 19. 監控Hystrix Dashboard

添加要監控的服務地址:
[Spring cloud 一步步實現廣告系統] 19. 監控Hystrix Dashboard

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

观塘区| 喀喇沁旗| 定州市| 时尚| 盐城市| 皋兰县| 开封市| 山丹县| 大兴区| 赤城县| 郓城县| 永城市| 沾化县| 吉林市| 秀山| 剑川县| 万荣县| 黄骅市| 崇文区| 屏边| 加查县| 灌阳县| 保定市| 景泰县| 阳新县| 且末县| 平邑县| 铜陵市| 太仆寺旗| 岐山县| 垣曲县| 长泰县| 金沙县| 鹤庆县| 唐山市| 呼伦贝尔市| 辽阳市| 偃师市| 宜春市| 肥东县| 安徽省|