Return-Path: X-Original-To: apmail-flink-user-archive@minotaur.apache.org Delivered-To: apmail-flink-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 61F5C1874A for ; Sat, 18 Jul 2015 09:42:25 +0000 (UTC) Received: (qmail 83448 invoked by uid 500); 18 Jul 2015 09:42:25 -0000 Delivered-To: apmail-flink-user-archive@flink.apache.org Received: (qmail 83366 invoked by uid 500); 18 Jul 2015 09:42:25 -0000 Mailing-List: contact user-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@flink.apache.org Delivered-To: mailing list user@flink.apache.org Received: (qmail 83355 invoked by uid 99); 18 Jul 2015 09:42:25 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Jul 2015 09:42:25 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id A1160C0728 for ; Sat, 18 Jul 2015 09:42:24 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 3.981 X-Spam-Level: *** X-Spam-Status: No, score=3.981 tagged_above=-999 required=6.31 tests=[HTML_MESSAGE=3, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id qdFw9b-VhE7R for ; Sat, 18 Jul 2015 09:42:15 +0000 (UTC) Received: from mail-yk0-f179.google.com (mail-yk0-f179.google.com [209.85.160.179]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTPS id D531D20604 for ; Sat, 18 Jul 2015 09:42:14 +0000 (UTC) Received: by ykay190 with SMTP id y190so107187216yka.3 for ; Sat, 18 Jul 2015 02:41:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=ISido2CIOgHeQvDpHMqmWkxw1IVgbVWfiPRvK6qHbC8=; b=O16uimN5hxQV91Djne3Z6MLha6y7oXsJo1SeNpeJWx8gMqsL1D14ARE007AlR13Ft/ gKl/pzYnGvCf+nAMA1YwrkVZQI3kSRFKYfWXQX8TblvTcHZ+eTvIx8JgxHhwTCFPofm9 LlVLPw0NgpRqkmC2aKSFjZgltRZlrqcD2cbMU0gr7fBUy0WZVLXUNVmFldpUNJCHOmBv 9w4tTlfxBm9tfhcbQ992ynT/3nvwgw7Yq0WKe+EZ1zbvKTzweqRz3GAeaW3iHL7bSCSY UAQrU8T0NG33k05eYr4WSZWUQjFOflSVz1YnGt00qCFEiOATdr0GcAPQwLV5qr97VFhh qPyQ== X-Gm-Message-State: ALoCoQlS0Ec571HfdnyN2daVtGNXa1v8g2vVrs26mY9o7PKk9W/gP4AOEqr5dYC1HvoZdQxqT0Nu MIME-Version: 1.0 X-Received: by 10.13.200.67 with SMTP id k64mr19792894ywd.172.1437212482798; Sat, 18 Jul 2015 02:41:22 -0700 (PDT) Received: by 10.129.70.10 with HTTP; Sat, 18 Jul 2015 02:41:22 -0700 (PDT) X-Originating-IP: [91.252.140.111] Received: by 10.129.70.10 with HTTP; Sat, 18 Jul 2015 02:41:22 -0700 (PDT) In-Reply-To: References: Date: Sat, 18 Jul 2015 11:41:22 +0200 Message-ID: Subject: Re: Flink deadLetters From: Flavio Pompermaier To: user Content-Type: multipart/alternative; boundary=001a114e4e8e813aa6051b231bc0 --001a114e4e8e813aa6051b231bc0 Content-Type: text/plain; charset=UTF-8 The job is quite simple..it just reads 10 parquet dirs, extract some infos out of the thrift objects and generates Tuple3,make a project() and a distinct() to call an external service only for some of the extracted ids (the external service translates the local id into a global one). Then there are two cogroup() to substitute the obtained global ids into the original tuple5. Then the job outputs the mapping table into a csv and the translated tuple5 into a file. The strange thing is that the job finish in about 1hour with the default memory settings (in Eclipse) while if I set -Xmx12gb it hangs). I have 16GB of ram (maybe not all 12 available but I have 15 GB of swap on a SSD disk). Any idea of what can cause this strange behaviour? On 17 Jul 2015 19:04, "Till Rohrmann" wrote: > That is usually nothing to worry about. This just means that the message > was sent without specifying a sender. What Akka then does is to use the > `/deadLetters` actor as the sender. > > What kind of job is it? > > Cheers, > Till > > On Fri, Jul 17, 2015 at 6:30 PM, Flavio Pompermaier > wrote: > >> Hi to all, >> >> my job seems to be stucked and there's nothing logged also in debug mode. >> The only strange thing is a >> >> Received message SendHeartbeat at akka://flink/user/taskmanager_1 from >> Actor[akka://flink/deadLetters]. >> >> Could it be a symptom of a problem? >> >> Best, >> Flavio >> > > --001a114e4e8e813aa6051b231bc0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

The job is quite simple..it just reads 10 parquet dirs, extr= act some infos out of the thrift objects and generates Tuple3,make a projec= t() and a distinct() to call an external service only for some of the extra= cted ids (the external service translates the local id into a global one).<= br> Then there are two cogroup() to substitute the obtained global ids into the= original tuple5.
Then the job outputs the mapping table into a csv and the translated tuple5= into a file.
The strange thing is that the job finish in about 1hour with the default me= mory settings (in Eclipse) while if I set -Xmx12gb it hangs).
I have 16GB of ram (maybe not all 12 available but I have 15 GB of swap on = a SSD disk).

Any idea of what can cause this strange behaviour?

On 17 Jul 2015 19:04, "Till Rohrmann" = <trohrmann@apache.org> wr= ote:
That is usually nothing to worry about. This just means that the message = was sent without specifying a sender. What Akka then does is to use the `/d= eadLetters` actor as the sender.

What kind of job is it?=

Cheers,
Till

On Fri, Jul 17, 2015 at 6:3= 0 PM, Flavio Pompermaier <pompermaier@okkam.it> wrote:
Hi to all,

my job seems to be stucked and there's nothing logged also in debu= g mode.
The only strange thing is a=C2=A0=C2=A0

Received message SendHeartbeat at akka://flink/user/taskmanager_1 f= rom Actor[akka://flink/deadLetters].

Could it be a= symptom of a problem?

Best,
Flavio

--001a114e4e8e813aa6051b231bc0--