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 AC729200B8B for ; Tue, 4 Oct 2016 11:43:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AAFC7160AE8; Tue, 4 Oct 2016 09:43:22 +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 06135160AC9 for ; Tue, 4 Oct 2016 11:43:21 +0200 (CEST) Received: (qmail 25121 invoked by uid 500); 4 Oct 2016 09:43:21 -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 24849 invoked by uid 99); 4 Oct 2016 09:43:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Oct 2016 09:43:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id CDC292C0B05 for ; Tue, 4 Oct 2016 09:43:20 +0000 (UTC) Date: Tue, 4 Oct 2016 09:43:20 +0000 (UTC) From: "Robert Stupp (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (CASSANDRA-12731) Remove IndexInfo cache from FileIndexInfoRetriever. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 04 Oct 2016 09:43:22 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-12731?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15542317#comment-15542317 ] Robert Stupp edited comment on CASSANDRA-12731 at 10/4/16 9:43 AM: ------------------------------------------------------------------- Nice catch, [~Yasuharu] ! I did some comparison myself and get similar improvements using the patch you provided so I've setup a branch for CI. The branch also includes a temporary fix for the issue you've also reported as CASSANDRA-12717. ||trunk|[branch|https://github.com/apache/cassandra/compare/trunk...snazy:12731-modified-3.x]|[testall|http://cassci.datastax.com/view/Dev/view/snazy/job/snazy-12731-modified-3.x-testall/lastSuccessfulBuild/]|[dtest|http://cassci.datastax.com/view/Dev/view/snazy/job/snazy-12731-modified-3.x-dtest/lastSuccessfulBuild/] was (Author: snazy): Nice catch, [~Yasuharu] ! I did some comparison myself and get similar improvements using the patch you provided so I've setup a branch for CI. The branch also includes a temporary fix for the issue you've also reported as CASSANDRA-12717. ||trunk|[branch|https://github.com/apache/cassandra/compare/trunk...snazy:12731-modified-trunk]|[testall|http://cassci.datastax.com/view/Dev/view/snazy/job/snazy-12731-modified-trunk-testall/lastSuccessfulBuild/]|[dtest|http://cassci.datastax.com/view/Dev/view/snazy/job/snazy-12731-modified-trunk-dtest/lastSuccessfulBuild/] > Remove IndexInfo cache from FileIndexInfoRetriever. > --------------------------------------------------- > > Key: CASSANDRA-12731 > URL: https://issues.apache.org/jira/browse/CASSANDRA-12731 > Project: Cassandra > Issue Type: Improvement > Reporter: Yasuharu Goto > Assignee: Yasuharu Goto > Attachments: screenshot-1.png, screenshot-2.png > > > Hi guys. > In the patch of CASSANDRA-11206 , I found that FileIndexInfoRetriever allocates a (potentially very large) IndexInfo array (up to the number of IndexInfo in the RowIndexEntry has) as a cache in every single read path. > After some experiments using LargePartitionTest on my MacBook, I got results that show that removing FileIndexInfoRetriever improves the performance for large partitions like below (latencies reduced by 41% and by 45%). > {noformat} > // LargePartitionsTest.test_13_4G with cache by array > INFO [main] 2016-09-29 23:11:25,763 ?:? - SELECTs 1 for part=4194304k total=16384M took 94197 ms > INFO [main] 2016-09-29 23:12:50,914 ?:? - SELECTs 2 for part=4194304k total=16384M took 85151 ms > // LargePartitionsTest.test_13_4G without cache > INFO [main] 2016-09-30 00:13:26,050 ?:? - SELECTs 1 for part=4194304k total=16384M took 55112 ms > INFO [main] 2016-09-30 00:14:12,132 ?:? - SELECTs 2 for part=4194304k total=16384M took 46082 ms > {noformat} > Code is [here|https://github.com/matope/cassandra/commit/86fb910a0e38f7520e1be40fb42f74a692f2ebce] (based on trunk) > Heap memory usage during running LargePartitionsTest (except for 8G test) with array cache(original) > !screenshot-1.png! > Heap memory usage during running LargePartitionsTest (except for 8G test) without cache > !screenshot-2.png! > Of course, I have attempted to use some collection containers instead of a plain array. But I could not recognize great improvement enough to justify using these cache mechanism by them. (Unless I did some mistake or overlook about this test) > || LargePartitionsTest.test_12_2G || SELECTs 1 (ms) || SELECTs 2 (ms) || Scan (ms) || > |Original (array) | 62736 | 48562 | 41540 | > |ConcurrentHashMap | 47597 | 30854 | 18271 | > |ConcurrentHashMap 2nd trial |44036|26895|17443| > |LinkedHashCache (capacity=16, limit=10, fifo) 1st|42668|32165|17323| > |LinkedHashCache (capacity=16, limit=10, fifo) 2nd|48863|28066|18053| > |LinkedHashCache (capacity=16, limit=16, fifo) | 46979 | 29810 | 18620 | > |LinkedHashCache (capacity=16, limit=10, lru) | 46456 | 29749 | 20311 | > |No Cache | 47579 | 32480 | 18337 | > |No Cache 2nd trial | 46534 | 27670 | 18700 | > Code that I used for this comparison is [here|https://github.com/matope/cassandra/commit/e12fcac77f0f46bdf4104ef21c6454bfb2bb92d0]. LinkedHashCache is a simple fifo/lru cache that is extended by LinkedHashMap. > Scan is a execution time to iterate through the large partition. > So, in this issue, I'd like to propose to remove IndexInfo cache from FileIndexInfoRetriever to improve the performance on large partitions. -- This message was sent by Atlassian JIRA (v6.3.4#6332)