Return-Path: X-Original-To: apmail-tajo-dev-archive@minotaur.apache.org Delivered-To: apmail-tajo-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 8EE6517BB9 for ; Wed, 22 Apr 2015 04:38:12 +0000 (UTC) Received: (qmail 43048 invoked by uid 500); 22 Apr 2015 04:38:12 -0000 Delivered-To: apmail-tajo-dev-archive@tajo.apache.org Received: (qmail 43006 invoked by uid 500); 22 Apr 2015 04:38:12 -0000 Mailing-List: contact dev-help@tajo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tajo.apache.org Delivered-To: mailing list dev@tajo.apache.org Received: (qmail 42994 invoked by uid 99); 22 Apr 2015 04:38:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Apr 2015 04:38:12 +0000 X-ASF-Spam-Status: No, hits=2.2 required=5.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: message received from 54.191.145.13 which is an MX secondary for dev@tajo.apache.org) Received: from [54.191.145.13] (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Apr 2015 04:38:07 +0000 Received: from mail-ob0-f170.google.com (mail-ob0-f170.google.com [209.85.214.170]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTPS id 8C7A2257F0 for ; Wed, 22 Apr 2015 04:37:47 +0000 (UTC) Received: by obcux3 with SMTP id ux3so56892637obc.2 for ; Tue, 21 Apr 2015 21:37:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :content-type; bh=jReVcNo7vuHXrmNjDJuz7BSR6K4VvyuNHqZH4UJjUEk=; b=ir1jxE4LtiWzj+pEEwj3dNZX4KRgAdCNcqrzM0/sqd2Box3aIKXk9vaVZPExvVTx+S Y+ekSmRubFn5HZ8A2kMnOevk0XC1gTEgm0riDNwNVkxAjqgJr6gmrBMXj12cIKCxAY09 Htbb5aCViK68/d+xHMi4pm5V3sMeDqmQ8Nmq2vmlFCUsM64pG5xaworPGshhYXXQ0S2E z3/+K/uU5yFMAj354TL/JelDeJHxeXT49PX1We2QgUkxOPiC4EztiL7DPN7VdpsjHF+e moqMLMK6DMV0waNHr9Ic7Tu/dcbgQa0mQM4mDwvUIB6LwMeGq7uMHfsS5XLgVEKl2fuW ZKrg== X-Received: by 10.202.221.86 with SMTP id u83mr12211962oig.127.1429677466994; Tue, 21 Apr 2015 21:37:46 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jihoon Son Date: Wed, 22 Apr 2015 04:37:46 +0000 Message-ID: Subject: Re: jdb and tajo To: dev@tajo.apache.org Content-Type: multipart/alternative; boundary=001a113d5650904cc0051448b98e X-Virus-Checked: Checked by ClamAV on apache.org --001a113d5650904cc0051448b98e Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Great. Maybe these slides are helpful to understand query execution flow of Tajo. http://www.slideshare.net/hyunsikchoi/tajo-intro http://www.slideshare.net/hyunsikchoi/bay-area-hug-28141503 On Wed, Apr 22, 2015 at 1:31 PM Atri Sharma wrote: > Thanks a ton :) > > The reason I am trying to breakpoint is because I want to get an idea of > the code flow and how execution passes in general. So was looking for som= e > suitable breakpoints. > > On Wed, Apr 22, 2015 at 9:58 AM, Jihoon Son wrote: > > > It's very easy. You don't need to configure any settings. > > Just download it (https://www.jetbrains.com/idea/download/) and open > your > > tajo project (File -> Open -> choose $TAJO_HOME/pom.xml). > > > > On Wed, Apr 22, 2015 at 1:23 PM Atri Sharma wrote= : > > > > > Thanks. > > > > > > I have never worked with IntelliJ.Can you guide on setting tajo with = it > > > please? > > > > > > On Wed, Apr 22, 2015 at 6:46 AM, Jihoon Son > > wrote: > > > > > > > Hi Atri. > > > > As I know, there's no tutorial for debugging tajo with jdb. > > > > I prefer IDEs, especially Intellij Idea, rather than jdb for debug. > > > > For example, to debug master, I run TajoMaster with the debug mode = of > > > IDE. > > > > > > > > However, debugging running master and worker is not so easy because > > there > > > > are many internal threads and interactions between them. In additio= n, > > you > > > > can easily see TajoServiceException if you pause master for a momen= t. > > So, > > > > the easiest way is writing a test code for the portion where you wa= nt > > to > > > > verify, I think. > > > > > > > > Regards, > > > > Jihoon > > > > 2015=EB=85=84 4=EC=9B=94 21=EC=9D=BC (=ED=99=94) =EC=98=A4=ED=9B=84= 9:40, Atri Sharma =EB=8B=98=EC=9D=B4 =EC=9E=91=EC=84= =B1: > > > > > > > > > Folks, > > > > > > > > > > I am trying to set breakpoints for running Tajo process with jdb. > Is > > > > there > > > > > a tutorial somewhere? > > > > > > > > > > -- > > > > > Regards, > > > > > > > > > > Atri > > > > > *l'apprenant* > > > > > > > > > > > > > > > > > > > > > -- > > > Regards, > > > > > > Atri > > > *l'apprenant* > > > > > > > > > -- > Regards, > > Atri > *l'apprenant* > --001a113d5650904cc0051448b98e--