You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/09/11 17:15:56 UTC

[geode] branch concourse-staging updated (1172874 -> aff9c7f)

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a change to branch concourse-staging
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard 1172874  Reducing the max_in_flight to 3 to run two jobs at once
 discard 13abf1e  Parameterizing the number of CPUs for each job
 discard 0ab0867  Adding an option to limit the number of CPUs for docker
 discard 063a05d  Limit max number of simultaneous runs to 5.
     add ba05178  GEODE-5574: unit test coverage for RegionMapDestroy (#2431)
     add 58eccef  GEODE-5704: use untilAsserted to avoid early failure (#2438)
     add 33ff995  GEODE-5527: get an available port at server start (#2442)
     add e95a673  GEODE-5212: use Paths instead of hardcoded file separator (#2444)
     add 4491032  GEODE-5673: Adjust for new Awaitility thread count (#2445)
     add 58c5dc7  GEODE-5705: Improve basicReadObject to use switch statement rather than if statements.
     add aaac1e5  GEODE-5565: Release off heap memory if unable to set value  (#2305)
     add 052bef4  GEODE-5668: Switch Windows build jobs to 'heavy-lifter' model (#2411)
     add 2595760  GEODE-5668: No Windows jobs in PR pipeline
     add e36a9c3  GEODE-5668: PublishArtifacts does not depend on Windows jobs
     add 2e25206  GEODE-5668: Groups should not reference Windows jobs in PR pipeline
     add 8ce6ba6  GEODE-5668: UpdatePassingRef does not depend on Windows jobs
     add c0056a3  GEODE-5668: Remove debug flag from instance start script
     add 2cd1d32  GEODE-5709: Add CI job to build Windows images (#2443)
     add 24f5e99  GEODE-5709: Add missing build image resources
     add e586c84  GEODE-5628: Getting two random ports at once and fixing formatting (#2441)
     add 808c049  GEODE-5668: increase rsync up & down timeout
     add 7f60549  GEODE-5697: Handle CacheClosedException when performing beforeCompletion and afterCompletion. (#2448)
     add b9587c2  GEODE-5716: add debug capability to the processes started using GfshRule (#2446)
     add 8661b1e  GEODE-5709: Use external IP for winrm packer communication
     new aff9c7f  Limit max number of simultaneous runs to 5.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1172874)
            \
             N -- N -- N   refs/heads/concourse-staging (aff9c7f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 .../build_image.sh                                 |   12 +-
 .../windows-packer.json                            |   59 +
 ci/pipelines/geode-build/jinja.template.yml        |   85 +-
 ci/pipelines/images/images.yml                     |   31 +
 ci/pipelines/pull-request/jinja.template.yml       |    4 +-
 ci/pipelines/shared/jinja.variables.yml            |  106 +-
 ci/scripts/execute_tests.sh                        |    6 +-
 ci/scripts/rsync_code_down.sh                      |    4 +-
 ci/scripts/start_instance.sh                       |   33 +-
 .../cli/commands/StartLocatorCommandDUnitTest.java |    7 +-
 .../cli/commands/StartServerCommandDUnitTest.java  |   10 +-
 .../PersistentRegionTransactionDUnitTest.java      |    1 +
 ...catorLauncherJmxManagerLocalRegressionTest.java |    8 +-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |    1 +
 .../main/java/org/apache/geode/DataSerializer.java |    3 +-
 .../geode/internal/InternalDataSerializer.java     | 1604 ++++++++---------
 .../geode/internal/cache/AfterCompletion.java      |   66 +-
 .../geode/internal/cache/BeforeCompletion.java     |    9 +-
 .../geode/internal/cache/EntryEventImpl.java       |    6 +-
 .../internal/cache/SingleThreadJTAExecutor.java    |   21 +-
 .../org/apache/geode/internal/cache/TXState.java   |   65 +-
 .../cache/entries/AbstractDiskRegionEntry.java     |    8 +-
 .../geode/internal/cache/entries/DiskEntry.java    |  176 +-
 .../geode/internal/cache/map/RegionMapDestroy.java |    8 +-
 .../apache/geode/internal/net/SocketCreator.java   |    3 +-
 .../internal/offheap/OffHeapRegionEntryHelper.java |    2 +-
 .../apache/geode/internal/util/DscodeHelper.java}  |   28 +-
 .../java/org/apache/geode/internal/DSCODETest.java |   18 +
 .../geode/internal/cache/AfterCompletionTest.java  |   63 +-
 .../geode/internal/cache/BeforeCompletionTest.java |   24 +
 .../cache/SingleThreadJTAExecutorTest.java         |   17 +
 .../apache/geode/internal/cache/TXStateTest.java   |   40 +-
 .../cache/entries/DiskEntryHelperTest.java         |  106 ++
 .../internal/cache/map/RegionMapDestroyTest.java   | 1869 +++++++++++++++-----
 .../geode/internal/net/SocketCreatorJUnitTest.java |   34 +-
 .../geode/cache30/MultiVMRegionTestCase.java       |   68 +-
 .../test/junit/rules/gfsh/DebuggableCommand.java   |   25 +-
 .../geode/test/junit/rules/gfsh/GfshRule.java      |   36 +-
 .../geode/test/junit/rules/gfsh/GfshScript.java    |   21 +-
 ...gradeEventProcessingMixedSiteOneOldSiteTwo.java |    7 +-
 gradle.properties                                  |    1 +
 gradle/docker.gradle                               |   14 +-
 42 files changed, 2951 insertions(+), 1758 deletions(-)
 copy ci/images/{google-geode-builder => google-windows-geode-builder}/build_image.sh (84%)
 create mode 100644 ci/images/google-windows-geode-builder/windows-packer.json
 copy geode-core/src/{distributedTest/java/org/apache/geode/internal/process/io/IntegerFileReader.java => main/java/org/apache/geode/internal/util/DscodeHelper.java} (59%)
 copy geode-core/src/main/java/org/apache/geode/cache/query/internal/parse/ASTTrace.java => geode-junit/src/main/java/org/apache/geode/test/junit/rules/gfsh/DebuggableCommand.java (69%)


[geode] 01/01: Limit max number of simultaneous runs to 5.

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

upthewaterspout pushed a commit to branch concourse-staging
in repository https://gitbox.apache.org/repos/asf/geode.git

commit aff9c7ffdc6584f191c1cc1d14a8a99aac6b1d6d
Author: Mark Hanson <mh...@pivotal.io>
AuthorDate: Fri Jul 27 11:29:38 2018 -0700

    Limit max number of simultaneous runs to 5.
---
 ci/pipelines/geode-build/jinja.template.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/pipelines/geode-build/jinja.template.yml b/ci/pipelines/geode-build/jinja.template.yml
index a6b32ab..e7b7587 100644
--- a/ci/pipelines/geode-build/jinja.template.yml
+++ b/ci/pipelines/geode-build/jinja.template.yml
@@ -300,6 +300,7 @@ jobs:
 {% for test in tests if not test.name=="StressNew" %}
 - name: {{test.name}}Test
   public: true
+  max_in_flight: 5
   plan:
   - do:
     {{ plan_resource_gets() |indent(4) }}