forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-17455: [Go] Function and Kernel execution architecture (apache#…
…13964) In addition to implementing the function execution architecture, this also shifts some files around for better package naming and scoping. A new package `exec` is created inside of `compute/internal/` to make it easier to scope other internal-only methods / functionality such as the kernel implementations themselves. This is a fairly large change because so much is interconnected, but it also includes extensive tests covering ~85% of the `internal/exec` package and nearly 80% of the entire `compute` package. More tests will be added as functionality is added. Authored-by: Matt Topol <[email protected]> Signed-off-by: Matt Topol <[email protected]>
- Loading branch information
1 parent
247fc21
commit 721f3ff
Showing
25 changed files
with
2,683 additions
and
295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// 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. | ||
|
||
|
||
go 1.18 | ||
|
||
use ( | ||
./go | ||
./go/arrow/compute | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
// 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 compute | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/apache/arrow/go/v10/arrow" | ||
"github.com/apache/arrow/go/v10/arrow/compute/internal/exec" | ||
"github.com/apache/arrow/go/v10/arrow/internal/debug" | ||
) | ||
|
||
func haveChunkedArray(values []Datum) bool { | ||
for _, v := range values { | ||
if v.Kind() == KindChunked { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
// ExecSpanFromBatch constructs and returns a new ExecSpan from the values | ||
// inside of the ExecBatch which could be scalar or arrays. | ||
// | ||
// This is mostly used for tests but is also a convenience method for other | ||
// cases. | ||
func ExecSpanFromBatch(batch *ExecBatch) *exec.ExecSpan { | ||
out := &exec.ExecSpan{Len: batch.Len, Values: make([]exec.ExecValue, len(batch.Values))} | ||
for i, v := range batch.Values { | ||
outVal := &out.Values[i] | ||
if v.Kind() == KindScalar { | ||
outVal.Scalar = v.(*ScalarDatum).Value | ||
} else { | ||
outVal.Array.SetMembers(v.(*ArrayDatum).Value) | ||
outVal.Scalar = nil | ||
} | ||
} | ||
return out | ||
} | ||
|
||
// this is the primary driver of execution | ||
func execInternal(ctx context.Context, fn Function, opts FunctionOptions, passedLen int64, args ...Datum) (result Datum, err error) { | ||
if opts == nil { | ||
if err = checkOptions(fn, opts); err != nil { | ||
return | ||
} | ||
opts = fn.DefaultOptions() | ||
} | ||
|
||
// we only allow Array, ChunkedArray, and Scalars for now. | ||
// RecordBatch and Table datums are disallowed. | ||
if err = checkAllIsValue(args); err != nil { | ||
return | ||
} | ||
|
||
inTypes := make([]arrow.DataType, len(args)) | ||
for i, a := range args { | ||
inTypes[i] = a.(ArrayLikeDatum).Type() | ||
} | ||
|
||
var ( | ||
k exec.Kernel | ||
executor kernelExecutor | ||
) | ||
|
||
switch fn.Kind() { | ||
case FuncScalar: | ||
executor = scalarExecPool.Get().(*scalarExecutor) | ||
defer func() { | ||
executor.clear() | ||
scalarExecPool.Put(executor.(*scalarExecutor)) | ||
}() | ||
default: | ||
return nil, fmt.Errorf("%w: direct execution of %s", arrow.ErrNotImplemented, fn.Kind()) | ||
} | ||
|
||
if k, err = fn.DispatchBest(inTypes...); err != nil { | ||
return | ||
} | ||
|
||
kctx := &exec.KernelCtx{Ctx: ctx, Kernel: k} | ||
init := k.GetInitFn() | ||
kinitArgs := exec.KernelInitArgs{Kernel: k, Inputs: inTypes, Options: opts} | ||
if init != nil { | ||
kctx.State, err = init(kctx, kinitArgs) | ||
if err != nil { | ||
return | ||
} | ||
} | ||
|
||
if err = executor.Init(kctx, kinitArgs); err != nil { | ||
return | ||
} | ||
|
||
input := ExecBatch{Values: args, Len: 0} | ||
if input.NumValues() == 0 { | ||
if passedLen != -1 { | ||
input.Len = passedLen | ||
} | ||
} else { | ||
inferred, _ := inferBatchLength(input.Values) | ||
input.Len = inferred | ||
switch fn.Kind() { | ||
case FuncScalar: | ||
if passedLen != -1 && passedLen != inferred { | ||
return nil, fmt.Errorf("%w: passed batch length for execution did not match actual length for scalar fn execution", | ||
arrow.ErrInvalid) | ||
} | ||
} | ||
} | ||
|
||
ectx := GetExecCtx(ctx) | ||
|
||
ctx, cancel := context.WithCancel(context.Background()) | ||
defer cancel() | ||
|
||
ch := make(chan Datum, ectx.ExecChannelSize) | ||
go func() { | ||
defer close(ch) | ||
if err = executor.Execute(ctx, &input, ch); err != nil { | ||
cancel() | ||
} | ||
}() | ||
|
||
result = executor.WrapResults(ctx, ch, haveChunkedArray(input.Values)) | ||
debug.Assert(executor.CheckResultType(result) == nil, "invalid result type") | ||
|
||
if ctx.Err() == context.Canceled { | ||
result.Release() | ||
} | ||
|
||
return | ||
} | ||
|
||
// CallFunction is a one-shot invoker for all types of functions. | ||
// | ||
// It will perform kernel-dispatch, argument checking, iteration of | ||
// ChunkedArray inputs and wrapping of outputs. | ||
// | ||
// To affect the execution options, you must call SetExecCtx and pass | ||
// the resulting context in here. | ||
func CallFunction(ctx context.Context, funcName string, opts FunctionOptions, args ...Datum) (Datum, error) { | ||
ectx := GetExecCtx(ctx) | ||
fn, ok := ectx.Registry.GetFunction(funcName) | ||
if !ok { | ||
return nil, fmt.Errorf("%w: function '%s' not found", arrow.ErrKey, funcName) | ||
} | ||
|
||
return fn.Execute(ctx, opts, args...) | ||
} |
Oops, something went wrong.