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 7A949200B9F for ; Mon, 26 Sep 2016 23:38:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 79DC6160AC8; Mon, 26 Sep 2016 21:38:26 +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 BEAF1160ACA for ; Mon, 26 Sep 2016 23:38:25 +0200 (CEST) Received: (qmail 85356 invoked by uid 500); 26 Sep 2016 21:38:24 -0000 Mailing-List: contact dev-help@apex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.apache.org Delivered-To: mailing list dev@apex.apache.org Received: (qmail 85152 invoked by uid 99); 26 Sep 2016 21:38:24 -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; Mon, 26 Sep 2016 21:38:24 +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 747DBC0405 for ; Mon, 26 Sep 2016 21:38:24 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id fayfAMKtDEpY for ; Mon, 26 Sep 2016 21:38:22 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id A61E65FB6C for ; Mon, 26 Sep 2016 21:38:21 +0000 (UTC) Received: (qmail 85106 invoked by uid 99); 26 Sep 2016 21:38:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Sep 2016 21:38:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 9FC6C2C2A62 for ; Mon, 26 Sep 2016 21:38:20 +0000 (UTC) Date: Mon, 26 Sep 2016 21:38:20 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@apex.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (APEXMALHAR-2190) Use reusable buffer to serial spillable data structure MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 26 Sep 2016 21:38:26 -0000 [ https://issues.apache.org/jira/browse/APEXMALHAR-2190?page=3Dcom.atla= ssian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId= =3D15524245#comment-15524245 ]=20 ASF GitHub Bot commented on APEXMALHAR-2190: -------------------------------------------- GitHub user brightchen reopened a pull request: https://github.com/apache/apex-malhar/pull/404 APEXMALHAR-2190 #resolve #comment Use reusable buffer to serial spill= =E2=80=A6 =E2=80=A6able data structure You can merge this pull request into a Git repository by running: $ git pull https://github.com/brightchen/apex-malhar APEXMALHAR-2190-PR Alternatively you can review and apply these changes as the patch at: https://github.com/apache/apex-malhar/pull/404.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #404 =20 ---- commit 13e8b60811501f8bdbb75b4112c9a74676ec3b3c Author: brightchen Date: 2016-08-16T00:46:27Z APEXMALHAR-2190 #resolve #comment Use reusable buffer to serial spillab= le data structure ---- > Use reusable buffer to serial spillable data structure > ------------------------------------------------------ > > Key: APEXMALHAR-2190 > URL: https://issues.apache.org/jira/browse/APEXMALHAR-219= 0 > Project: Apache Apex Malhar > Issue Type: Task > Reporter: bright chen > Assignee: bright chen > Original Estimate: 240h > Remaining Estimate: 240h > > Spillable Data Structure created lots of temporary memory to serial data = lot of of memory copy( see SliceUtils.concatenate(byte[], byte[]). Which us= ed up memory very quickly. See APEXMALHAR-2182. > Use a shared memory to avoid allocate temporary memory and memory copy > some basic ideas > - SerToLVBuffer interface provides a method serTo(T object, LengthValueBu= ffer buffer): instead of create a memory and then return the serialized dat= a, this method let the caller pass in the buffer. So different objects or o= bject with embed objects can share the same LengthValueBuffer > - LengthValueBuffer: It is a buffer which manage the memory as length and= value(which is the generic format of serialized data). which provide lengt= h placeholder mechanism to avoid temporary memory and data copy when the le= ngth can be know after data serialized > - memory management classes: includes interface ByteStream and it's imple= mentations: Block, FixedBlock, BlocksStream. Which provides a mechanism to = dynamic allocate and manage memory. Which basically provides following func= tion. I tried other some other stream mechamism such as ByteArrayInputStrea= m, but it can meet 3rd criteria, and don't have good performance(50% loss)= =20 > - dynamic allocate memory > - reset memory for reuse > - BlocksStream make sure the output slices will not be changed when nee= d extra memory; Block can change the reference of output slices buffer is d= ata was moved due to reallocate of memory(BlocksStream is better solution). > - WindowableBlocksStream extends from BlocksStream and provides functio= n to reset memory window by window instead of reset all memory. It provides= certain amount of cache( as bytes ) in memory -- This message was sent by Atlassian JIRA (v6.3.4#6332)