4

我需要不时发送通知,我异步执行此任务。我正在使用 HystrixCommand 如下执行异步 RestTemplate 调用,但该调用不起作用:

@HystrixCommand
    public Future<String> notify(final Query query) {
        return new AsyncResult<String>() {
            @Override
            public String invoke() {
                String result = null;
                try {
                    ResponseEntity<HashMap> restExchange = restTemplate.exchange(url,
                            HttpMethod.POST,
                            new HttpEntity<String>(mapper.writeValueAsString(queryMap), httpHeaders),
                            HashMap.class);
                    LOGGER.info("Response code from " + url + " = " + restExchange.getStatusCodeValue());
                    result = ""+ restExchange.getStatusCodeValue();
                } catch(Exception e) {
                    LOGGER.error("Exception while sending notification! Message = " + e.getMessage(), e);
                }
                return result;
            }
        };
    }

这是我之前尝试做的(也没有工作):

@HystrixCommand
    public String notify(final Query query) {
        new Thread(new Runnable() {
            @Override
            public void run() {

                try {
                    ResponseEntity<HashMap> restExchange = restTemplate.exchange(url, HttpMethod.POST,
                            new HttpEntity<String>(mapper.writeValueAsString(queryMap), httpHeaders), HashMap.class);
                    LOGGER.info("Response code from " + url + " = " + restExchange.getStatusCodeValue());

                } catch (Exception e) {
                    LOGGER.error("Exception while sending notification! Message = " + e.getMessage(), e);
                }

            }
        }).start();
    }  

PS:将侦探添加到标签的原因是,在新线程中执行此操作不会传播标头(baggage-*),因此尝试此操作希望 Hystrix 命令可以解决问题

4

2 回答 2

3

是否从同一类中的方法调用方法通知?如果是这种情况,请尝试直接从另一个类调用方法 notify,其中 notify 方法的封闭类作为依赖项注入。

基本上,尝试这样做:

在此处输入图像描述

而不是这个:

在此处输入图像描述

于 2017-06-15T06:06:00.897 回答
2

使用时,Runnable您必须将它们包装在跟踪表示中。即TraceRunnable。它在文档中 - http://cloud.spring.io/spring-cloud-sleuth/spring-cloud-sleuth.html#_runnable_and_callable

至于为什么 Hystrix 的东西不起作用 - 很可能与https://github.com/spring-cloud/spring-cloud-sleuth/issues/612有关。

于 2017-06-14T10:29:54.970 回答