### What changes were proposed in this pull request? 1. Map side merge and push. 2. Support hadoop2 & 3. 3. Reduce in-memory merge. 4. Integrate LifecycleManager to RmApplicationMaster. ### Why are the changes needed? Ditto. ### Does this PR introduce _any_ user-facing change? NO. ### How was this patch tested? Cluster. I tested this PR on a cluster with a 4x 16 CPU 64G Mem 4ESSD cluster. Hadoop 2.8.5 1TB Terasort, 8400 mappers, 1000 reducers Celeborn 81min vs MR shuffle 89min   1GB wordcount, 8 mappers, 8 reducers Celeborn 35s VS MR shuffle 38s   Closes #1830 from FMX/CELEBORN-839. Lead-authored-by: mingji <fengmingxiao.fmx@alibaba-inc.com> Co-authored-by: Ethan Feng <fengmingxiao.fmx@alibaba-inc.com> Signed-off-by: zky.zhoukeyong <zky.zhoukeyong@alibaba-inc.com>
28 lines
1.1 KiB
Bash
Executable File
28 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
set -x
|
|
|
|
PROJECT_DIR="$(cd "`dirname "$0"`/.."; pwd)"
|
|
${PROJECT_DIR}/build/mvn spotless:apply -Pflink-1.14
|
|
${PROJECT_DIR}/build/mvn spotless:apply -Pflink-1.15
|
|
${PROJECT_DIR}/build/mvn spotless:apply -Pflink-1.17
|
|
${PROJECT_DIR}/build/mvn spotless:apply -Pspark-2.4
|
|
${PROJECT_DIR}/build/mvn spotless:apply -Pspark-3.3
|
|
${PROJECT_DIR}/build/mvn spotless:apply -Pmr
|