7
7
import org .junit .Assert ;
8
8
import org .junit .Test ;
9
9
10
+ import tech .ydb .common .retry .RetryConfig ;
10
11
import tech .ydb .core .Status ;
11
12
import tech .ydb .core .StatusCode ;
12
- import tech .ydb .topic . settings . RetryMode ;
13
+ import tech .ydb .core . UnexpectedResultException ;
13
14
import tech .ydb .topic .settings .WriterSettings ;
14
15
import tech .ydb .topic .write .Message ;
15
16
import tech .ydb .topic .write .SyncWriter ;
18
19
*
19
20
* @author Aleksandr Gorshenin
20
21
*/
21
- public class RetryModeTest extends BaseMockedTest {
22
+ public class TopicRetriesTest extends BaseMockedTest {
22
23
23
24
@ Test
24
- public void alwaysRetryWriterTest () throws InterruptedException , ExecutionException , TimeoutException {
25
+ public void defaultRetryWriterTest () throws InterruptedException , ExecutionException , TimeoutException {
25
26
mockStreams ()
26
27
.then (errorStreamMockAnswer (StatusCode .TRANSPORT_UNAVAILABLE ))
27
28
.then (defaultStreamMockAnswer ())
@@ -30,7 +31,6 @@ public void alwaysRetryWriterTest() throws InterruptedException, ExecutionExcept
30
31
31
32
SyncWriter writer = client .createSyncWriter (WriterSettings .newBuilder ()
32
33
.setTopicPath ("/mocked_topic" )
33
- .setRetryMode (RetryMode .ALWAYS )
34
34
.build ());
35
35
writer .init ();
36
36
@@ -47,7 +47,7 @@ public void alwaysRetryWriterTest() throws InterruptedException, ExecutionExcept
47
47
stream1 .nextMsg ().isWrite ().hasWrite (2 , 1 );
48
48
stream1 .responseWriteWritten (1 , 1 );
49
49
50
- stream1 .complete (Status .SUCCESS );
50
+ stream1 .complete (Status .of ( StatusCode . SUCCESS ) );
51
51
52
52
// Retry #2 - Stream is closed by server
53
53
getScheduler ().hasTasks (1 ).executeNextTasks (1 );
@@ -88,7 +88,7 @@ public void disabledRetryNetworkErrorTest() throws InterruptedException, Executi
88
88
89
89
WriterSettings settings = WriterSettings .newBuilder ()
90
90
.setTopicPath ("/mocked_topic" )
91
- .setRetryMode ( RetryMode . NONE )
91
+ .setRetryConfig ( RetryConfig . noRetries () )
92
92
.build ();
93
93
94
94
SyncWriter writer = client .createSyncWriter (settings );
@@ -109,7 +109,7 @@ public void disabledRetryNetworkErrorTest() throws InterruptedException, Executi
109
109
public void disabledRetryStreamCloseTest () throws InterruptedException , ExecutionException , TimeoutException {
110
110
WriterSettings settings = WriterSettings .newBuilder ()
111
111
.setTopicPath ("/mocked_topic" )
112
- .setRetryMode ( RetryMode . NONE )
112
+ .setRetryConfig ( RetryConfig . noRetries () )
113
113
.build ();
114
114
115
115
SyncWriter writer = client .createSyncWriter (settings );
@@ -134,7 +134,7 @@ public void disabledRetryStreamCloseTest() throws InterruptedException, Executio
134
134
public void disabledRetryStreamErrorTest () throws InterruptedException , ExecutionException , TimeoutException {
135
135
WriterSettings settings = WriterSettings .newBuilder ()
136
136
.setTopicPath ("/mocked_topic" )
137
- .setRetryMode ( RetryMode . NONE )
137
+ .setRetryConfig ( RetryConfig . noRetries () )
138
138
.build ();
139
139
140
140
SyncWriter writer = client .createSyncWriter (settings );
@@ -162,7 +162,7 @@ public void recoverRetryNetworkErrorTest() throws InterruptedException, Executio
162
162
163
163
WriterSettings settings = WriterSettings .newBuilder ()
164
164
.setTopicPath ("/mocked_topic" )
165
- .setRetryMode ( RetryMode . RECOVER )
165
+ .setRetryConfig ( RetryConfig . noRetries () )
166
166
.build ();
167
167
168
168
SyncWriter writer = client .createSyncWriter (settings );
@@ -180,7 +180,7 @@ public void recoverRetryNetworkErrorTest() throws InterruptedException, Executio
180
180
}
181
181
182
182
@ Test
183
- public void recoverRetryWriterTest () throws InterruptedException , ExecutionException , TimeoutException {
183
+ public void idempotentRetryWriterTest () throws InterruptedException , ExecutionException , TimeoutException {
184
184
mockStreams ()
185
185
.then (defaultStreamMockAnswer ())
186
186
.then (errorStreamMockAnswer (StatusCode .OVERLOADED ))
@@ -190,7 +190,7 @@ public void recoverRetryWriterTest() throws InterruptedException, ExecutionExcep
190
190
191
191
SyncWriter writer = client .createSyncWriter (WriterSettings .newBuilder ()
192
192
.setTopicPath ("/mocked_topic" )
193
- .setRetryMode ( RetryMode . RECOVER )
193
+ .setRetryConfig ( RetryConfig . idempotentRetryForever () )
194
194
.build ());
195
195
writer .init ();
196
196
@@ -203,7 +203,9 @@ public void recoverRetryWriterTest() throws InterruptedException, ExecutionExcep
203
203
stream1 .nextMsg ().isWrite ().hasWrite (2 , 1 );
204
204
stream1 .responseWriteWritten (1 , 1 );
205
205
206
- stream1 .complete (new RuntimeException ("io exception" ));
206
+ stream1 .complete (new RuntimeException ("io exception" ,
207
+ new UnexpectedResultException ("inner" , Status .of (StatusCode .CLIENT_INTERNAL_ERROR )))
208
+ );
207
209
208
210
// Retry #1 - Stream is by runtime exception
209
211
getScheduler ().hasTasks (1 ).executeNextTasks (1 );
0 commit comments