You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 18, 2021. It is now read-only.
"Support deleting more than 10 docs" in {
val insertFutures = (0 to 11).map(i => restClient.index(index, tpe, Document(s"doc$i", Map("text7" -> "here7"))))
val ir = Future.sequence(insertFutures)
Await.result(ir, 10.seconds)
refresh()
val delFut = restClient.deleteDocument(index, tpe, new QueryRoot(MatchAll))
Await.result(delFut, 10.seconds)
refresh()
val count = Await.result(restClient.count(index, tpe, new QueryRoot(MatchAll)), 10.seconds)
count should be (0)
}
Failure mode:
- should Support deleting more than 10 docs *** FAILED ***
2 was not equal to 0 (RestlasticSearchClientTest.scala:314)
The text was updated successfully, but these errors were encountered:
Ok, so, I just remembered the fromOpt / sizeOpt options on QueryRoot, so that helps. However, the API still won't delete everything if it matches more than the maximum value of sizeOpt (10k I think)
Test:
Failure mode:
The text was updated successfully, but these errors were encountered: