File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
java/io/weaviate/integration/client/batch Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -158,34 +158,34 @@ public static Object[][] provideForNotCreateBatchDueToConnectionIssue() {
158158 new Object [] {
159159 // final response should be available immediately
160160 ObjectsBatcher .BatchRetriesConfig .defaultConfig ()
161- .retriesIntervalMs (200 )
161+ .retriesIntervalMs (400 )
162162 .maxConnectionRetries (0 )
163163 .build (),
164- 0 , 100
164+ 0 , 350
165165 },
166166 new Object [] {
167- // final response should be available after 1 retry (200 ms)
167+ // final response should be available after 1 retry (400 ms)
168168 ObjectsBatcher .BatchRetriesConfig .defaultConfig ()
169- .retriesIntervalMs (200 )
169+ .retriesIntervalMs (400 )
170170 .maxConnectionRetries (1 )
171171 .build (),
172- 200 , 300
172+ 400 , 750
173173 },
174174 new Object [] {
175- // final response should be available after 2 retries (200 + 400 ms)
175+ // final response should be available after 2 retries (400 + 800 ms)
176176 ObjectsBatcher .BatchRetriesConfig .defaultConfig ()
177- .retriesIntervalMs (200 )
177+ .retriesIntervalMs (400 )
178178 .maxConnectionRetries (2 )
179179 .build (),
180- 600 , 700
180+ 1200 , 1550
181181 },
182182 new Object [] {
183- // final response should be available after 1 retry (200 + 400 + 600 ms)
183+ // final response should be available after 1 retry (400 + 800 + 1200 ms)
184184 ObjectsBatcher .BatchRetriesConfig .defaultConfig ()
185- .retriesIntervalMs (200 )
185+ .retriesIntervalMs (400 )
186186 .maxConnectionRetries (3 )
187187 .build (),
188- 1200 , 1300
188+ 2400 , 2750
189189 },
190190 };
191191 }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ services:
4141 - ' 8088'
4242 - --scheme
4343 - http
44- image : semitechnologies/weaviate:1.20.0-prealpha-8a3aa11
44+ image : semitechnologies/weaviate:1.20.0-prealpha-1e258e9
4545 restart : on-failure:0
4646 environment :
4747 LOG_LEVEL : ' debug'
You can’t perform that action at this time.
0 commit comments