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 26E41200B98 for ; Mon, 3 Oct 2016 15:45:31 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 258A5160ADC; Mon, 3 Oct 2016 13:45:31 +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 641F6160ACC for ; Mon, 3 Oct 2016 15:45:30 +0200 (CEST) Received: (qmail 47048 invoked by uid 500); 3 Oct 2016 13:45:29 -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 47038 invoked by uid 99); 3 Oct 2016 13:45:29 -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; Mon, 03 Oct 2016 13:45:29 +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 BBA15C8784 for ; Mon, 3 Oct 2016 13:45:28 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.652 X-Spam-Level: X-Spam-Status: No, score=0.652 tagged_above=-999 required=6.31 tests=[RCVD_IN_DNSWL_NONE=-0.0001, SPF_NEUTRAL=0.652] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id S_x1oh2uBVRy for ; Mon, 3 Oct 2016 13:45:24 +0000 (UTC) Received: from mbob.nabble.com (mbob.nabble.com [162.253.133.15]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 36DA25FBB4 for ; Mon, 3 Oct 2016 13:45:24 +0000 (UTC) Received: from static.162.255.23.37.macminivault.com (unknown [162.255.23.37]) by mbob.nabble.com (Postfix) with ESMTP id 6290132B47A2 for ; Mon, 3 Oct 2016 06:40:40 -0700 (PDT) Date: Mon, 3 Oct 2016 06:45:23 -0700 (MST) From: "dmitry.parkhonin" To: user@ignite.apache.org Message-ID: <1475502323188-8052.post@n6.nabble.com> In-Reply-To: References: <1475499688324-8050.post@n6.nabble.com> Subject: Re: Unexpected flag value MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit archived-at: Mon, 03 Oct 2016 13:45:31 -0000 It is not a response, it is a question. In addition to my original question: Just before the error there are the following lines in the log: 2016-10-03 13:28:08,788 DEBUG - Received peer class/resource loading request [node=7c7ae245-d3f2-40a5-a5fb-47fb18f97501, req=GridDeploymentRequest [rsrcName=ru/depsy/TaskOutput.class, ldrId=6d5e38a8751-c03371e4-49be-4b34-947d-20022b45dee7, isUndeploy=false, nodeIds=null]] [org.apache.ignite.internal.managers.deployment.GridDeploymentCommunication] [p2p-#147%pricingGridServer%] {} 2016-10-03 13:28:08,788 DEBUG - Sent peer class loading response [node=7c7ae245-d3f2-40a5-a5fb-47fb18f97501, res=GridDeploymentResponse [success=true, errMsg=null, byteSrc=GridByteArrayList [size=1198]]] [org.apache.ignite.internal.managers.deployment.GridDeploymentCommunication] [p2p-#147%pricingGridServer%] {} 2016-10-03 13:28:08,819 DEBUG - Send recovery acknowledgement [rmtNode=7c7ae245-d3f2-40a5-a5fb-47fb18f97501, rcvCnt=80] [org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi] [grid-nio-worker-0-#105%pricingGridServer%] {} 2016-10-03 13:28:08,819 DEBUG - Received grid job response message [msg=GridJobExecuteResponse [nodeId=7c7ae245-d3f2-40a5-a5fb-47fb18f97501, sesId=0e5e38a8751-c03371e4-49be-4b34-947d-20022b45dee7, jobId=1e5e38a8751-c03371e4-49be-4b34-947d-20022b45dee7, gridEx=null, isCancelled=false], nodeId=7c7ae245-d3f2-40a5-a5fb-47fb18f97501] [org.apache.ignite.internal.processors.task.GridTaskProcessor] [sys-#40%pricingGridServer%] {} 2016-10-03 13:28:08,835 ERROR - Failed to obtain remote job result policy for result from ComputeTask.result(..) method ... It seems to me that the error appears just after the TaskOuput class is loaded by remote classloader. The TaskOutput class: public class TaskOutput { private final String taskId; private final Throwable exception; private final T output; public TaskOutput(String taskId, T output, Throwable exception) { this.taskId = taskId; this.output = output; this.exception = exception; } public String getTaskId() { return taskId; } public T getOutput() { return output; } public Throwable getException() { return exception; } } May the output field be the reason of the exception? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Unexpected-flag-value-tp8050p8052.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.