forked from oap-project/velox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExpressionEval.cpp
173 lines (154 loc) · 7.58 KB
/
ExpressionEval.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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.
*/
#include "velox/common/memory/Memory.h"
#include "velox/functions/Udf.h"
#include "velox/type/Type.h"
#include "velox/vector/BaseVector.h"
using namespace facebook::velox;
/// This file contains a step-by-step usage example of Velox's expression
/// evaluation engine.
///
/// It shows how to register a simple function and describes all the steps
/// required to create the appropriate query and expression structures, a simple
/// expression tree, an input batch of data, and execute the expression over it.
// First, define a toy function that multiplies the input argument by two.
//
// Check `velox/docs/develop/scalar-functions.rst` for more documentation on how
// to build scalar functions.
template <typename T>
struct TimesTwoFunction {
FOLLY_ALWAYS_INLINE bool call(int64_t& out, const int64_t& a) {
out = a * 2;
return true; // True if result is not null.
}
};
int main(int argc, char** argv) {
// Register the function defined above. The first template parameter is the
// class that implements the `call()` function (or one of its variations), the
// second template parameter is the function return type, followed by the list
// of function input parameters.
//
// This function takes as an argument a list of aliases for the function being
// registered.
registerFunction<TimesTwoFunction, int64_t, int64_t>({"times_two"});
// First of all, executing an expression in Velox will require us to create a
// query context, a memory pool, and an execution context.
//
// QueryCtx holds the metadata and configuration associated with a
// particular query. This is shared between all threads of execution
// for the same query (one object per query).
auto queryCtx = core::QueryCtx::createForTest();
// ExecCtx holds structures associated with a single thread of execution
// (one per thread). Each thread of execution requires a scoped memory pool,
// which is where allocations from this thread will be made. When required, a
// pointer to this pool can be obtained using execCtx.pool().
//
// Optionally, one can control the per-thread memory cap by passing it as an
// argument to getDefaultScopedMemoryPool() - no limit by default.
auto pool = memory::getDefaultScopedMemoryPool();
core::ExecCtx execCtx{pool.get(), queryCtx.get()};
// Next, let's create an expression tree to be executed in this example. On a
// high-level, our expression tree will have the following structure:
//
// -----------------------------
// | CallTypedExpr (times_two) | => root
// -----------------------------
// /\
// ||
// ---------------------------------
// | FieldAccessTypedExpr (my_col) |
// ---------------------------------
//
// Let's first define a type for the input dataset used in this example. In
// this case, a single input column called "my_col", typed as bigint:
auto inputRowType = ROW({{"my_col", BIGINT()}});
// FieldAccessTypedExpr let us choose a particular field/column from the input
// dataset(s). The first parameter defines the return type of this field, the
// second is the field name. In this case we're interested in the "my_col"
// field:
auto fieldAccessExprNode =
std::make_shared<core::FieldAccessTypedExpr>(BIGINT(), "my_col");
// CallTypedExpr will be the root of our expression tree, and defines a
// function call. The first parameter is the expected return type (bigint in
// this case), the second is the list of parameter the function takes, and the
// third is the function name.
//
// This will be the root of our expression tree. In a realistic use case, this
// would be automatically and recursively generated based on some input IDL
// (or by a SQL string parser).
auto exprTree = std::make_shared<core::CallTypedExpr>(
BIGINT(),
std::vector<core::TypedExprPtr>{fieldAccessExprNode},
"times_two");
// Lastly, ExprSet contains the main expression evaluation logic. It takes a
// vector of expression trees (if there are multiple expressions to be
// evaluated). ExprSet will output one column per input exprTree. It also
// takes the execution context associated with the current thread of
// execution.
exec::ExprSet exprSet({exprTree}, &execCtx);
// Generate input batch.
//
// The next step is to generate an input batch of data to exercise the
// expression evaluation code. Expressions are always evaluated using
// RowVectors as input, which are named collections of vectors.
//
// Let's first create a single flat vector to represent the input
// "my_col" bigint column, and manually fill some data in it:
const size_t vectorSize = 10;
auto flatVector = std::dynamic_pointer_cast<FlatVector<int64_t>>(
BaseVector::create(BIGINT(), vectorSize, execCtx.pool()));
auto rawValues = flatVector->mutableRawValues();
std::iota(rawValues, rawValues + vectorSize, 0); // 0, 1, 2, 3, ...
// Then, let's wrap the generated flatVector in a RowVector:
auto rowVector = std::make_shared<RowVector>(
execCtx.pool(), // pool where allocations will be made.
inputRowType, // input row type (defined above).
BufferPtr(nullptr), // no nulls for this example.
vectorSize, // length of the vectors.
std::vector<VectorPtr>{flatVector}); // the input vector data.
// Now we move to the actual execution.
//
// We first create a vector of VectorPtrs to hold the expression results.
// (ExprSet outputs one vector per input expression - in this case, 1). The
// output vector will be allocated internally by ExprSet, so we just need to
// have a single null VectorPtr in this std::vector.
std::vector<VectorPtr> result{nullptr};
// Next, we create an input selectivity vector that controls the visibility
// of records from the input RowVector. In this case we don't want to filter
// out any rows, so just create a selectivity vector with all bits set.
SelectivityVector rows{vectorSize};
// Before execution we need to create one last structure - EvalCtx - which
// holds context about the expression evaluation of this particular batch.
// ExprSets can be reused by the same expression over multiple batches, but we
// need one EvalCtx per RowVector.
exec::EvalCtx evalCtx(&execCtx, &exprSet, rowVector.get());
// Voila! Here we do the actual evaluation. When this function returns, the
// output vectors will be available in the results vector. Note that ExprSet's
// logic is synchronous and single threaded.
exprSet.eval(rows, &evalCtx, &result);
// Print the output vector, just for fun:
const auto& outputVector = result.front();
for (size_t i = 0; i < outputVector->size(); ++i) {
LOG(INFO) << outputVector->toString(i);
}
// Lastly, remember that all allocations are associated with the scoped pool
// created in the beginning, and moved to ExecCtx. Once ExecCtx dies, it
// destructs the pool which will deallocate all memory associated with it, so
// be mindful about the object lifetime!
//
// (in this example this is safe since ExecCtx will be destructed last).
return 0;
}