Return-Path: X-Original-To: apmail-ignite-dev-archive@minotaur.apache.org Delivered-To: apmail-ignite-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F18CA176A8 for ; Sat, 26 Sep 2015 06:29:34 +0000 (UTC) Received: (qmail 84039 invoked by uid 500); 26 Sep 2015 06:29:34 -0000 Delivered-To: apmail-ignite-dev-archive@ignite.apache.org Received: (qmail 83997 invoked by uid 500); 26 Sep 2015 06:29:34 -0000 Mailing-List: contact dev-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list dev@ignite.apache.org Received: (qmail 83985 invoked by uid 99); 26 Sep 2015 06:29:34 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 26 Sep 2015 06:29:34 +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 231DCC429D for ; Sat, 26 Sep 2015 06:29:34 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 4.15 X-Spam-Level: **** X-Spam-Status: No, score=4.15 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_REPLY=1, HTML_MESSAGE=3, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=disabled Authentication-Results: spamd1-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id aA6hkpASOWnO for ; Sat, 26 Sep 2015 06:29:24 +0000 (UTC) Received: from mail-ob0-f173.google.com (mail-ob0-f173.google.com [209.85.214.173]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTPS id 1C98324B3C for ; Sat, 26 Sep 2015 06:29:23 +0000 (UTC) Received: by obbda8 with SMTP id da8so96966649obb.1 for ; Fri, 25 Sep 2015 23:29:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=0S0UIvrh8SvZglqFPaEX66EiJDnUQjwZBpiJTQRaBNM=; b=OF1asZnTmYI+tbpKZlWUbSwWkdv3QQ4Zb7ekvyfDJmz6SLZ96+48IlPFvK871w+Txn NoK5hoBAgisw74n72ALIGPEknxJB3FlDxa7pLLS0GbhtfXJFMUEWgplZQ/f/OfpbNG1J w3jxHYm8SIroq/vGlOaln0zSY5lC3+HjsjYWyGZO5LPzW1oitmoKX7UxprZ6BnYeiHA0 E26sbU63twrv5N43V6JYYpt88u1UYZqMLXXyiZhfn5RkRE2zWFDoeVcb9S7DyLIvXSN3 ZEXlC024G8bKGImIwXRJY3My9pGvosElCgkG94MWBHt56Ir7EiwJZ2KhRP1nP6e30Qsd lwbA== MIME-Version: 1.0 X-Received: by 10.182.105.33 with SMTP id gj1mr4916644obb.77.1443248961829; Fri, 25 Sep 2015 23:29:21 -0700 (PDT) Received: by 10.202.63.11 with HTTP; Fri, 25 Sep 2015 23:29:21 -0700 (PDT) In-Reply-To: References: <42359F2E-F406-4951-8995-380E479C9B68@gmail.com> Date: Sat, 26 Sep 2015 11:59:21 +0530 Message-ID: Subject: Re: After setting streamer and ignite,getting NULL From: chandresh pancholi To: dev@ignite.apache.org Content-Type: multipart/alternative; boundary=e89a8ff2546eb140f20520a09584 --e89a8ff2546eb140f20520a09584 Content-Type: text/plain; charset=UTF-8 Gian, I have followed instructions given by you. I instantiate IgniteDateStreamer and ignite in prepare() method of bolt. but getting "*Cache doesn't exist*". Code snippet from stormStreamer class in prepare() method StormStreamer stormStreamer = null; Ignite ignite = Ignition.start(); System.out.println(" ignite ====== "+ignite.toString()); try(IgniteDataStreamer stmr = ignite.dataStreamer("cache-0")) { stormStreamer = new StormStreamer<>(); IgniteCache cache = ignite.cache("cache-0"); stmr.allowOverwrite(true); /* Set ignite instance */ stormStreamer.setIgnite(ignite); /* Set streamer instance */ stormStreamer.setStreamer(stmr); /* set thread count */ setThreads(5); } On Thu, Sep 24, 2015 at 4:19 PM, Anton Vinogradov wrote: > Chandresh, > As far as understand IBolt implementation should setup all external > connections at .prepare() method. > So, better way is to get existing Ignite instance or create new at > .prepare() > method. > > > On Thu, Sep 24, 2015 at 10:55 AM, Gianfranco Murador < > murador.gianfranco@gmail.com> wrote: > > > Chandresh, > > I will launch the unit test later this week , if the problem persists. I > > think that you should instantiate Ignite through the start() method of > > Ignition class > > and retrieve the Ignite cache specifying a name for the default cache. > You > > should provide a name also for data streamer, not passing null. > > Could you do this and run again the unit test ? > > Thank you, > > Regards, > > Gianfranco > > > > > > 2015-09-24 5:40 GMT+02:00 chandresh pancholi < > > chandreshpancholi007@gmail.com > > >: > > > > > Anton, > > > > > > Clone this repo https://github.com/chandresh-pancholi/ignite and run > > this > > > class > > > > > > > > > https://github.com/chandresh-pancholi/ignite/blob/master/modules/storm/src/test/java/org/apache/ignite/stream/storm/IgniteStormStreamerSelfTestSuite.java > > > > > > You will get the Error saying "Oouch,Argument is Null" for > getStreamer(). > > > > > > On Wed, Sep 23, 2015 at 9:46 PM, Anton Vinogradov < > > > avinogradov@gridgain.com> > > > wrote: > > > > > > > Chandresh, > > > > I'm trying to analize problem. > > > > Could you please provide more details and explain step-by-step how > can > > I > > > > reproduce problem? > > > > > > > > On Tue, Sep 22, 2015 at 11:06 PM, chandresh pancholi < > > > > chandreshpancholi007@gmail.com> wrote: > > > > > > > > > Not yet. > > > > > Still doing brainstorming why StormStreamer object is getting NULLL > > > > > in-spite setting up ignite and streamer instances. > > > > > > > > > > On Tue, Sep 22, 2015 at 7:22 PM, Vishal Garg > > > wrote: > > > > > > > > > > > Did you figure it out? Something related to your storm > integration? > > > > > > Vishal > > > > > > > > > > > > Sent from my iPhone > > > > > > > > > > > > > On Sep 22, 2015, at 4:50 AM, chandresh pancholi < > > > > > > chandreshpancholi007@gmail.com> wrote: > > > > > > > > > > > > > > Problem here is with Storm. Its making streamer object null > once > > it > > > > > goes > > > > > > > into submit topology. > > > > > > > > > > > > > > On Mon, Sep 21, 2015 at 7:13 PM, Lalit Kumar Jha < > > > > lalitj.dev@gmail.com > > > > > > > > > > > > > wrote: > > > > > > > > > > > > > >> Hi Chandresh, > > > > > > >> > > > > > > >> See test suite class here, its based on annotations > > > > > > >> > > > > > > >> > > > > > > > > > > > > > > > > > > > > > https://github.com/sylentprayer/ignite/blob/ignite-530/modules/twitter/src/test/java/org/apache/ignite/stream/twitter/IgniteTwitterStreamerTestSuite.java > > > > > > >> > > > > > > >> No code required in class body. > > > > > > >> > > > > > > >> On Mon, Sep 21, 2015 at 6:24 PM, chandresh pancholi < > > > > > > >> chandreshpancholi007@gmail.com> wrote: > > > > > > >> > > > > > > >>> Hi Gian/Vishal/Lalit, > > > > > > >>> > > > > > > >>> You guys have worked on Streamer integration with Ignite. I > am > > > > > working > > > > > > on > > > > > > >>> Storm-ignite integration. > > > > > > >>> > > > > > > >>> I am setting up setStreamer() and setIgnite() in Test class > and > > > > > sending > > > > > > >>> this object to setBolt() method. > > > > > > >>> > > > > > > >>> When i try to read via gettreamer() and getIgnite() i am > > getting > > > > > NULL. > > > > > > I > > > > > > >> am > > > > > > >>> trying to find out why is it happening but No Luck. > > > > > > >>> > > > > > > >>> If any one of you find some time and look into the code and > > help > > > me > > > > > to > > > > > > >>> resolve this. It would be great. > > > > > > >>> > > > > > > >>> Git : https://github.com/chandresh-pancholi/ignite > > > > > > >>> Module : storm > > > > > > >>> > > > > > > >>> -- > > > > > > >>> Chandresh Pancholi > > > > > > >>> Senior Software Engineer > > > > > > >>> Flipkart.com > > > > > > >>> Email-id:chandresh.pancholi@flipkart.com > > > > > > >>> Contact:08951803660 > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > Chandresh Pancholi > > > > > > > Senior Software Engineer > > > > > > > Flipkart.com > > > > > > > Email-id:chandresh.pancholi@flipkart.com > > > > > > > Contact:08951803660 > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Chandresh Pancholi > > > > > Senior Software Engineer > > > > > Flipkart.com > > > > > Email-id:chandresh.pancholi@flipkart.com > > > > > Contact:08951803660 > > > > > > > > > > > > > > > > > > > > > -- > > > Chandresh Pancholi > > > Senior Software Engineer > > > Flipkart.com > > > Email-id:chandresh.pancholi@flipkart.com > > > Contact:08951803660 > > > > > > -- Chandresh Pancholi Senior Software Engineer Flipkart.com Email-id:chandresh.pancholi@flipkart.com Contact:08951803660 --e89a8ff2546eb140f20520a09584--