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 B6985200C21 for ; Sun, 5 Feb 2017 17:45:49 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B53D7160B48; Sun, 5 Feb 2017 16:45:49 +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 090B0160B59 for ; Sun, 5 Feb 2017 17:45:48 +0100 (CET) Received: (qmail 81918 invoked by uid 500); 5 Feb 2017 16:45:48 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 81739 invoked by uid 99); 5 Feb 2017 16:45:48 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Feb 2017 16:45:48 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id A54641A0306 for ; Sun, 5 Feb 2017 16:45:47 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-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 (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id S9wcusbw1pRT for ; Sun, 5 Feb 2017 16:45:47 +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 A851F5FB9F for ; Sun, 5 Feb 2017 16:45:46 +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 0226FE05E9 for ; Sun, 5 Feb 2017 16:45:43 +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 5AAC52529A for ; Sun, 5 Feb 2017 16:45:42 +0000 (UTC) Date: Sun, 5 Feb 2017 16:45:42 +0000 (UTC) From: "Aleksey Yeschenko (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CASSANDRA-11561) Improve Streaming Performance MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 05 Feb 2017 16:45:49 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-11561?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aleksey Yeschenko updated CASSANDRA-11561: ------------------------------------------ Fix Version/s: (was: 3.x) > Improve Streaming Performance > ----------------------------- > > Key: CASSANDRA-11561 > URL: https://issues.apache.org/jira/browse/CASSANDRA-11561 > Project: Cassandra > Issue Type: Bug > Components: Streaming and Messaging > Reporter: T Jake Luciani > Assignee: T Jake Luciani > > Inspired by CASSANDRA-9766 I've taken a look at the streaming path and have been able to improve Streaming performance 25% with the following: > * CompressedStreamReader had only implemented reading a single byte at a time. I added the read(byte[], int, int) method. > * When writing to sstable, rather than calculate size of row, write the size then write the row (which causes 2x the cpu). Serialize the row to memory then write size of memory buffer and copy buffer to disk. > * Added object recycling of the largest garbage sources. Namely, BTreeSearchIterator, and DataOutputBuffer (for above fix). There are still a few more places recycling would help/ like the Object[] in BTree.Builder > * Changed all ThreadLocals to use FastThreadLocal from netty, and subsequently adding FastThreadLocalThreads for all internal threads. > There are still more things todo here, like we generate tons of garbage boxing types for StreamingHistogram. > I've added a long test to stream and compact a large sstable. -- This message was sent by Atlassian JIRA (v6.3.15#6346)