![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.ignite.internal.rest.compute.ComputeController Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.ignite.internal.rest.compute;
import static java.util.concurrent.CompletableFuture.failedFuture;
import static java.util.stream.Collectors.toList;
import static org.apache.ignite.internal.util.CompletableFutures.nullCompletedFuture;
import io.micronaut.http.annotation.Controller;
import java.util.Collection;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
import org.apache.ignite.internal.compute.IgniteComputeInternal;
import org.apache.ignite.internal.rest.ResourceHolder;
import org.apache.ignite.internal.rest.api.compute.ComputeApi;
import org.apache.ignite.internal.rest.api.compute.JobState;
import org.apache.ignite.internal.rest.api.compute.JobStatus;
import org.apache.ignite.internal.rest.api.compute.UpdateJobPriorityBody;
import org.apache.ignite.internal.rest.compute.exception.ComputeJobNotFoundException;
import org.apache.ignite.internal.rest.compute.exception.ComputeJobStatusException;
import org.jetbrains.annotations.Nullable;
/**
* REST controller for compute operations.
*/
@Controller
public class ComputeController implements ComputeApi, ResourceHolder {
private IgniteComputeInternal compute;
public ComputeController(IgniteComputeInternal compute) {
this.compute = compute;
}
@Override
public CompletableFuture> jobStates() {
return compute.statesAsync()
.thenApply(states -> states.stream().map(ComputeController::toJobState).collect(toList()));
}
@Override
public CompletableFuture jobState(UUID jobId) {
return jobState0(jobId);
}
@Override
public CompletableFuture updatePriority(UUID jobId, UpdateJobPriorityBody updateJobPriorityBody) {
return compute.changePriorityAsync(jobId, updateJobPriorityBody.priority())
.thenCompose(result -> handleOperationResult(jobId, result));
}
@Override
public CompletableFuture cancelJob(UUID jobId) {
return compute.cancelAsync(jobId)
.thenCompose(result -> handleOperationResult(jobId, result));
}
private CompletableFuture handleOperationResult(UUID jobId, @Nullable Boolean result) {
if (result == null) {
return failedFuture(new ComputeJobNotFoundException(jobId.toString()));
} else if (!result) {
return jobState0(jobId).thenCompose(state -> failedFuture(new ComputeJobStatusException(jobId.toString(), state.status())));
} else {
return nullCompletedFuture();
}
}
private CompletableFuture jobState0(UUID jobId) {
return compute.stateAsync(jobId)
.thenApply(state -> {
if (state == null) {
throw new ComputeJobNotFoundException(jobId.toString());
} else {
return toJobState(state);
}
});
}
private static JobState toJobState(org.apache.ignite.compute.JobState jobState) {
return new JobState(
jobState.id(),
JobStatus.valueOf(jobState.status().toString()),
jobState.createTime(),
jobState.startTime(),
jobState.finishTime()
);
}
@Override
public void cleanResources() {
compute = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy