重试当操作员从不重试时

时间:2015-03-29 02:11:25

标签: java rx-java

我正在实施带有重试的数据库更新方法。按照 retryWhen ()运算符的常见模式,如下所述:Using Rx Java retryWhen() ..

..但我的重试逻辑永远不会执行。我正在调试它,并且可以看到断点在下面显示的 place 3 ,但它永远不会回到 place 2 的重试逻辑。在第3个位置之后,它总是转到放置4 ,这是onComplete处理程序。

代码正在使用Java 8 lambdas

  

我通过完全删除retryWhen()块来应用解决方法   现在从subscribe">递归调用updateWithRetrials() onError()块。这是有效的,但我不喜欢这种方法。

当我使用retryWhen()运算符时,任何人都可以建议不正确的内容吗?

private void updateWithRetrials(some input x)

{

   AtomicBoolean retryingUpdate = new AtomicBoolean(false);

   ...  

   // 1- Start from here
   Observable.<JsonDocument> just(x).map(x1 -> {

       if (retryingUpdate.get())
       {
          //2. retry logic
       }

       //doing sth with x1 here
       ...
       return <some observable>;

   })
   .retryWhen(attempts -> attempts.flatMap(n -> {

       Throwable cause = n.getThrowable();

       if (cause instanceof <errors of interest>)
       {
          // 3 - break-point hits here

          // retry update in 1 sec again
          retryingUpdate.set(true);
          return Observable.timer(1, TimeUnit.SECONDS);
       }

       // fail in all other cases...
       return Observable.error(n.getThrowable());
   }))
   .subscribe(
          doc -> {
                    //.. update was successful   
                 },

          onError -> {
                    //for unhandled errors in retryWhen() block
                  },

              {
                // 4. onComplete block

                 Sysout("Update() call completed.");
              }

     ); //subscribe ends here

}

2 个答案:

答案 0 :(得分:2)

您的问题是由于使用Observable.just()进行了一些性能优化。

此运营商在发出项目后,不检查订阅是否未取消,并在所有情况下发送onComplete。

Observable.retryWhen(并重试)重新订阅Error,但是当source发送onComplete时终止。

因此,即使重试运算符重新订阅,它也会从之前的订阅中获得onComplete并停止。

你可能会看到,下面的代码失败了(就像你的那样):

@Test
public void testJustAndRetry() throws Exception {
        AtomicBoolean throwException = new AtomicBoolean(true);
        int value = Observable.just(1).map(v->{
            if( throwException.compareAndSet(true, false) ){
                throw new RuntimeException();
            }
            return v;
        }).retry(1).toBlocking().single();
    }

但如果你不忘记&#34;检查订阅,它工作!:

@Test
public void testCustomJust() throws Exception {
    AtomicBoolean throwException = new AtomicBoolean(true);
    int value = Observable.create((Subscriber<? super Integer> s) -> {
                s.onNext(1);
                if (!s.isUnsubscribed()) {
                    s.onCompleted();
                }
            }
    ).map(v -> {
        if (throwException.compareAndSet(true, false)) {
            throw new RuntimeException();
        }
        return v;
    }).retry(1).toBlocking().single();

    Assert.assertEquals(1, value);
}

答案 1 :(得分:1)

我认为错误发生在map内,因为它不会出现在just中。这不是retryWhen的工作方式。

使用create实施您的observable,并确保map中没有错误。如果在创建块中抛出任何错误,将调用retryWhen并根据您的重试逻辑重试工作单元。

    Observable.create(subscriber -> {
        // code that may throw exceptions
    }).map(item -> { 
        // code that will not throw any exceptions
    }).retryWhen(...)
      ...