This is an automated email from the ASF dual-hosted git repository.
smgoller pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.
from 54863e3 GEODE-6146: Cleaned Portfolio benchmark object. (#26)
add c44cbee Add beginnings of java-based AWS infrastructure management.
add 066d753 Merge branch 'develop' of
https://github.com/apache/geode-benchmarks into aws
add 0fd080c Checkpoint.
add 7d697c6 Work in progress. Instance creation and deletion.
add 0a4b4b6 Wait for instances to be in running state.
add b164ff0 Merge branch 'develop' of
https://github.com/apache/geode-benchmarks into aws
add 9e71988 Minor syntax tweaks.
add 145bf50 Cleaning up some unnecessary exception handling
add 63ccb9a Installing the ssh key for passwordless ssh
add dc595e4 Adding command line scripts to run benchmarks in AWS
add f38c20d Reorganizing infrastructure scripts and code
add 885b5ab Removing uncessary swap file
new fdb956a Merge pull request #27 from smgoller/aws
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README.md | 5 +
build.gradle | 1 +
gradle/dependency-versions.properties | 1 +
gradle/rat.gradle | 1 +
infrastructure/build.gradle | 54 +++++
infrastructure/scripts/aws/README.md | 44 ++++
.../aws/destroy_cluster.sh} | 10 +-
.../scripts/aws/image/files/defaults.cfg | 4 +
infrastructure/scripts/aws/image/packer.json | 54 +++++
.../aws/image/scripts/add-user.sh} | 17 +-
.../aws/launch_cluster.sh} | 13 +-
.../aws}/run_against_baseline.sh | 0
.../{google_cloud => scripts/aws}/run_tests.sh | 17 +-
.../{ => scripts}/google_cloud/README.md | 0
.../{ => scripts}/google_cloud/build_image.sh | 0
.../{ => scripts}/google_cloud/destroy_cluster.sh | 0
.../{ => scripts}/google_cloud/launch_cluster.sh | 0
.../google_cloud/run_against_baseline.sh | 0
.../{ => scripts}/google_cloud/run_tests.sh | 0
.../geode/infrastructure/BenchmarkMetadata.java | 31 +--
.../infrastructure/aws/AwsBenchmarkMetadata.java | 65 +++++
.../geode/infrastructure/aws/DestroyCluster.java | 157 +++++++++++++
.../geode/infrastructure/aws/KeyInstaller.java | 87 +++++++
.../geode/infrastructure/aws/LaunchCluster.java | 261 +++++++++++++++++++++
settings.gradle | 2 +
25 files changed, 776 insertions(+), 48 deletions(-)
create mode 100644 infrastructure/build.gradle
create mode 100644 infrastructure/scripts/aws/README.md
copy infrastructure/{google_cloud/run_against_baseline.sh =>
scripts/aws/destroy_cluster.sh} (74%)
create mode 100644 infrastructure/scripts/aws/image/files/defaults.cfg
create mode 100644 infrastructure/scripts/aws/image/packer.json
copy infrastructure/{google_cloud/run_against_baseline.sh =>
scripts/aws/image/scripts/add-user.sh} (73%)
mode change 100755 => 100644
copy infrastructure/{google_cloud/run_against_baseline.sh =>
scripts/aws/launch_cluster.sh} (74%)
copy infrastructure/{google_cloud => scripts/aws}/run_against_baseline.sh
(100%)
copy infrastructure/{google_cloud => scripts/aws}/run_tests.sh (63%)
rename infrastructure/{ => scripts}/google_cloud/README.md (100%)
rename infrastructure/{ => scripts}/google_cloud/build_image.sh (100%)
rename infrastructure/{ => scripts}/google_cloud/destroy_cluster.sh (100%)
rename infrastructure/{ => scripts}/google_cloud/launch_cluster.sh (100%)
rename infrastructure/{ => scripts}/google_cloud/run_against_baseline.sh (100%)
rename infrastructure/{ => scripts}/google_cloud/run_tests.sh (100%)
copy harness/src/main/java/org/apache/geode/perftest/jdk/SystemInterface.java
=>
infrastructure/src/main/java/org/apache/geode/infrastructure/BenchmarkMetadata.java
(54%)
create mode 100644
infrastructure/src/main/java/org/apache/geode/infrastructure/aws/AwsBenchmarkMetadata.java
create mode 100644
infrastructure/src/main/java/org/apache/geode/infrastructure/aws/DestroyCluster.java
create mode 100644
infrastructure/src/main/java/org/apache/geode/infrastructure/aws/KeyInstaller.java
create mode 100644
infrastructure/src/main/java/org/apache/geode/infrastructure/aws/LaunchCluster.java