Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO NOT MERGE][Kernel] Option 2 for wrapping all calls into the client implementation #3065

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright (2024) The Delta Lake Project Authors.
*
* 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.delta.kernel.exceptions;

/**
* TODO
*/
public class KernelEngineException extends RuntimeException {

public KernelEngineException(String attemptedOperation, Throwable cause) {
super(
String.format(
"Encountered an error from the underlying engine implementation while trying " +
"to %s: %s",
attemptedOperation,
cause.getMessage()
),
cause
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import io.delta.kernel.internal.skipping.DataSkippingPredicate;
import io.delta.kernel.internal.skipping.DataSkippingUtils;
import io.delta.kernel.internal.util.*;
import static io.delta.kernel.internal.client.WrappedExpressionHandler.wrapExpressionHandler;
import static io.delta.kernel.internal.skipping.StatsSchemaHelper.getStatsSchema;
import static io.delta.kernel.internal.util.PartitionUtils.rewritePartitionPredicateOnCheckpointFileSchema;
import static io.delta.kernel.internal.util.PartitionUtils.rewritePartitionPredicateOnScanFileSchema;
Expand Down Expand Up @@ -231,14 +232,21 @@ public boolean hasNext() {
public FilteredColumnarBatch next() {
FilteredColumnarBatch next = scanFileIter.next();
if (predicateEvaluator == null) {
predicateEvaluator =
engine.getExpressionHandler().getPredicateEvaluator(
next.getData().getSchema(),
predicateOnScanFileBatch);
predicateEvaluator = wrapExpressionHandler(
engine,
String.format(
"Evaluate partition predicate %s on schema %s",
predicateOnScanFileBatch,
next.getData().getSchema())
).getPredicateEvaluator(
next.getData().getSchema(),
predicateOnScanFileBatch
);
}
ColumnVector newSelectionVector = predicateEvaluator.eval(
next.getData(),
next.getSelectionVector());
next.getData(),
next.getSelectionVector());

return new FilteredColumnarBatch(
next.getData(),
Optional.of(newSelectionVector));
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright (2023) The Delta Lake Project Authors.
*
* 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.delta.kernel.internal.client;

import java.util.concurrent.Callable;

import io.delta.kernel.exceptions.KernelEngineException;

public interface ClientExceptionWrapping {

// TODO make operation string construction lazy
default <T> T wrapWithEngineException(Callable<T> s, String operation) {
try {
return s.call();
} catch (Exception e) {
throw new KernelEngineException(operation, e);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/*
* Copyright (2023) The Delta Lake Project Authors.
*
* 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.delta.kernel.internal.client;

import java.util.Optional;

import io.delta.kernel.data.ColumnVector;
import io.delta.kernel.data.ColumnarBatch;
import io.delta.kernel.engine.Engine;
import io.delta.kernel.engine.ExpressionHandler;
import io.delta.kernel.expressions.Expression;
import io.delta.kernel.expressions.ExpressionEvaluator;
import io.delta.kernel.expressions.Predicate;
import io.delta.kernel.expressions.PredicateEvaluator;
import io.delta.kernel.types.DataType;
import io.delta.kernel.types.StructType;

public class WrappedExpressionHandler implements ExpressionHandler, ClientExceptionWrapping {

public static ExpressionHandler wrapExpressionHandler(Engine engine, String operation) {
return new WrappedExpressionHandler(engine.getExpressionHandler(), operation);
}

private final ExpressionHandler baseHandler;
private final String operationMessage;

// TODO make operation string construction lazy
private WrappedExpressionHandler(ExpressionHandler baseHandler, String operationMessage) {
this.baseHandler = baseHandler;
this.operationMessage = operationMessage;
}

@Override
public ExpressionEvaluator getEvaluator(StructType inputSchema, Expression expression, DataType outputType) {
ExpressionEvaluator baseEvaluator = wrapWithEngineException(
() -> baseHandler.getEvaluator(inputSchema, expression, outputType),
operationMessage);
return new ExpressionEvaluator() {
@Override
public void close() throws Exception {
baseEvaluator.close();
}

@Override
public ColumnVector eval(ColumnarBatch input) {
return wrapWithEngineException(
() -> baseEvaluator.eval(input),
operationMessage);
}
};
}

@Override
public PredicateEvaluator getPredicateEvaluator(StructType inputSchema, Predicate predicate) {
PredicateEvaluator baseEvaluator = wrapWithEngineException(
() -> baseHandler.getPredicateEvaluator(inputSchema, predicate),
operationMessage);
return new PredicateEvaluator() {
@Override
public ColumnVector eval(ColumnarBatch inputData, Optional<ColumnVector> existingSelectionVector) {
return wrapWithEngineException(
() -> baseEvaluator.eval(inputData, existingSelectionVector),
operationMessage);
}
};
}

@Override
public ColumnVector createSelectionVector(boolean[] values, int from, int to) {
return wrapWithEngineException(
() -> baseHandler.createSelectionVector(values, from, to),
operationMessage
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import io.delta.kernel.internal.fs.Path;
import io.delta.kernel.internal.replay.LogReplayUtils.UniqueFileActionTuple;
import io.delta.kernel.internal.util.Utils;
import static io.delta.kernel.internal.client.WrappedExpressionHandler.wrapExpressionHandler;
import static io.delta.kernel.internal.replay.LogReplay.ADD_FILE_DV_ORDINAL;
import static io.delta.kernel.internal.replay.LogReplay.ADD_FILE_ORDINAL;
import static io.delta.kernel.internal.replay.LogReplay.ADD_FILE_PATH_ORDINAL;
Expand Down Expand Up @@ -217,11 +218,14 @@ private void prepareNext() {
// Step 4: TODO: remove this step. This is a temporary requirement until the path
// in `add` is converted to absolute path.
if (tableRootVectorGenerator == null) {
tableRootVectorGenerator = engine.getExpressionHandler()
.getEvaluator(
scanAddFiles.getSchema(),
Literal.ofString(tableRoot.toUri().toString()),
StringType.STRING);
tableRootVectorGenerator = wrapExpressionHandler(
engine,
"Evaluate the table root literal"
).getEvaluator(
scanAddFiles.getSchema(),
Literal.ofString(tableRoot.toUri().toString()),
StringType.STRING
);
}
ColumnVector tableRootVector = tableRootVectorGenerator.eval(scanAddFiles);
scanAddFiles = scanAddFiles.withNewColumn(
Expand Down