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
|
# 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.
class TestExecutePlan < Test::Unit::TestCase
include Helper::Buildable
include Helper::Omittable
def execute(plan)
plan.validate
plan.start
plan.wait
yield
plan.stop
end
sub_test_case("aggregate") do
def build_plan(context = nil)
plan = Arrow::ExecutePlan.new(context)
record_batch =
build_record_batch(number: build_int8_array([1, 2, 3, 4, 5]),
string: build_string_array(["a", "b", "a", "b", "a"]))
source_node_options = Arrow::SourceNodeOptions.new(record_batch)
source_node = plan.build_source_node(source_node_options)
aggregate_node_options = yield
aggregate_node = plan.build_aggregate_node(source_node,
aggregate_node_options)
sink_node_options = Arrow::SinkNodeOptions.new
sink_node = plan.build_sink_node(aggregate_node,
sink_node_options)
[plan, sink_node_options.get_reader(aggregate_node.output_schema)]
end
def test_by_string
plan, reader = build_plan do
aggregations = [
Arrow::Aggregation.new("hash_sum", nil, "number", "sum(number)"),
Arrow::Aggregation.new("hash_count", nil, "number", "count(number)"),
]
Arrow::AggregateNodeOptions.new(aggregations, ["string"])
end
execute(plan) do
assert_equal(build_table("string" => build_string_array(["a", "b"]),
"sum(number)" => build_int64_array([9, 6]),
"count(number)" => build_int64_array([3, 2])),
reader.read_all)
end
end
def test_hash_first_with_single_thread
thread_pool = Arrow::ThreadPool.new(1)
context = Arrow::ExecuteContext.new(thread_pool)
plan, reader = build_plan(context) do
aggregations = [
Arrow::Aggregation.new("hash_first", nil, "number", "first(number)"),
]
Arrow::AggregateNodeOptions.new(aggregations, ["string"])
end
execute(plan) do
assert_equal(build_table("string" => build_string_array(["a", "b"]),
"first(number)" => build_int8_array([1, 2])),
reader.read_all)
end
end
end
sub_test_case("hash join") do
def build_plan
plan = Arrow::ExecutePlan.new
left_record_batch =
build_record_batch(number: build_int8_array([1, 2, 3, 4, 5]),
string: build_string_array(["a", "b", "a", "b", "a"]))
left_node_options = Arrow::SourceNodeOptions.new(left_record_batch)
left_node = plan.build_source_node(left_node_options)
right_record_batch =
build_record_batch(right_number: build_int8_array([1, 2]),
right_string: build_string_array(["R-1", "R-2"]))
right_node_options = Arrow::SourceNodeOptions.new(right_record_batch)
right_node = plan.build_source_node(right_node_options)
hash_join_node_options = yield
hash_join_node = plan.build_hash_join_node(left_node,
right_node,
hash_join_node_options)
sink_node_options = Arrow::SinkNodeOptions.new
sink_node = plan.build_sink_node(hash_join_node,
sink_node_options)
[plan, sink_node_options.get_reader(hash_join_node.output_schema)]
end
def test_output_all
plan, reader = build_plan do
Arrow::HashJoinNodeOptions.new(:left_outer,
["number"],
["right_number"])
end
execute(plan) do
left_number = build_int8_array([1, 2, 3, 4, 5])
left_string = build_string_array(["a", "b", "a", "b", "a"])
right_number = build_int8_array([1, 2, nil, nil, nil])
right_string = build_string_array(["R-1", "R-2", nil, nil, nil])
assert_equal(build_table("number" => left_number,
"string" => left_string,
"right_number" => right_number,
"right_string" => right_string),
reader.read_all)
end
end
def test_output_selected
plan, reader = build_plan do
options = Arrow::HashJoinNodeOptions.new(:left_outer,
["number"],
["right_number"])
options.left_outputs = ["number"]
options.right_outputs = ["right_number"]
options
end
execute(plan) do
left_number = build_int8_array([1, 2, 3, 4, 5])
right_number = build_int8_array([1, 2, nil, nil, nil])
assert_equal(build_table("number" => left_number,
"right_number" => right_number),
reader.read_all)
end
end
end
end
|