Skip to content

Commit

Permalink
Dedicated test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
n1v0lg committed Aug 8, 2023
2 parents 6b29031 + 837dcc2 commit 3c9c519
Show file tree
Hide file tree
Showing 55 changed files with 3,100 additions and 508 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1213,12 +1213,12 @@ private void waitForProcessToExit(ProcessHandle processHandle) {
try {
processHandle.onExit().get(ES_DESTROY_TIMEOUT, ES_DESTROY_TIMEOUT_UNIT);
} catch (InterruptedException e) {
LOGGER.info("Interrupted while waiting for ES process", e);
LOGGER.info("[{}] Interrupted while waiting for ES process", name, e);
Thread.currentThread().interrupt();
} catch (ExecutionException e) {
LOGGER.info("Failure while waiting for process to exist", e);
LOGGER.info("[{}] Failure while waiting for process to exist", name, e);
} catch (TimeoutException e) {
LOGGER.info("Timed out waiting for process to exit", e);
LOGGER.info("[{}] Timed out waiting for process to exit", name, e);
}
}

Expand Down
6 changes: 6 additions & 0 deletions docs/changelog/98124.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 98124
summary: Fork CCS remote-cluster responses
area: Search
type: bug
issues:
- 97997
5 changes: 5 additions & 0 deletions docs/changelog/98187.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 98187
summary: Make `RestController` pluggable
area: Infra/REST API
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/98209.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 98209
summary: Fork CCS search-shards handling
area: Search
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/98246.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 98246
summary: Read operator privs enabled from Env settings
area: Authorization
type: enhancement
issues: []
4 changes: 2 additions & 2 deletions docs/reference/modules/threadpool.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ There are several thread pools, but the important ones include:

`search_coordination`::
For lightweight search-related coordination operations. Thread pool type is
`fixed` with a size of a max of `min(5, (`<<node.processors,
`# of allocated processors`>>`) / 2)`, and queue_size of `1000`.
`fixed` with a size of `(`<<node.processors, `# of allocated processors`>>`) / 2`,
and queue_size of `1000`.

`get`::
For get operations. Thread pool type is
Expand Down
Loading

0 comments on commit 3c9c519

Please sign in to comment.