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 61430200C1E for ; Fri, 17 Feb 2017 20:29:47 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5FCDB160B6D; Fri, 17 Feb 2017 19:29:47 +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 84645160B57 for ; Fri, 17 Feb 2017 20:29:46 +0100 (CET) Received: (qmail 84718 invoked by uid 500); 17 Feb 2017 19:29:45 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 84709 invoked by uid 99); 17 Feb 2017 19:29:45 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Feb 2017 19:29:45 +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 5468AC023B for ; Fri, 17 Feb 2017 19:29:45 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id BcWVpoyL1Icm for ; Fri, 17 Feb 2017 19:29:44 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id C75345FC6D for ; Fri, 17 Feb 2017 19:29:43 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 3FDB2E0811 for ; Fri, 17 Feb 2017 19:29:42 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id F1C9124121 for ; Fri, 17 Feb 2017 19:29:41 +0000 (UTC) Date: Fri, 17 Feb 2017 19:29:41 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-5747) Eager Scheduling should deploy all Tasks together MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 17 Feb 2017 19:29:47 -0000 [ https://issues.apache.org/jira/browse/FLINK-5747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15872366#comment-15872366 ] ASF GitHub Bot commented on FLINK-5747: --------------------------------------- Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/3295#discussion_r101829659 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionGraph.java --- @@ -754,6 +759,139 @@ public void scheduleForExecution(SlotProvider slotProvider) throws JobException } } + private void scheduleLazy(SlotProvider slotProvider) throws NoResourceAvailableException { + // simply take the vertices without inputs. + for (ExecutionJobVertex ejv : this.tasks.values()) { + if (ejv.getJobVertex().isInputVertex()) { + ejv.scheduleAll(slotProvider, allowQueuedScheduling); + } + } + } + + /** + * + * + * @param slotProvider The resource provider from which the slots are allocated + * @param timeout The maximum time that the deployment may take, before a + * TimeoutException is thrown. + */ + private void scheduleEager(SlotProvider slotProvider, final Time timeout) { + checkState(state == JobStatus.RUNNING, "job is not running currently"); + + // Important: reserve all the space we need up front. + // that way we do not have any operation that can fail between allocating the slots + // and adding them to the list. If we had a failure in between there, that would + // cause the slots to get lost + final ArrayList resources = new ArrayList<>(getNumberOfExecutionJobVertices()); + final boolean queued = allowQueuedScheduling; + + // we use this flag to handle failures in a 'finally' clause + // that allows us to not go through clumsy cast-and-rethrow logic + boolean successful = false; + + try { + // collecting all the slots may resize and fail in that operation without slots getting lost + final ArrayList> slotFutures = new ArrayList<>(getNumberOfExecutionJobVertices()); + + // allocate the slots (obtain all their futures + for (ExecutionJobVertex ejv : getVerticesTopologically()) { + // these calls are not blocking, they only return futures + ExecutionAndSlot[] slots = ejv.allocateResourcesForAll(slotProvider, queued); + + // we need to first add the slots to this list, to be safe on release + resources.add(slots); + + for (ExecutionAndSlot ens : slots) { + slotFutures.add(ens.slotFuture); + } + } + + // this future is complete once all slot futures are complete. + // the future fails once one slot future fails. + final ConjunctFuture allAllocationsComplete = FutureUtils.combineAll(slotFutures); --- End diff -- True, it is not incorrect. But some tasks would be already deployed if we start as soon as some futures are ready. They would need to be canceled again, which gives these not so nice fast deploy/out-of-resource/cancel/wait-for-cancellation/retry/etc loops. > Eager Scheduling should deploy all Tasks together > ------------------------------------------------- > > Key: FLINK-5747 > URL: https://issues.apache.org/jira/browse/FLINK-5747 > Project: Flink > Issue Type: Bug > Components: JobManager > Affects Versions: 1.2.0 > Reporter: Stephan Ewen > Assignee: Stephan Ewen > Fix For: 1.3.0 > > > Currently, eager scheduling immediately triggers the scheduling for all vertices and their subtasks in topological order. > This has two problems: > - This works only, as long as resource acquisition is "synchronous". With dynamic resource acquisition in FLIP-6, the resources are returned as Futures which may complete out of order. This results in out-of-order (not in topological order) scheduling of tasks which does not work for streaming. > - Deploying some tasks that depend on other tasks before it is clear that the other tasks have resources as well leads to situations where many deploy/recovery cycles happen before enough resources are available to get the job running fully. > For eager scheduling, we should allocate all resources in one chunk and then deploy once we know that all are available. > As a follow-up, the same should be done per pipelined component in lazy batch scheduling as well. That way we get lazy scheduling across blocking boundaries, and bulk (gang) scheduling in pipelined subgroups. > This also does not apply for efforts of fine grained recovery, where individual tasks request replacement resources. -- This message was sent by Atlassian JIRA (v6.3.15#6346)