Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5DF711759C for ; Mon, 31 Aug 2015 18:46:46 +0000 (UTC) Received: (qmail 43880 invoked by uid 500); 31 Aug 2015 18:46:46 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 43843 invoked by uid 500); 31 Aug 2015 18:46:46 -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 43832 invoked by uid 99); 31 Aug 2015 18:46:46 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Aug 2015 18:46:46 +0000 Date: Mon, 31 Aug 2015 18:46:46 +0000 (UTC) From: "Blake Eggleston (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (CASSANDRA-9893) Fix upgrade tests from #9704 that are still failing MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-9893?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14704060#comment-14704060 ] Blake Eggleston edited comment on CASSANDRA-9893 at 8/31/15 6:45 PM: --------------------------------------------------------------------- I've merged Tyler's 8099-backwards-compat branch with the current dtest master and run the tests in the upgrade_tests folder locally against the tip of cassandra-3.0 (CASSANDRA_DIR) and cassandra-2.1 (OLD_CASSANDRA_DIR) with Stupp's fix for CASSANDRA-8220 on osx. I'm getting 7 failures, and 9 other tests which are repeatably throwing various timeout themed errors. These are the tests that are failing: -cql_tests:TestCQL.collection_indexing_test- -cql_tests:TestCQL.composite_index_collections_test- -cql_tests:TestCQL.edge_2i_on_complex_pk_test- -cql_tests:TestCQL.indexed_with_eq_test- -*cql_tests:TestCQL.large_count_test*- (CASSANDRA-9857) -cql_tests:TestCQL.conditional_delete_test- -*cql_tests:TestCQL.static_columns_with_distinct_test*- (CASSANDRA-9857) -paging_test:TestPagingWithDeletions.test_failure_threshold_deletions- cql_tests:TestCQL.static_columns_cas_test paging_test:TestPagingSize.test_with_equal_results_to_page_size these are the ones with timeout/no host errors: -*cql_tests:TestCQL.batch_test*- (CASSANDRA-9673) -*cql_tests:TestCQL.noncomposite_static_cf_test*- (CASSANDRA-9673) -*cql_tests:TestCQL.static_cf_test*- (CASSANDRA-9673) -*cql_tests:TestCQL.test_v2_protocol_IN_with_tuples*- (CASSANDRA-10146) -paging_test:TestPagingDatasetChanges.test_row_TTL_expiry_during_paging- and these had Truncate related timeouts: -paging_test:TestPagingData.test_paging_a_single_wide_row- -paging_test:TestPagingData.test_paging_across_multi_wide_rows- -paging_test:TestPagingDatasetChanges.test_cell_TTL_expiry_during_paging- -paging_test:TestPagingSize.test_undefined_page_size_default- with some more info about the failures here: https://gist.github.com/bdeggleston/cb29e277468a5861d33e https://gist.github.com/bdeggleston/ead704e3f62d55adf5f0 This is mainly a checklist for myself, since 8099-backwards-compat support on cassci isn't there yet. I'm going to focus on the failures first, then take a closer look at the errors. was (Author: bdeggleston): I've merged Tyler's 8099-backwards-compat branch with the current dtest master and run the tests in the upgrade_tests folder locally against the tip of cassandra-3.0 (CASSANDRA_DIR) and cassandra-2.1 (OLD_CASSANDRA_DIR) with Stupp's fix for CASSANDRA-8220 on osx. I'm getting 7 failures, and 9 other tests which are repeatably throwing various timeout themed errors. These are the tests that are failing: -cql_tests:TestCQL.collection_indexing_test- -cql_tests:TestCQL.composite_index_collections_test- -cql_tests:TestCQL.edge_2i_on_complex_pk_test- -cql_tests:TestCQL.indexed_with_eq_test- -*cql_tests:TestCQL.large_count_test*- (CASSANDRA-9857) cql_tests:TestCQL.conditional_delete_test -*cql_tests:TestCQL.static_columns_with_distinct_test*- (CASSANDRA-9857) paging_test:TestPagingWithDeletions.test_failure_threshold_deletions these are the ones with timeout/no host errors: -*cql_tests:TestCQL.batch_test*- (CASSANDRA-9673) -*cql_tests:TestCQL.noncomposite_static_cf_test*- (CASSANDRA-9673) -*cql_tests:TestCQL.static_cf_test*- (CASSANDRA-9673) -*cql_tests:TestCQL.test_v2_protocol_IN_with_tuples*- (CASSANDRA-10146) -paging_test:TestPagingDatasetChanges.test_row_TTL_expiry_during_paging- and these had Truncate related timeouts: -paging_test:TestPagingData.test_paging_a_single_wide_row- -paging_test:TestPagingData.test_paging_across_multi_wide_rows- -paging_test:TestPagingDatasetChanges.test_cell_TTL_expiry_during_paging- -paging_test:TestPagingSize.test_undefined_page_size_default- with some more info about the failures here: https://gist.github.com/bdeggleston/cb29e277468a5861d33e https://gist.github.com/bdeggleston/ead704e3f62d55adf5f0 This is mainly a checklist for myself, since 8099-backwards-compat support on cassci isn't there yet. I'm going to focus on the failures first, then take a closer look at the errors. > Fix upgrade tests from #9704 that are still failing > --------------------------------------------------- > > Key: CASSANDRA-9893 > URL: https://issues.apache.org/jira/browse/CASSANDRA-9893 > Project: Cassandra > Issue Type: Bug > Reporter: Sylvain Lebresne > Assignee: Blake Eggleston > Fix For: 3.0 beta 2 > > > The first things to do on this ticket would be to commit Tyler's branch (https://github.com/thobbs/cassandra-dtest/tree/8099-backwards-compat) to the dtests so cassci run them. I've had to do a few minor modifications to have them run locally so someone which access to cassci should do it and make sure it runs properly. > Once we have that, we should fix any test that isn't passing. I've ran the tests locally and I had 8 failures. for 2 of them, it sounds plausible that they'll get fixed by the patch of CASSANDRA-9775, though that's just a guess. The rest where test that timeouted without a particular error in the log, and running some of them individually, they passed. So we'll have to see if it's just my machine being overly slow when running them all. -- This message was sent by Atlassian JIRA (v6.3.4#6332)