-
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.
Merge branch 'main' into FTD_OPTIMIZATION
- Loading branch information
Showing
322 changed files
with
5,833 additions
and
4,325 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "*" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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,43 @@ | ||
name: load-test | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 */3 * *" | ||
|
||
jobs: | ||
load-test: | ||
name: load-test-spark | ||
runs-on: ubuntu-latest | ||
env: | ||
SPARK_MASTER: local[*] | ||
ZINGG_HOME: assembly/target | ||
steps: | ||
- name: checkout repo content | ||
uses: actions/checkout@v3 # checkout the repository content to github runner. | ||
- name: setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.12.7 #install the python needed | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: '11' | ||
distribution: temurin | ||
- name: setup spark | ||
uses: vemonet/setup-spark@v1 | ||
with: | ||
spark-version: '3.5.3' | ||
hadoop-version: '3' | ||
- name: check spark | ||
run: spark-submit --version | ||
- name: mvn clean | ||
run: mvn clean | ||
- name: Build with Maven | ||
run: mvn clean compile package -DskipTests=true | ||
- name: execute py script | ||
run: | | ||
python perf_test/perfTestRunner.py | ||
git config user.name nitish | ||
git config user.email nitish1814@github.com | ||
git add . | ||
git commit -m "report generated" | ||
git push |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.