lazada_rtdmp.sh 730 Bytes
Newer Older
WangJinfeng committed
1 2 3 4 5 6 7 8
#!/bin/bash

source ../../dmp_env.sh

today=${ScheduleTime}

date=$(date +"%Y%m%d" -d "-1 day $today")

WangJinfeng committed
9
date_path=$(date +"%Y/%m/%d" -d "-1 day $today")
WangJinfeng committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

OUTPUT="s3://mob-emr-test/dataplatform/rtdmp_request/${date_path}/lazada"

spark-submit --class mobvista.dmp.datasource.rtdmp.lazada.ProcessRTJob \
  --name "ProcessRTJob.${date}" \
  --conf spark.sql.shuffle.partitions=4000 \
  --conf spark.default.parallelism=4000 \
  --conf spark.kryoserializer.buffer.max=256m \
  --conf spark.executor.extraJavaOptions="-XX:+UseG1GC" \
  --master yarn --deploy-mode cluster --executor-memory 6g --driver-memory 4g --executor-cores 4 --num-executors 5 \
  ../../${JAR} -dt ${date} -output ${OUTPUT}

if [[ $? -ne 0 ]]; then
  exit 255
fi