Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7EA46200D36 for ; Mon, 6 Nov 2017 16:04:24 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 7CF161609E0; Mon, 6 Nov 2017 15:04:24 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C2BB7160C02 for ; Mon, 6 Nov 2017 16:04:23 +0100 (CET) Received: (qmail 68450 invoked by uid 500); 6 Nov 2017 15:04:23 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 68436 invoked by uid 99); 6 Nov 2017 15:04:22 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Nov 2017 15:04:22 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 5A76F1B7525 for ; Mon, 6 Nov 2017 15:04:22 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.021 X-Spam-Level: X-Spam-Status: No, score=-4.021 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id ShrC2270g07V for ; Mon, 6 Nov 2017 15:04:20 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id CB1F160F0A for ; Mon, 6 Nov 2017 15:04:19 +0000 (UTC) Received: (qmail 67523 invoked by uid 99); 6 Nov 2017 15:04:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Nov 2017 15:04:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 23E14DF97F; Mon, 6 Nov 2017 15:04:18 +0000 (UTC) From: tillrohrmann To: issues@flink.incubator.apache.org Reply-To: issues@flink.incubator.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #4911: [FLINK-7878] [api] make resource type extendible i... Content-Type: text/plain Message-Id: <20171106150418.23E14DF97F@git1-us-west.apache.org> Date: Mon, 6 Nov 2017 15:04:18 +0000 (UTC) archived-at: Mon, 06 Nov 2017 15:04:24 -0000 Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/4911#discussion_r149098202 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/operators/ResourceSpec.java --- @@ -183,17 +238,81 @@ public int hashCode() { result = 31 * result + directMemoryInMB; result = 31 * result + nativeMemoryInMB; result = 31 * result + stateSizeInMB; + result = 31 * result + extendedResources.hashCode(); return result; } @Override public String toString() { + String extend = ""; + for (Resource resource : extendedResources.values()) { + extend += ", " + resource.name + "=" + resource.value; + } return "ResourceSpec{" + "cpuCores=" + cpuCores + ", heapMemoryInMB=" + heapMemoryInMB + ", directMemoryInMB=" + directMemoryInMB + ", nativeMemoryInMB=" + nativeMemoryInMB + - ", stateSizeInMB=" + stateSizeInMB + + ", stateSizeInMB=" + stateSizeInMB + extend + '}'; } + + private void addResource(String name, double value, ResourceAggregateType type) { + extendedResources.put(name, new Resource(name, type, value)); + } + + public static class Resource { + private String name; + private ResourceAggregateType type; + private Double value; + + public Resource(String name, double value) { + this(name, ResourceAggregateType.AGGREGATE_TYPE_SUM, value); --- End diff -- `ResourceAggregateType` should be the last argument since `name` and `value` are properly passed to this method. ---