From commits-return-30043-archive-asf-public=cust-asf.ponee.io@geode.apache.org Thu Dec 13 21:10:10 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 6F265180609 for ; Thu, 13 Dec 2018 21:10:10 +0100 (CET) Received: (qmail 86703 invoked by uid 500); 13 Dec 2018 20:10:09 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 86691 invoked by uid 99); 13 Dec 2018 20:10:09 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Dec 2018 20:10:09 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E09F382F11; Thu, 13 Dec 2018 20:10:08 +0000 (UTC) Date: Thu, 13 Dec 2018 20:10:08 +0000 To: "commits@geode.apache.org" Subject: [geode-benchmarks] branch gcpscaletest updated: Fixing at 4096 threads MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154473180887.1305.5307080418860343118@gitbox.apache.org> From: wirebaron@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode-benchmarks X-Git-Refname: refs/heads/gcpscaletest X-Git-Reftype: branch X-Git-Oldrev: e6b8d5a72d8905f4fe0d8ea38ae75134c8314ab6 X-Git-Newrev: 772fa45bdbd39225095db32e0bdcafe52a680d7c X-Git-Rev: 772fa45bdbd39225095db32e0bdcafe52a680d7c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. wirebaron pushed a commit to branch gcpscaletest in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git The following commit(s) were added to refs/heads/gcpscaletest by this push: new 772fa45 Fixing at 4096 threads 772fa45 is described below commit 772fa45bdbd39225095db32e0bdcafe52a680d7c Author: Brian Rowe AuthorDate: Thu Dec 13 12:09:57 2018 -0800 Fixing at 4096 threads --- harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java b/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java index 7ffb8f7..cc185a7 100644 --- a/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java +++ b/harness/src/main/java/org/apache/geode/perftest/WorkloadConfig.java @@ -32,7 +32,7 @@ import org.apache.geode.perftest.yardstick.YardstickTask; public class WorkloadConfig implements Serializable { long durationSeconds = 1; long warmupSeconds = 0; - int threads = 1024; + int threads = 4096; public WorkloadConfig() {}