spark-instrumented-optimizer/python/pyspark/worker.py

90 lines
3.2 KiB
Python
Raw Normal View History

#
# 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.
#
2012-08-10 04:10:02 -04:00
"""
Worker that receives input from Piped RDD.
"""
2013-02-01 03:25:19 -05:00
import os
2012-08-10 04:10:02 -04:00
import sys
2013-05-06 19:34:30 -04:00
import time
import traceback
2012-08-10 04:10:02 -04:00
from base64 import standard_b64decode
# CloudPickler needs to be imported so that depicklers are registered using the
# copy_reg module.
2013-01-20 04:57:44 -05:00
from pyspark.accumulators import _accumulatorRegistry
2012-08-25 16:59:01 -04:00
from pyspark.broadcast import Broadcast, _broadcastRegistry
2012-08-19 20:12:51 -04:00
from pyspark.cloudpickle import CloudPickler
from pyspark.files import SparkFiles
2013-01-20 04:57:44 -05:00
from pyspark.serializers import write_with_length, read_with_length, write_int, \
2013-03-10 16:54:46 -04:00
read_long, write_long, read_int, dump_pickle, load_pickle, read_from_pickle_file
2012-08-10 04:10:02 -04:00
2013-05-06 19:34:30 -04:00
def load_obj(infile):
return load_pickle(standard_b64decode(infile.readline().strip()))
2012-08-10 04:10:02 -04:00
2013-05-06 19:34:30 -04:00
def report_times(outfile, boot, init, finish):
write_int(-3, outfile)
write_long(1000 * boot, outfile)
write_long(1000 * init, outfile)
write_long(1000 * finish, outfile)
2013-03-10 16:54:46 -04:00
2013-05-06 19:34:30 -04:00
def main(infile, outfile):
2013-03-10 16:54:46 -04:00
boot_time = time.time()
2013-05-06 19:34:30 -04:00
split_index = read_int(infile)
if split_index == -1: # for unit tests
return
2013-05-06 19:34:30 -04:00
spark_files_dir = load_pickle(read_with_length(infile))
SparkFiles._root_directory = spark_files_dir
SparkFiles._is_running_on_worker = True
sys.path.append(spark_files_dir)
2013-05-06 19:34:30 -04:00
num_broadcast_variables = read_int(infile)
2012-08-25 16:59:01 -04:00
for _ in range(num_broadcast_variables):
2013-05-06 19:34:30 -04:00
bid = read_long(infile)
value = read_with_length(infile)
_broadcastRegistry[bid] = Broadcast(bid, load_pickle(value))
2013-05-06 19:34:30 -04:00
func = load_obj(infile)
bypassSerializer = load_obj(infile)
if bypassSerializer:
dumps = lambda x: x
2012-08-10 04:10:02 -04:00
else:
dumps = dump_pickle
2013-03-10 16:54:46 -04:00
init_time = time.time()
2013-05-06 19:34:30 -04:00
iterator = read_from_pickle_file(infile)
try:
for obj in func(split_index, iterator):
2013-05-06 19:34:30 -04:00
write_with_length(dumps(obj), outfile)
except Exception as e:
2013-05-06 19:34:30 -04:00
write_int(-2, outfile)
write_with_length(traceback.format_exc(), outfile)
2013-06-21 12:13:48 -04:00
sys.exit(-1)
2013-03-10 16:54:46 -04:00
finish_time = time.time()
2013-05-06 19:34:30 -04:00
report_times(outfile, boot_time, init_time, finish_time)
2013-01-20 04:57:44 -05:00
# Mark the beginning of the accumulators section of the output
2013-05-06 19:34:30 -04:00
write_int(-1, outfile)
2013-01-20 04:57:44 -05:00
for aid, accum in _accumulatorRegistry.items():
2013-05-06 19:34:30 -04:00
write_with_length(dump_pickle((aid, accum._value)), outfile)
write_int(-1, outfile)
2012-08-10 04:10:02 -04:00
if __name__ == '__main__':
2013-05-06 19:34:30 -04:00
# Redirect stdout to stderr so that users must return values from functions.
old_stdout = os.fdopen(os.dup(1), 'w')
os.dup2(2, 1)
main(sys.stdin, old_stdout)