blob: 91260063a521aef5168c5e14963fe21c2a72e57e [file] [log] [blame]
/*
* 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.iotdb.db.mpp.plan.execution.config;
import org.apache.iotdb.commons.exception.IoTDBException;
import org.apache.iotdb.commons.utils.TestOnly;
import org.apache.iotdb.db.conf.IoTDBConfig;
import org.apache.iotdb.db.conf.IoTDBDescriptor;
import org.apache.iotdb.db.mpp.common.MPPQueryContext;
import org.apache.iotdb.db.mpp.common.header.DatasetHeader;
import org.apache.iotdb.db.mpp.execution.QueryStateMachine;
import org.apache.iotdb.db.mpp.plan.analyze.QueryType;
import org.apache.iotdb.db.mpp.plan.execution.ExecutionResult;
import org.apache.iotdb.db.mpp.plan.execution.IQueryExecution;
import org.apache.iotdb.db.mpp.plan.execution.config.executor.ClusterConfigTaskExecutor;
import org.apache.iotdb.db.mpp.plan.execution.config.executor.IConfigTaskExecutor;
import org.apache.iotdb.db.mpp.plan.execution.config.executor.StandaloneConfigTaskExecutor;
import org.apache.iotdb.db.mpp.plan.statement.Statement;
import org.apache.iotdb.rpc.RpcUtils;
import org.apache.iotdb.rpc.StatementExecutionException;
import org.apache.iotdb.rpc.TSStatusCode;
import org.apache.iotdb.tsfile.read.common.block.TsBlock;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import jersey.repackaged.com.google.common.util.concurrent.SettableFuture;
import org.jetbrains.annotations.NotNull;
import java.util.Optional;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
public class ConfigExecution implements IQueryExecution {
private static IoTDBConfig config = IoTDBDescriptor.getInstance().getConfig();
private final MPPQueryContext context;
private final ExecutorService executor;
private final QueryStateMachine stateMachine;
private final SettableFuture<ConfigTaskResult> taskFuture;
private TsBlock resultSet;
private DatasetHeader datasetHeader;
private boolean resultSetConsumed;
private final IConfigTask task;
private IConfigTaskExecutor configTaskExecutor;
public ConfigExecution(MPPQueryContext context, Statement statement, ExecutorService executor) {
this.context = context;
this.executor = executor;
this.stateMachine = new QueryStateMachine(context.getQueryId(), executor);
this.taskFuture = SettableFuture.create();
this.task = statement.accept(new ConfigTaskVisitor(), new ConfigTaskVisitor.TaskContext());
this.resultSetConsumed = false;
if (config.isClusterMode()) {
configTaskExecutor = ClusterConfigTaskExecutor.getInstance();
} else {
configTaskExecutor = StandaloneConfigTaskExecutor.getInstance();
}
}
@TestOnly
public ConfigExecution(MPPQueryContext context, ExecutorService executor, IConfigTask task) {
this.context = context;
this.executor = executor;
this.stateMachine = new QueryStateMachine(context.getQueryId(), executor);
this.taskFuture = SettableFuture.create();
this.task = task;
}
@Override
public void start() {
try {
ListenableFuture<ConfigTaskResult> future = task.execute(configTaskExecutor);
Futures.addCallback(
future,
new FutureCallback<ConfigTaskResult>() {
@Override
public void onSuccess(ConfigTaskResult taskRet) {
stateMachine.transitionToFinished();
taskFuture.set(taskRet);
}
@Override
public void onFailure(@NotNull Throwable throwable) {
fail(throwable);
}
},
executor);
} catch (Throwable e) {
if (e instanceof InterruptedException) {
Thread.currentThread().interrupt();
}
fail(e);
}
}
public void fail(Throwable cause) {
stateMachine.transitionToFailed(cause);
ConfigTaskResult result;
if (cause instanceof IoTDBException) {
result =
new ConfigTaskResult(TSStatusCode.representOf(((IoTDBException) cause).getErrorCode()));
} else if (cause instanceof StatementExecutionException) {
result =
new ConfigTaskResult(
TSStatusCode.representOf(((StatementExecutionException) cause).getStatusCode()));
} else {
result = new ConfigTaskResult(TSStatusCode.INTERNAL_SERVER_ERROR);
}
taskFuture.set(result);
}
@Override
public void stop() {}
@Override
public void stopAndCleanup() {}
@Override
public ExecutionResult getStatus() {
try {
ConfigTaskResult taskResult = taskFuture.get();
TSStatusCode statusCode = taskResult.getStatusCode();
resultSet = taskResult.getResultSet();
datasetHeader = taskResult.getResultSetHeader();
String message =
statusCode == TSStatusCode.SUCCESS_STATUS ? "" : stateMachine.getFailureMessage();
return new ExecutionResult(context.getQueryId(), RpcUtils.getStatus(statusCode, message));
} catch (InterruptedException | ExecutionException e) {
if (e instanceof InterruptedException) {
Thread.currentThread().interrupt();
}
return new ExecutionResult(
context.getQueryId(),
RpcUtils.getStatus(TSStatusCode.QUERY_PROCESS_ERROR, e.getMessage()));
}
}
@Override
public Optional<TsBlock> getBatchResult() {
if (!resultSetConsumed) {
resultSetConsumed = true;
return Optional.of(resultSet);
}
return Optional.empty();
}
// According to the execution process of ConfigExecution, there is only one TsBlock for
// this execution. Thus, the hasNextResult will be false once the TsBlock is consumed
@Override
public boolean hasNextResult() {
return !resultSetConsumed && resultSet != null;
}
@Override
public int getOutputValueColumnCount() {
return datasetHeader.getOutputValueColumnCount();
}
@Override
public DatasetHeader getDatasetHeader() {
return datasetHeader;
}
@Override
public boolean isQuery() {
return context.getQueryType() == QueryType.READ;
}
@Override
public String getQueryId() {
return context.getQueryId().getId();
}
}