Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 6a89b2a

Browse files
committed
Fix SIZE of Join test report
at Join test, there are 3 type of SIZE 1. Python,Scala SIZE=`dir_size $INPUT_HDFS` 2. Java SIZE=`dir_size $INPUT_HDFS/uservisits` 3. Hadoop SIZE=`dir_size $OUTPUT_HDFS` I feel that is not good. So I propose to use "dir_size $INPUT_HDFS" for result
1 parent 7650469 commit 6a89b2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • workloads/join/spark/java/bin

workloads/join/spark/java/bin/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ HIVEBENCH_SQL_FILE=${WORKLOAD_RESULT_FOLDER}/rankings_uservisits_join.hive
2727
prepare-sql-join ${HIVEBENCH_SQL_FILE}
2828

2929
START_TIME=`timestamp`
30-
SIZE=`dir_size $INPUT_HDFS/uservisits`
30+
SIZE=`dir_size $INPUT_HDFS`
3131
rmr-hdfs $OUTPUT_HDFS
3232
run-spark-job com.intel.sparkbench.sql.JavaSparkSQLBench JavaJoin ${HIVEBENCH_SQL_FILE}
3333

0 commit comments

Comments
 (0)