Return-Path: X-Original-To: apmail-flink-issues-archive@minotaur.apache.org Delivered-To: apmail-flink-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 375E91084B for ; Tue, 9 Dec 2014 16:42:34 +0000 (UTC) Received: (qmail 11710 invoked by uid 500); 9 Dec 2014 16:42:34 -0000 Delivered-To: apmail-flink-issues-archive@flink.apache.org Received: (qmail 11666 invoked by uid 500); 9 Dec 2014 16:42:34 -0000 Mailing-List: contact issues-help@flink.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.incubator.apache.org Delivered-To: mailing list issues@flink.incubator.apache.org Received: (qmail 11657 invoked by uid 99); 9 Dec 2014 16:42:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Dec 2014 16:42:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,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; Tue, 09 Dec 2014 16:42:32 +0000 Received: (qmail 11534 invoked by uid 99); 9 Dec 2014 16:42:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Dec 2014 16:42:12 +0000 Date: Tue, 9 Dec 2014 16:42:12 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-986) Add intermediate results to distributed runtime MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/FLINK-986?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14239631#comment-14239631 ] ASF GitHub Bot commented on FLINK-986: -------------------------------------- Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/incubator-flink/pull/254#discussion_r21541216 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/buffer/Buffer.java --- @@ -0,0 +1,124 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.runtime.io.network.buffer; + +import org.apache.flink.core.memory.MemorySegment; + +import java.nio.ByteBuffer; +import java.util.concurrent.atomic.AtomicInteger; + +import static com.google.common.base.Preconditions.checkArgument; +import static com.google.common.base.Preconditions.checkNotNull; +import static com.google.common.base.Preconditions.checkState; + +/** + * Wrapper for pooled {@link MemorySegment} instances. + */ +public class Buffer { + + /** Size of the backing {@link MemorySegment} instance */ + private final MemorySegment memorySegment; + + /** The recycler for the backing {@link MemorySegment} */ + private final BufferRecycler recycler; + + /** The current number of references to this buffer */ + private AtomicInteger referenceCount = new AtomicInteger(1); + + /** + * The current size of the buffer in the range from 0 (inclusive) to the + * size of the backing {@link MemorySegment} (inclusive). + */ + private AtomicInteger currentSize = new AtomicInteger(); + + public Buffer(MemorySegment memorySegment, BufferRecycler recycler) { + this.memorySegment = checkNotNull(memorySegment); + this.currentSize.set(memorySegment.size()); + this.recycler = checkNotNull(recycler); + } + + // TODO Revert serialized encoding of buffer or event type + public boolean isBuffer() { + ensureNotRecycled(); + + return memorySegment.getBoolean(0); + } + + public MemorySegment getMemorySegment() { + ensureNotRecycled(); + + return memorySegment; + } + + public ByteBuffer getNioBuffer() { + ensureNotRecycled(); + + return memorySegment.wrap(0, currentSize.get()).duplicate(); + } + + public int getSize() { + ensureNotRecycled(); + + return currentSize.get(); + } + + public void setSize(int newSize) { + ensureNotRecycled(); + + currentSize.set(checkSizeWithinBounds(newSize)); + } + + public void recycle() { + int current = referenceCount.decrementAndGet(); --- End diff -- This logic is not safe against concurrent reference increments / decrements. Here is how we can do it: The constructor should initialize the number of references to 1 ``` public void retain() { while (true) { int current = referenceCount.get(); if (current > 0) { if (referenceCount.compareAndSet(current, current + 1)) { break; } // else fall through the loop } else { throw new IllegalStateException("released"); } } } public void release() { int newCount = referenceCount.decrementAndGet(); if (newCount == 0) { recycle(); } else if (newCount < 0) { throw new IllegalStateException("Already disposed before"); } } ``` > Add intermediate results to distributed runtime > ----------------------------------------------- > > Key: FLINK-986 > URL: https://issues.apache.org/jira/browse/FLINK-986 > Project: Flink > Issue Type: New Feature > Components: Distributed Runtime > Reporter: Ufuk Celebi > Assignee: Ufuk Celebi > Priority: Blocker > > Support for intermediate results in the runtime is currently blocking different efforts like fault tolerance or result collection at the client. -- This message was sent by Atlassian JIRA (v6.3.4#6332)