io.trino.memory.RemoteNodeMemory Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.memory;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.Futures;
import com.google.errorprone.annotations.ThreadSafe;
import io.airlift.http.client.FullJsonResponseHandler.JsonResponse;
import io.airlift.http.client.HttpClient;
import io.airlift.http.client.HttpClient.HttpResponseFuture;
import io.airlift.http.client.Request;
import io.airlift.json.JsonCodec;
import io.airlift.log.Logger;
import io.airlift.units.Duration;
import io.trino.metadata.InternalNode;
import jakarta.annotation.Nullable;
import java.net.URI;
import java.util.Optional;
import java.util.concurrent.Future;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
import static io.airlift.http.client.FullJsonResponseHandler.createFullJsonResponseHandler;
import static io.airlift.http.client.HttpStatus.OK;
import static io.airlift.http.client.Request.Builder.prepareGet;
import static io.airlift.units.Duration.nanosSince;
import static java.util.Objects.requireNonNull;
import static java.util.concurrent.TimeUnit.SECONDS;
@ThreadSafe
public class RemoteNodeMemory
{
private static final Logger log = Logger.get(RemoteNodeMemory.class);
private final InternalNode node;
private final HttpClient httpClient;
private final URI memoryInfoUri;
private final JsonCodec memoryInfoCodec;
private final AtomicReference> memoryInfo = new AtomicReference<>(Optional.empty());
private final AtomicReference> future = new AtomicReference<>();
private final AtomicLong lastUpdateNanos = new AtomicLong();
private final AtomicLong lastWarningLogged = new AtomicLong();
public RemoteNodeMemory(
InternalNode node,
HttpClient httpClient,
JsonCodec memoryInfoCodec,
URI memoryInfoUri)
{
this.node = requireNonNull(node, "node is null");
this.httpClient = requireNonNull(httpClient, "httpClient is null");
this.memoryInfoUri = requireNonNull(memoryInfoUri, "memoryInfoUri is null");
this.memoryInfoCodec = requireNonNull(memoryInfoCodec, "memoryInfoCodec is null");
}
public Optional getInfo()
{
return memoryInfo.get();
}
public InternalNode getNode()
{
return node;
}
public void asyncRefresh()
{
Duration sinceUpdate = nanosSince(lastUpdateNanos.get());
if (nanosSince(lastWarningLogged.get()).toMillis() > 1_000 &&
sinceUpdate.toMillis() > 10_000 &&
future.get() != null) {
log.warn("Memory info update request to %s has not returned in %s", memoryInfoUri, sinceUpdate.toString(SECONDS));
lastWarningLogged.set(System.nanoTime());
}
if (sinceUpdate.toMillis() > 1_000 && future.get() == null) {
Request request = prepareGet()
.setUri(memoryInfoUri)
.build();
HttpResponseFuture> responseFuture = httpClient.executeAsync(request, createFullJsonResponseHandler(memoryInfoCodec));
future.compareAndSet(null, responseFuture);
Futures.addCallback(responseFuture, new FutureCallback<>()
{
@Override
public void onSuccess(@Nullable JsonResponse result)
{
lastUpdateNanos.set(System.nanoTime());
future.compareAndSet(responseFuture, null);
if (result != null) {
if (result.hasValue()) {
memoryInfo.set(Optional.ofNullable(result.getValue()));
}
if (result.getStatusCode() != OK.code()) {
log.warn("Error fetching memory info from %s returned status %d", memoryInfoUri, result.getStatusCode());
}
}
}
@Override
public void onFailure(Throwable t)
{
log.warn("Error fetching memory info from %s: %s", memoryInfoUri, t.getMessage());
lastUpdateNanos.set(System.nanoTime());
future.compareAndSet(responseFuture, null);
}
}, directExecutor());
}
}
}