You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sm...@apache.org on 2018/12/14 19:42:17 UTC

[geode-benchmarks] branch develop updated (54863e3 -> fdb956a)

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


[geode-benchmarks] 01/01: Merge pull request #27 from smgoller/aws

Posted by sm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

smgoller pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git

commit fdb956a40c5208f44258859011b3a97a4ff42f23
Merge: 54863e3 885b5ab
Author: Sean Goller <se...@goller.net>
AuthorDate: Fri Dec 14 11:42:13 2018 -0800

    Merge pull request #27 from smgoller/aws
    
    Add support for running benchmarks in AWS

 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    |  41 ++++
 .../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, 804 insertions(+), 30 deletions(-)