Modified my client to log how many requests were sent, and it appears that every 10k requests; A goaway is sent.
response = getClient().send(request, BodyHandlers.ofInputStream());
if (request.method().equalsIgnoreCase("get")) {
getRequestsSent++;
}else if...