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 44354200CFD for ; Wed, 6 Sep 2017 14:37:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 42CF91609C0; Wed, 6 Sep 2017 12:37:15 +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 634C91609BA for ; Wed, 6 Sep 2017 14:37:14 +0200 (CEST) Received: (qmail 8128 invoked by uid 500); 6 Sep 2017 12:37:12 -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 8117 invoked by uid 99); 6 Sep 2017 12:37:12 -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; Wed, 06 Sep 2017 12:37:12 +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 6485E1A09D9 for ; Wed, 6 Sep 2017 12:37:12 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id ou9ICuBhDL4d for ; Wed, 6 Sep 2017 12:37:07 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 697D85F1EE for ; Wed, 6 Sep 2017 12:37:06 +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 98A50E0DAF for ; Wed, 6 Sep 2017 12:37:00 +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 3377D2414B for ; Wed, 6 Sep 2017 12:37:00 +0000 (UTC) Date: Wed, 6 Sep 2017 12:37:00 +0000 (UTC) From: "Marcus Eriksson (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CASSANDRA-13471) [PerDiskMemtableFlushWriter_0:1312] 2017-04-25 09:48:14,818 CassandraDaemon.java:226 - Exception in thread Thread[PerDiskMemtableFlushWriter_0:1312,5,main] MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 06 Sep 2017 12:37:15 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-13471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16155286#comment-16155286 ] Marcus Eriksson commented on CASSANDRA-13471: --------------------------------------------- [~cany123] could you provide some more details on your setup? Partitioner? Doing any schema changes when this happens? > [PerDiskMemtableFlushWriter_0:1312] 2017-04-25 09:48:14,818 CassandraDaemon.java:226 - Exception in thread Thread[PerDiskMemtableFlushWriter_0:1312,5,main] > ----------------------------------------------------------------------------------------------------------------------------------------------------------- > > Key: CASSANDRA-13471 > URL: https://issues.apache.org/jira/browse/CASSANDRA-13471 > Project: Cassandra > Issue Type: Bug > Environment: Centos7.3 x86_64, cassandra 3.9 > Reporter: Chernishev Aleksandr > Fix For: 3.9 > > > with sasi index in table test.object: > {code} > CREATE TABLE test.object ( > bname text, > name text, > acl text, > checksum text, > chunksize bigint, > contenttype text, > creationdate timestamp, > inode uuid, > lastmodified timestamp, > metadata map, > parts map, > size bigint, > storageclass text, > version uuid, > PRIMARY KEY (bname, name) > ) WITH CLUSTERING ORDER BY (name ASC) > AND bloom_filter_fp_chance = 0.01 > AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} > AND comment = '' > AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} > AND compression = {'chunk_length_in_kb': '128', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} > AND crc_check_chance = 0.5 > AND dclocal_read_repair_chance = 0.1 > AND default_time_to_live = 0 > AND gc_grace_seconds = 864000 > AND max_index_interval = 2048 > AND memtable_flush_period_in_ms = 0 > AND min_index_interval = 128 > AND read_repair_chance = 0.0 > AND speculative_retry = '99PERCENTILE'; > CREATE INDEX inode_index ON test.object (inode); > {code} > im get error(on random servers in cluster in random times) : > {code} > ERROR [PerDiskMemtableFlushWriter_0:1312] 2017-04-25 09:48:14,818 CassandraDaemon.java:226 - Exception in thread Thread[PerDiskMemtableFlushWriter_0:1312,5,main] > java.lang.RuntimeException: Last written key DecoratedKey(d3f60675-e56e-4551-b468-d4e31c8ee82b, d3f60675e56e4551b468d4e31c8ee82b) >= current key DecoratedKey(6a473364-2f43-3876-574d-693461546d73, d3f6355a5bd8415290668f987a15594c) writing into /data3/test/object-f40120c028d111e78e26c57aefc93bac/.inode_index/mc-26-big-Data.db > at org.apache.cassandra.io.sstable.format.big.BigTableWriter.beforeAppend(BigTableWriter.java:122) ~[apache-cassandra-3.9.0.jar:3.9.0] > at org.apache.cassandra.io.sstable.format.big.BigTableWriter.append(BigTableWriter.java:161) ~[apache-cassandra-3.9.0.jar:3.9.0] > at org.apache.cassandra.io.sstable.SimpleSSTableMultiWriter.append(SimpleSSTableMultiWriter.java:48) ~[apache-cassandra-3.9.0.jar:3.9.0] > at org.apache.cassandra.db.Memtable$FlushRunnable.writeSortedContents(Memtable.java:458) ~[apache-cassandra-3.9.0.jar:3.9.0] > at org.apache.cassandra.db.Memtable$FlushRunnable.call(Memtable.java:493) ~[apache-cassandra-3.9.0.jar:3.9.0] > at org.apache.cassandra.db.Memtable$FlushRunnable.call(Memtable.java:380) ~[apache-cassandra-3.9.0.jar:3.9.0] > at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[na:1.8.0_121] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) ~[na:1.8.0_121] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_121] > at java.lang.Thread.run(Thread.java:745) [na:1.8.0_121] > {code} > After that in debug log repeated messages: > {code} > DEBUG [MemtablePostFlush:405] 2017-04-25 09:48:15,944 ColumnFamilyStore.java:936 - forceFlush requested but everything is clean in object > {code} > Commitlog not truncate and grows. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org For additional commands, e-mail: commits-help@cassandra.apache.org