-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reformatted code, time rounded to one decimal place
- Loading branch information
1 parent
83e9547
commit c81c3f5
Showing
5 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
run: mvn clean compile package -DskipTests=true | ||
- name: execute py script | ||
run: | | ||
python perfTest/perfTestRunner.py | ||
python perf_test/perfTestRunner.py | ||
git config user.name nitish | ||
git config user.email [email protected] | ||
git add . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
******************************** perf test report, 2024-11-14, 18:09:04 ******************************** | ||
|
||
------------ Test bed details ------------ | ||
Load samples: 65_samples | ||
Phases: findTrainingData match | ||
------------------------------------------ | ||
|
||
capturing for 65_samples | ||
PHASE TIME_TAKEN_IN_MINUTES | ||
findTrainingData 3.0 | ||
match 4.5 | ||
|
||
******************************************************************************************************** | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
#ZINGG_HOME=./assembly/target | ||
ZINGG_JARS=$ZINGG_HOME/zingg-0.4.1-SNAPSHOT.jar | ||
[email protected] | ||
LICENSE=zinggLicense.txt | ||
|
@@ -63,5 +62,5 @@ if [[ $RUN_PYTHON_DB_CONNECT_PHASE -eq 1 ]]; then | |
python $EXECUTABLE | ||
else | ||
# All the additional options must be added here | ||
$SPARK_HOME/bin/spark-submit --master $SPARK_MASTER $PROPERTIES --files "./log4j2.properties" --conf spark.driver.memory=10g --conf spark.executor.extraJavaOptions="$log4j_setting -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+HeapDumpOnOutOfMemoryError -Xloggc:/tmp/memLog.txt -XX:+UseCompressedOops" --conf spark.driver.extraJavaOptions="$log4j_setting" $LOGGING --driver-class-path $ZINGG_JARS $EXECUTABLE $@ --email $EMAIL --license $LICENSE | ||
$SPARK_HOME/bin/spark-submit --master $SPARK_MASTER $PROPERTIES --files "./log4j2.properties" --conf spark.executor.extraJavaOptions="$log4j_setting -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+HeapDumpOnOutOfMemoryError -Xloggc:/tmp/memLog.txt -XX:+UseCompressedOops" --conf spark.driver.extraJavaOptions="$log4j_setting" $LOGGING --driver-class-path $ZINGG_JARS $EXECUTABLE $@ --email $EMAIL --license $LICENSE | ||
fi |