Return-Path: X-Original-To: apmail-aurora-reviews-archive@minotaur.apache.org Delivered-To: apmail-aurora-reviews-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 73635CA83 for ; Thu, 8 Jan 2015 17:24:11 +0000 (UTC) Received: (qmail 76363 invoked by uid 500); 8 Jan 2015 17:24:12 -0000 Delivered-To: apmail-aurora-reviews-archive@aurora.apache.org Received: (qmail 76323 invoked by uid 500); 8 Jan 2015 17:24:12 -0000 Mailing-List: contact reviews-help@aurora.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: reviews@aurora.incubator.apache.org Delivered-To: mailing list reviews@aurora.incubator.apache.org Received: (qmail 76296 invoked by uid 99); 8 Jan 2015 17:24:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jan 2015 17:24:11 +0000 X-ASF-Spam-Status: No, hits=-1997.8 required=5.0 tests=ALL_TRUSTED,HTML_MESSAGE,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 08 Jan 2015 17:23:48 +0000 Received: (qmail 76147 invoked by uid 99); 8 Jan 2015 17:23:44 -0000 Received: from reviews-vm.apache.org (HELO reviews.apache.org) (140.211.11.40) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jan 2015 17:23:44 +0000 Received: from reviews.apache.org (localhost [127.0.0.1]) by reviews.apache.org (Postfix) with ESMTP id A2F9C1CCC39; Thu, 8 Jan 2015 17:23:42 +0000 (UTC) Content-Type: multipart/alternative; boundary="===============0609603764151953239==" MIME-Version: 1.0 Subject: Re: Review Request 29464: Add option to override local scheduler address published into ZooKeeper From: "Steve Niemitz" To: "Bill Farner" , "Kevin Sweeney" Cc: "Aurora" , "Steve Niemitz" Date: Thu, 08 Jan 2015 17:23:42 -0000 Message-ID: <20150108172342.26560.29652@reviews.apache.org> X-ReviewBoard-URL: https://reviews.apache.org Auto-Submitted: auto-generated Sender: "Steve Niemitz" X-ReviewGroup: Aurora X-ReviewRequest-URL: https://reviews.apache.org/r/29464/ X-Sender: "Steve Niemitz" References: <20150108022054.26559.96889@reviews.apache.org> In-Reply-To: <20150108022054.26559.96889@reviews.apache.org> Reply-To: "Steve Niemitz" X-ReviewRequest-Repository: aurora X-Virus-Checked: Checked by ClamAV on apache.org --===============0609603764151953239== MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit > On Jan. 8, 2015, 2:20 a.m., Kevin Sweeney wrote: > > src/main/java/org/apache/aurora/scheduler/app/AppModule.java, line 96 > > > > > > requireNonNull I didn't add this (I just reordered the parameters), so I'm hesitant to change it. > On Jan. 8, 2015, 2:20 a.m., Kevin Sweeney wrote: > > src/main/java/org/apache/aurora/scheduler/app/LocalServiceRegistryWithOverrides.java, line 83 > > > > > > im not sure why this needs to be synchronized? holding an intrinsic lock while calling out to another class is prone to deadlocks and I don't see any mutable state being protected. Good catch, I think this was an artifact of some previous refactoring. > On Jan. 8, 2015, 2:20 a.m., Kevin Sweeney wrote: > > src/main/python/apache/aurora/executor/thermos_task_runner.py, line 76 > > > > > > Can we drop the default here or make it lazy? Otherwise importing this module has the side-effect of making a syscall. That's how I had this origionally but I changed it based on [feedback above](#review66428). You're going to get a syscall regardless though. > On Jan. 8, 2015, 2:20 a.m., Kevin Sweeney wrote: > > src/main/python/apache/aurora/executor/thermos_task_runner.py, line 101 > > > > > > convention here would seem to be to make hostname default to None and do hostname or socket.gethostname() here. Same as above. I'll change it back... - Steve ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/29464/#review67136 ----------------------------------------------------------- On Jan. 7, 2015, 9:21 p.m., Steve Niemitz wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/29464/ > ----------------------------------------------------------- > > (Updated Jan. 7, 2015, 9:21 p.m.) > > > Review request for Aurora, Kevin Sweeney and Bill Farner. > > > Repository: aurora > > > Description > ------- > > I've added a new flag for the aurora scheduler, -hostname which can override the scheduler server address published into ZK. > > This is useful for cases such as running the scheduler in EC2, where the autodetected local address is actual an interal IP and not the public address of the machine. > > > Diffs > ----- > > api/src/main/thrift/org/apache/thermos/thermos_internal.thrift 2c449a491bc5a8ac858ea6487e4cef0591f36f66 > src/main/java/org/apache/aurora/scheduler/app/AppModule.java 360e161b6c3f6fd412c7e8de7f1b9a3af109593c > src/main/java/org/apache/aurora/scheduler/app/LocalServiceRegistryWithOverrides.java PRE-CREATION > src/main/java/org/apache/aurora/scheduler/app/SchedulerMain.java 72c7545e7f16549f6a9ccb5fb74a06f154a7ea94 > src/main/java/org/apache/aurora/scheduler/http/LeaderRedirect.java cf173850635572c0df38bdd5cb14de8ce2016bf7 > src/main/python/apache/aurora/executor/common/announcer.py 9e5bdc3885e76d8d03aa946caac9fdec7e1e9186 > src/main/python/apache/aurora/executor/thermos_task_runner.py 5e4bd65537d186459003c0b9434f1b769e04f448 > src/main/python/apache/thermos/bin/thermos_runner.py 647de2771f301b17de33d8b45198c211d2e84367 > src/main/python/apache/thermos/core/runner.py 8aac6b50c66080abbb5308b367e9f74c487f42e3 > src/test/java/org/apache/aurora/scheduler/app/LocalServiceRegistryWithOverridesTest.java PRE-CREATION > src/test/java/org/apache/aurora/scheduler/app/SchedulerIT.java 5e54364a49a208bd5f19b9649633dc8feca591e9 > src/test/java/org/apache/aurora/scheduler/http/JettyServerModuleTest.java fbc3da3ab239b67ce3012d5a14fccd3ccb20a241 > src/test/java/org/apache/aurora/scheduler/http/LeaderRedirectTest.java c3bf5ea4cbeaad03e187f84215b86531d55c25b3 > src/test/python/apache/aurora/executor/common/test_announcer.py e329a90b8fba43611f5120e2a5ee82220dbe2a91 > > Diff: https://reviews.apache.org/r/29464/diff/ > > > Testing > ------- > > > Thanks, > > Steve Niemitz > > --===============0609603764151953239==--