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 36B5E200B6D for ; Tue, 23 Aug 2016 11:20:35 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3562C160AAD; Tue, 23 Aug 2016 09:20:35 +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 7B4F2160AA5 for ; Tue, 23 Aug 2016 11:20:34 +0200 (CEST) Received: (qmail 22419 invoked by uid 500); 23 Aug 2016 09:20:33 -0000 Mailing-List: contact user-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@ignite.apache.org Delivered-To: mailing list user@ignite.apache.org Received: (qmail 22409 invoked by uid 99); 23 Aug 2016 09:20:33 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Aug 2016 09:20:33 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 40FD0C1634 for ; Tue, 23 Aug 2016 09:20:33 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.169 X-Spam-Level: * X-Spam-Status: No, score=1.169 tagged_above=-999 required=6.31 tests=[FREEMAIL_ENVFROM_END_DIGIT=0.25, RCVD_IN_DNSWL_NONE=-0.0001, SPF_FAIL=0.919] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id Dvb1yS3a5-mY for ; Tue, 23 Aug 2016 09:20:31 +0000 (UTC) Received: from mbob.nabble.com (mbob.nabble.com [162.253.133.15]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 3D6135F642 for ; Tue, 23 Aug 2016 09:20:31 +0000 (UTC) Received: from malf.nabble.com (unknown [162.253.133.59]) by mbob.nabble.com (Postfix) with ESMTP id 989A22F6C380 for ; Tue, 23 Aug 2016 02:20:30 -0700 (PDT) Date: Tue, 23 Aug 2016 02:20:31 -0700 (PDT) From: percent620 To: user@ignite.apache.org Message-ID: <1471944031438-7238.post@n6.nabble.com> In-Reply-To: <1471943601984-7236.post@n6.nabble.com> References: <1471869956690-7205.post@n6.nabble.com> <1471943601984-7236.post@n6.nabble.com> Subject: Re: Yarn deployment for static TcpDiscoverySpi issues:Urgent In Production MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit archived-at: Tue, 23 Aug 2016 09:20:35 -0000 This is my java code as below 1) val igniteContext = new IgniteContext[Integer, Integer](sc, "/u01/xxxx/apache-ignite-fabric-1.6.0-bin/config/default-config.xml") println("define igniteContext end===") val sharedRDD = igniteContext.fromCache("sharedBaselineCacheRDD") //val sharedRDD = igniteContext.fromCache(new CacheConfiguration[Integer, Integer]().setCacheMode(CacheMode.REPLICATED)) val initalRDD = sc.parallelize(1 to 100000,10).map(i => (new Integer(i), new Integer(i))) println("initalRDD.couner=/. " + initalRDD.count() +"\tpartition=> " + initalRDD.partitions.size) sharedRDD.savePairs(initalRDD, true) println("=====>totalcounter" + sharedRDD.count + "\t paris => " + sharedRDD.partitions.size) println("=====>" + sharedRDD.filter(_._2 > 50000).count) 2) my ignite default.xml configuration is static IP NOT mulicast -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Yarn-deployment-for-static-TcpDiscoverySpi-issues-Urgent-In-Production-tp7205p7238.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.