Repository: incubator-vxquery Updated Branches: refs/heads/prestonc/benchmark 8b86884a1 -> 443532ff6
Fixed the local batch scale up data linking. Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/443532ff Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/443532ff Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/443532ff Branch: refs/heads/prestonc/benchmark Commit: 443532ff675b575e812c6330a59572e8e648f3ee Parents: 8b86884 Author: Preston Carman <[email protected]> Authored: Wed May 21 17:40:41 2014 -0700 Committer: Preston Carman <[email protected]> Committed: Wed May 21 17:40:41 2014 -0700 ---------------------------------------------------------------------- .../main/resources/noaa-ghcn-daily/scripts/weather_benchmark.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/443532ff/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/scripts/weather_benchmark.py ---------------------------------------------------------------------- diff --git a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/scripts/weather_benchmark.py b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/scripts/weather_benchmark.py index b862b31..f3c9e68 100644 --- a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/scripts/weather_benchmark.py +++ b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/scripts/weather_benchmark.py @@ -227,6 +227,8 @@ class WeatherBenchmark: index = 0 link_base_schemes = get_partition_scheme(0, 1, self.base_paths, self.DATA_LINKS_FOLDER + test) for link_node, link_disk, link_virtual, link_index, link_path in link_base_schemes: + if test == "local_batch_scale_out" and index > 0: + continue new_link_path = self.get_zero_partition_path(link_node, self.DATA_LINKS_FOLDER + test) scheme.append([0, index, 0, link_path, new_link_path]) index += 1
