[jira] [Comment Edited] (CASSANDRA-12995) update hppc dependency to 0.7

2020-02-10 Thread Gus Heck (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-12995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034090#comment-17034090
 ] 

Gus Heck edited comment on CASSANDRA-12995 at 2/11/20 2:29 AM:
---

Yeah saw this comment earlier today. Looked at your test and it looks like 
failures are a function of the
{code:java}
new LongHashSet() {{ add() }} {code}
syntax, which is cute for readability, but the creation of a subclass there is 
entirely unnecessary. Since it's not a bug and no change is needed I expect 
this was vetted for solr when the library was upgraded there (by Dawid in 
SOLR-7790 )


was (Author: gus_heck):
Yeah saw this comment earlier today. Looked at your test and it looks like 
failures of a function of the
{code:java}
new LongHashSet() {{ add() }} {code}
syntax, which is cute for readability, but the creation of a subclass there is 
entirely unnecessary. Since it's not a bug and no change is needed I expect 
this was vetted for solr when the library was upgraded there (by Dawid in 
SOLR-7790 )

> update hppc dependency to 0.7
> -
>
> Key: CASSANDRA-12995
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12995
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Dependencies, Packaging
>Reporter: Tomas Repik
>Assignee: Ekaterina Dimitrova
>Priority: Normal
>  Labels: easyfix
> Fix For: 4.0
>
> Attachments: Screen Shot 2020-01-29 at 11.14.30 AM.png, Screen Shot 
> 2020-01-29 at 11.20.39 AM.png, Screen Shot 2020-01-29 at 11.20.47 AM.png, 
> cassandra-3.11.0-hppc.patch
>
>
> Cassandra 3.11.0 is about to be included in Fedora. There are some tweaks to 
> the sources we need to do in order to successfully build it. Cassandra 
> depends on hppc 0.5.4, but In Fedora we have the newer version 0.7.1 Upstream 
> released even newer version 0.7.2. I attached a patch updating cassandra 
> sources to depend on the 0.7.1 hppc sources. It should be also compatible 
> with the newest upstream version. The only actual changes are the removal of 
> Open infix in class names. The issue was discussed in here: 
> https://bugzilla.redhat.com/show_bug.cgi?id=1340876 Please consider updating.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-12995) update hppc dependency to 0.7

2020-02-10 Thread Gus Heck (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-12995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034090#comment-17034090
 ] 

Gus Heck commented on CASSANDRA-12995:
--

Yeah saw this comment earlier today. Looked at your test and it looks like 
failures of a function of the
{code:java}
new LongHashSet() {{ add() }} {code}
syntax, which is cute for readability, but the creation of a subclass there is 
entirely unnecessary. Since it's not a bug and no change is needed I expect 
this was vetted for solr when the library was upgraded there (by Dawid in 
SOLR-7790 )

> update hppc dependency to 0.7
> -
>
> Key: CASSANDRA-12995
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12995
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Dependencies, Packaging
>Reporter: Tomas Repik
>Assignee: Ekaterina Dimitrova
>Priority: Normal
>  Labels: easyfix
> Fix For: 4.0
>
> Attachments: Screen Shot 2020-01-29 at 11.14.30 AM.png, Screen Shot 
> 2020-01-29 at 11.20.39 AM.png, Screen Shot 2020-01-29 at 11.20.47 AM.png, 
> cassandra-3.11.0-hppc.patch
>
>
> Cassandra 3.11.0 is about to be included in Fedora. There are some tweaks to 
> the sources we need to do in order to successfully build it. Cassandra 
> depends on hppc 0.5.4, but In Fedora we have the newer version 0.7.1 Upstream 
> released even newer version 0.7.2. I attached a patch updating cassandra 
> sources to depend on the 0.7.1 hppc sources. It should be also compatible 
> with the newest upstream version. The only actual changes are the removal of 
> Open infix in class names. The issue was discussed in here: 
> https://bugzilla.redhat.com/show_bug.cgi?id=1340876 Please consider updating.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Comment Edited] (CASSANDRA-12995) update hppc dependency to 0.7

2020-02-10 Thread Ekaterina Dimitrova (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-12995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034079#comment-17034079
 ] 

Ekaterina Dimitrova edited comment on CASSANDRA-12995 at 2/11/20 2:09 AM:
--

Latest update ([~gus] you might consider also for Lucene and Solr):

As of  [HPPC-125 |https://issues.carrot2.org/browse/HPPC-125] 
LongHashSet#equals() method assumes the same exact implementation class, that's 
why the unit test doesn't work anymore:
[https://github.com/carrotsearch/hppc/blob/master/hppc/src/main/templates/com/carrotsearch/hppc/KTypeHashSet.java#L407]

The change has been documented here:
[https://github.com/carrotsearch/hppc/blob/master/CHANGES.txt#L114-L116]

Further to this unit test, I will have to inspect also the rest of the 
Cassandra code for usage of this method and do corrections accordingly, if 
needed. 


was (Author: e.dimitrova):
Latest update ([~gus] you might consider also for Lucene and Solr):

As of  [HPPC-125 |https://issues.carrot2.org/browse/HPPC-125] 
LongHashSet#equals() method assumes the same exact implementation class, that's 
why our unit test doesn't work anymore:
[https://github.com/carrotsearch/hppc/blob/master/hppc/src/main/templates/com/carrotsearch/hppc/KTypeHashSet.java#L407]

The change has been documented here:
[https://github.com/carrotsearch/hppc/blob/master/CHANGES.txt#L114-L116]

Further to this unit test, I will have to inspect also the rest of the 
Cassandra code for usage of this method and do corrections accordingly, if 
needed. 

> update hppc dependency to 0.7
> -
>
> Key: CASSANDRA-12995
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12995
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Dependencies, Packaging
>Reporter: Tomas Repik
>Assignee: Ekaterina Dimitrova
>Priority: Normal
>  Labels: easyfix
> Fix For: 4.0
>
> Attachments: Screen Shot 2020-01-29 at 11.14.30 AM.png, Screen Shot 
> 2020-01-29 at 11.20.39 AM.png, Screen Shot 2020-01-29 at 11.20.47 AM.png, 
> cassandra-3.11.0-hppc.patch
>
>
> Cassandra 3.11.0 is about to be included in Fedora. There are some tweaks to 
> the sources we need to do in order to successfully build it. Cassandra 
> depends on hppc 0.5.4, but In Fedora we have the newer version 0.7.1 Upstream 
> released even newer version 0.7.2. I attached a patch updating cassandra 
> sources to depend on the 0.7.1 hppc sources. It should be also compatible 
> with the newest upstream version. The only actual changes are the removal of 
> Open infix in class names. The issue was discussed in here: 
> https://bugzilla.redhat.com/show_bug.cgi?id=1340876 Please consider updating.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Comment Edited] (CASSANDRA-12995) update hppc dependency to 0.7

2020-02-10 Thread Ekaterina Dimitrova (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-12995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034079#comment-17034079
 ] 

Ekaterina Dimitrova edited comment on CASSANDRA-12995 at 2/11/20 2:08 AM:
--

Latest update ([~gus] you might consider also for Lucene and Solr):

As of  [HPPC-125 |https://issues.carrot2.org/browse/HPPC-125] 
LongHashSet#equals() method assumes the same exact implementation class, that's 
why our unit test doesn't work anymore:
[https://github.com/carrotsearch/hppc/blob/master/hppc/src/main/templates/com/carrotsearch/hppc/KTypeHashSet.java#L407]

The change has been documented here:
[https://github.com/carrotsearch/hppc/blob/master/CHANGES.txt#L114-L116]

Further to this unit test, I will have to inspect also the rest of the 
Cassandra code for usage of this method and do corrections accordingly, if 
needed. 


was (Author: e.dimitrova):
[~gus] Latest update you might consider also for Lucene and Solr:

As of  [HPPC-125 |https://issues.carrot2.org/browse/HPPC-125] 
LongHashSet#equals() method assumes the same exact implementation class, that's 
why our unit test doesn't work anymore:
[https://github.com/carrotsearch/hppc/blob/master/hppc/src/main/templates/com/carrotsearch/hppc/KTypeHashSet.java#L407]

The change has been documented here:
[https://github.com/carrotsearch/hppc/blob/master/CHANGES.txt#L114-L116]

Further to this unit test, I will have to inspect also the rest of the 
Cassandra code for usage of this method and do corrections accordingly, if 
needed. 

 

> update hppc dependency to 0.7
> -
>
> Key: CASSANDRA-12995
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12995
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Dependencies, Packaging
>Reporter: Tomas Repik
>Assignee: Ekaterina Dimitrova
>Priority: Normal
>  Labels: easyfix
> Fix For: 4.0
>
> Attachments: Screen Shot 2020-01-29 at 11.14.30 AM.png, Screen Shot 
> 2020-01-29 at 11.20.39 AM.png, Screen Shot 2020-01-29 at 11.20.47 AM.png, 
> cassandra-3.11.0-hppc.patch
>
>
> Cassandra 3.11.0 is about to be included in Fedora. There are some tweaks to 
> the sources we need to do in order to successfully build it. Cassandra 
> depends on hppc 0.5.4, but In Fedora we have the newer version 0.7.1 Upstream 
> released even newer version 0.7.2. I attached a patch updating cassandra 
> sources to depend on the 0.7.1 hppc sources. It should be also compatible 
> with the newest upstream version. The only actual changes are the removal of 
> Open infix in class names. The issue was discussed in here: 
> https://bugzilla.redhat.com/show_bug.cgi?id=1340876 Please consider updating.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-12995) update hppc dependency to 0.7

2020-02-10 Thread Ekaterina Dimitrova (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-12995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034079#comment-17034079
 ] 

Ekaterina Dimitrova commented on CASSANDRA-12995:
-

[~gus] Latest update you might consider also for Lucene and Solr:

As of  [HPPC-125 |https://issues.carrot2.org/browse/HPPC-125] 
LongHashSet#equals() method assumes the same exact implementation class, that's 
why our unit test doesn't work anymore:
[https://github.com/carrotsearch/hppc/blob/master/hppc/src/main/templates/com/carrotsearch/hppc/KTypeHashSet.java#L407]

The change has been documented here:
[https://github.com/carrotsearch/hppc/blob/master/CHANGES.txt#L114-L116]

Further to this unit test, I will have to inspect also the rest of the 
Cassandra code for usage of this method and do corrections accordingly, if 
needed. 

 

> update hppc dependency to 0.7
> -
>
> Key: CASSANDRA-12995
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12995
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Dependencies, Packaging
>Reporter: Tomas Repik
>Assignee: Ekaterina Dimitrova
>Priority: Normal
>  Labels: easyfix
> Fix For: 4.0
>
> Attachments: Screen Shot 2020-01-29 at 11.14.30 AM.png, Screen Shot 
> 2020-01-29 at 11.20.39 AM.png, Screen Shot 2020-01-29 at 11.20.47 AM.png, 
> cassandra-3.11.0-hppc.patch
>
>
> Cassandra 3.11.0 is about to be included in Fedora. There are some tweaks to 
> the sources we need to do in order to successfully build it. Cassandra 
> depends on hppc 0.5.4, but In Fedora we have the newer version 0.7.1 Upstream 
> released even newer version 0.7.2. I attached a patch updating cassandra 
> sources to depend on the 0.7.1 hppc sources. It should be also compatible 
> with the newest upstream version. The only actual changes are the removal of 
> Open infix in class names. The issue was discussed in here: 
> https://bugzilla.redhat.com/show_bug.cgi?id=1340876 Please consider updating.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15563) Backport removal of OpenJDK warning log

2020-02-10 Thread Michael Shuler (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Shuler updated CASSANDRA-15563:
---
Fix Version/s: 3.0.x
   2.2.x

> Backport removal of OpenJDK warning log
> ---
>
> Key: CASSANDRA-15563
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15563
> Project: Cassandra
>  Issue Type: Task
>Reporter: Thomas Steinmaurer
>Priority: Normal
> Fix For: 2.2.x, 3.0.x
>
>
> As requested on Slack, creating this ticket for a backport of 
> CASSANDRA-13916, potentially to 2.2 and 3.0.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15399) Add ability to track state in repair

2020-02-10 Thread David Capwell (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034061#comment-17034061
 ] 

David Capwell commented on CASSANDRA-15399:
---

Ok, created CASSANDRA-15566 to track fixing the hanging issues, created sub 
task for refactor and working on smaller patch there that only does the 
refactor.

> Add ability to track state in repair
> 
>
> Key: CASSANDRA-15399
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15399
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Consistency/Repair
>Reporter: David Capwell
>Assignee: David Capwell
>Priority: Normal
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To enhance the visibility in repair, we should expose internal state via 
> virtual tables; the state should include coordinator as well as participant 
> state (validation, sync, etc.)
> I propose the following tables:
> repairs - high level summary of the global state of repair; this should be 
> called on the coordinator.
> {code:sql}
> CREATE TABLE repairs (
>   id uuid,
>   keyspace_name text,
>   table_names frozen>,
>   ranges frozen>,
>   coordinator text,
>   participants frozen>,
>   state text,
>   progress_percentage float,
>   last_updated_at_millis bigint,
>   duration_micro bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id) )
> )
> {code}
> repair_tasks - represents RepairJob and participants state.  This will show 
> if validations are running on participants and the progress they are making; 
> this should be called on the coordinator.
> {code:sql}
> CREATE TABLE repair_tasks (
>   id uuid,
>   session_id uuid,
>   keyspace_name text,
>   table_name text,
>   ranges frozen>,
>   coordinator text,
>   participant text,
>   state text,
>   state_description text,
>   progress_percentage float, -- between 0.0 and 100.0
>   last_updated_at_millis bigint,
>   duration_micro bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id), session_id, table_name, participant )
> )
> {code}
> repair_validations - shows the state of the validation task and updated 
> periodically while validation is running; this should be called on the 
> participants.
> {code:sql}
> CREATE TABLE repair_validations (
>   id uuid,
>   session_id uuid,
>   ranges frozen>,
>   keyspace_name text,
>   table_name text,
>   initiator text,
>   state text,
>   progress_percentage float,
>   queue_duration_ms bigint,
>   runtime_duration_ms bigint,
>   total_duration_ms bigint,
>   estimated_partitions bigint,
>   partitions_processed bigint,
>   estimated_total_bytes bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id), session_id, table_name )
> )
> {code}
> The main reason for exposing virtual tables rather than exposing through 
> durable tables is to make sure what is exposed is accurate.  In cases of 
> write failures or node failures, the durable tables could become in-accurate 
> and could add edge cases where the repair is not running but the tables say 
> it is; by relying on repair's internal in-memory bookkeeping, these problems 
> go away.
> This jira does not try to solve the following:
> 1) repair resiliency - there are edge cases where repair hits an error and 
> runs forever (at least from nodetool's perspective).
> 2) repair stream tracking - I have not learned the streaming side yet and 
> what I see is multiple implementations exist, so seems like high scope.  My 
> hope is to punt from this jira and tackle separately.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Created] (CASSANDRA-15566) Repair coordinator can hang under some cases

2020-02-10 Thread David Capwell (Jira)
David Capwell created CASSANDRA-15566:
-

 Summary: Repair coordinator can hang under some cases
 Key: CASSANDRA-15566
 URL: https://issues.apache.org/jira/browse/CASSANDRA-15566
 Project: Cassandra
  Issue Type: Improvement
  Components: Consistency/Repair
Reporter: David Capwell
Assignee: David Capwell


Repair coordination makes a few assumptions about message delivery which cause 
it to hang forever when those assumptions don’t hold true: fire and forget will 
not get rejected (participate has an issue and rejects the message), and a very 
delayed message will one day be seen (messaging can be dropped under load or 
when failure detector thinks a node is bad but is just GCing).

Given this and the desire to have better observability with repair (see 
CASSANDRA-15399), coordination should be changed into a request/response 
pattern (with retries) and polling (validation status and MerkleTree sending).  
This would allow the coordinator to detect changes in state (it was known 
participate was working on validation, but it no longer knows about the 
validation task), and to be able to recover from ephemeral issues.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15565) Fix flaky test org.apache.cassandra.index.internal.CassandraIndexTest indexCorrectlyMarkedAsBuildAndRemoved

2020-02-10 Thread David Capwell (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15565?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

David Capwell updated CASSANDRA-15565:
--
 Bug Category: Parent values: Correctness(12982)Level 1 values: Test 
Failure(12990)
   Complexity: Normal
Discovered By: Unit Test
Fix Version/s: 4.0-alpha
 Severity: Normal
   Status: Open  (was: Triage Needed)

> Fix flaky test org.apache.cassandra.index.internal.CassandraIndexTest 
> indexCorrectlyMarkedAsBuildAndRemoved
> ---
>
> Key: CASSANDRA-15565
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15565
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> {code}
> junit.framework.AssertionFailedError: Got more rows than expected. Expected 1 
> but got 4.
>   at org.apache.cassandra.cql3.CQLTester.assertRows(CQLTester.java:1098)
>   at 
> org.apache.cassandra.index.internal.CassandraIndexTest.indexCorrectlyMarkedAsBuildAndRemoved(CassandraIndexTest.java:499)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> {code}
> The failure was seen on java 11.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Created] (CASSANDRA-15565) Fix flaky test org.apache.cassandra.index.internal.CassandraIndexTest indexCorrectlyMarkedAsBuildAndRemoved

2020-02-10 Thread David Capwell (Jira)
David Capwell created CASSANDRA-15565:
-

 Summary: Fix flaky test 
org.apache.cassandra.index.internal.CassandraIndexTest 
indexCorrectlyMarkedAsBuildAndRemoved
 Key: CASSANDRA-15565
 URL: https://issues.apache.org/jira/browse/CASSANDRA-15565
 Project: Cassandra
  Issue Type: Bug
  Components: Test/unit
Reporter: David Capwell


{code}
junit.framework.AssertionFailedError: Got more rows than expected. Expected 1 
but got 4.
at org.apache.cassandra.cql3.CQLTester.assertRows(CQLTester.java:1098)
at 
org.apache.cassandra.index.internal.CassandraIndexTest.indexCorrectlyMarkedAsBuildAndRemoved(CassandraIndexTest.java:499)
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at 
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
{code}

The failure was seen on java 11.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Created] (CASSANDRA-15564) Refactor repair coordinator so errors are consistent

2020-02-10 Thread David Capwell (Jira)
David Capwell created CASSANDRA-15564:
-

 Summary: Refactor repair coordinator so errors are consistent
 Key: CASSANDRA-15564
 URL: https://issues.apache.org/jira/browse/CASSANDRA-15564
 Project: Cassandra
  Issue Type: Sub-task
  Components: Consistency/Repair
Reporter: David Capwell
Assignee: David Capwell


This is to split the change in CASSANDRA-15399 so the refactor is isolated out.

Currently the repair coordinator special cases the exit cases at each call 
site; this makes it so that errors can be inconsistent and there are cases 
where proper complete isn't done (proper notifications, and forgetting to 
update ActiveRepairService).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15564) Refactor repair coordinator so errors are consistent

2020-02-10 Thread David Capwell (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15564?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

David Capwell updated CASSANDRA-15564:
--
Change Category: Operability
 Complexity: Normal
 Status: Open  (was: Triage Needed)

> Refactor repair coordinator so errors are consistent
> 
>
> Key: CASSANDRA-15564
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15564
> Project: Cassandra
>  Issue Type: Sub-task
>  Components: Consistency/Repair
>Reporter: David Capwell
>Assignee: David Capwell
>Priority: Normal
>
> This is to split the change in CASSANDRA-15399 so the refactor is isolated 
> out.
> Currently the repair coordinator special cases the exit cases at each call 
> site; this makes it so that errors can be inconsistent and there are cases 
> where proper complete isn't done (proper notifications, and forgetting to 
> update ActiveRepairService).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15399) Add ability to track state in repair

2020-02-10 Thread David Capwell (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034039#comment-17034039
 ] 

David Capwell commented on CASSANDRA-15399:
---

Ill fork out another JIRA for the first two cases (missing JMX, JMX 
consistency) which is most of the original patch.  Ill create another jira for 
the failure to terminate cases as well.

> Add ability to track state in repair
> 
>
> Key: CASSANDRA-15399
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15399
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Consistency/Repair
>Reporter: David Capwell
>Assignee: David Capwell
>Priority: Normal
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To enhance the visibility in repair, we should expose internal state via 
> virtual tables; the state should include coordinator as well as participant 
> state (validation, sync, etc.)
> I propose the following tables:
> repairs - high level summary of the global state of repair; this should be 
> called on the coordinator.
> {code:sql}
> CREATE TABLE repairs (
>   id uuid,
>   keyspace_name text,
>   table_names frozen>,
>   ranges frozen>,
>   coordinator text,
>   participants frozen>,
>   state text,
>   progress_percentage float,
>   last_updated_at_millis bigint,
>   duration_micro bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id) )
> )
> {code}
> repair_tasks - represents RepairJob and participants state.  This will show 
> if validations are running on participants and the progress they are making; 
> this should be called on the coordinator.
> {code:sql}
> CREATE TABLE repair_tasks (
>   id uuid,
>   session_id uuid,
>   keyspace_name text,
>   table_name text,
>   ranges frozen>,
>   coordinator text,
>   participant text,
>   state text,
>   state_description text,
>   progress_percentage float, -- between 0.0 and 100.0
>   last_updated_at_millis bigint,
>   duration_micro bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id), session_id, table_name, participant )
> )
> {code}
> repair_validations - shows the state of the validation task and updated 
> periodically while validation is running; this should be called on the 
> participants.
> {code:sql}
> CREATE TABLE repair_validations (
>   id uuid,
>   session_id uuid,
>   ranges frozen>,
>   keyspace_name text,
>   table_name text,
>   initiator text,
>   state text,
>   progress_percentage float,
>   queue_duration_ms bigint,
>   runtime_duration_ms bigint,
>   total_duration_ms bigint,
>   estimated_partitions bigint,
>   partitions_processed bigint,
>   estimated_total_bytes bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id), session_id, table_name )
> )
> {code}
> The main reason for exposing virtual tables rather than exposing through 
> durable tables is to make sure what is exposed is accurate.  In cases of 
> write failures or node failures, the durable tables could become in-accurate 
> and could add edge cases where the repair is not running but the tables say 
> it is; by relying on repair's internal in-memory bookkeeping, these problems 
> go away.
> This jira does not try to solve the following:
> 1) repair resiliency - there are edge cases where repair hits an error and 
> runs forever (at least from nodetool's perspective).
> 2) repair stream tracking - I have not learned the streaming side yet and 
> what I see is multiple implementations exist, so seems like high scope.  My 
> hope is to punt from this jira and tackle separately.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15527) Fix flakey test - org.apache.cassandra.index.sasi.SASIIndexTest testCrossSSTableQueries

2020-02-10 Thread David Capwell (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17034036#comment-17034036
 ] 

David Capwell commented on CASSANDRA-15527:
---

bq. I am gonna put this one for now as blocked by the other one until we come 
up with solution there.

+1

> Fix flakey test - org.apache.cassandra.index.sasi.SASIIndexTest 
> testCrossSSTableQueries
> ---
>
> Key: CASSANDRA-15527
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15527
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Ekaterina Dimitrova
>Priority: Normal
> Fix For: 4.0-alpha
>
> Attachments: CASSANDRA-15527.txt
>
>
> {code}
> junit.framework.AssertionFailedError: [key13, key2977, key2978, key2979, 
> key2980, key2982, key2983, key2984, key2985, key6]
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.testCrossSSTableQueries(SASIIndexTest.java:340)
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.testCrossSSTableQueries(SASIIndexTest.java:286)
>   at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native 
> Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Merge branch 'cassandra-3.11' into trunk

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit 693b60ca410fb95a757410cdd1bd25eea1b28029
Merge: 5c7b283 cb779ab
Author: Mick Semb Wever 
AuthorDate: Tue Feb 11 00:19:58 2020 +0100

Merge branch 'cassandra-3.11' into trunk



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch cassandra-3.11 updated (4a914da -> cb779ab)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from 4a914da  Merge branch 'cassandra-3.0' into cassandra-3.11
 add cb779ab  Prepare debian changelog for 3.11.6

No new revisions were added by this update.

Summary of changes:
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch trunk updated (5c7b283 -> 693b60c)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from 5c7b283  Merge branch 'cassandra-3.11' into trunk
 add cb779ab  Prepare debian changelog for 3.11.6
 new 693b60c  Merge branch 'cassandra-3.11' into trunk

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r37984 - in /dev/cassandra/3.11.6/redhat: ./ repodata/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 23:18:37 2020
New Revision: 37984

Log:
staging cassandra rpm packages for 3.11.6

Added:
dev/cassandra/3.11.6/redhat/
dev/cassandra/3.11.6/redhat/cassandra-3.11.6-1.noarch.rpm   (with props)
dev/cassandra/3.11.6/redhat/cassandra-3.11.6-1.src.rpm   (with props)
dev/cassandra/3.11.6/redhat/cassandra-tools-3.11.6-1.noarch.rpm   (with 
props)
dev/cassandra/3.11.6/redhat/repodata/

dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz
   (with props)

dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz.asc

dev/cassandra/3.11.6/redhat/repodata/894e958c95ff54287b054eb2b598aa96f0e016aa7430f6ce3e8347446fb712a6-other.sqlite.bz2
   (with props)

dev/cassandra/3.11.6/redhat/repodata/894e958c95ff54287b054eb2b598aa96f0e016aa7430f6ce3e8347446fb712a6-other.sqlite.bz2.asc

dev/cassandra/3.11.6/redhat/repodata/a1de05edc80afd7616714fb8b0fc5ad18a8f1bd1eb333025964b813e90dbc6b8-filelists.xml.gz
   (with props)

dev/cassandra/3.11.6/redhat/repodata/a1de05edc80afd7616714fb8b0fc5ad18a8f1bd1eb333025964b813e90dbc6b8-filelists.xml.gz.asc

dev/cassandra/3.11.6/redhat/repodata/a54e87ce1734765f6c3e89d7b1bde397404225e24df3a6f5bf479d7d530ec77d-filelists.sqlite.bz2
   (with props)

dev/cassandra/3.11.6/redhat/repodata/a54e87ce1734765f6c3e89d7b1bde397404225e24df3a6f5bf479d7d530ec77d-filelists.sqlite.bz2.asc

dev/cassandra/3.11.6/redhat/repodata/e1313e0679ea50b26503aededf3595bb4fece1ac4b6cd532fa2f514ecd8a8c6a-primary.sqlite.bz2
   (with props)

dev/cassandra/3.11.6/redhat/repodata/e1313e0679ea50b26503aededf3595bb4fece1ac4b6cd532fa2f514ecd8a8c6a-primary.sqlite.bz2.asc

dev/cassandra/3.11.6/redhat/repodata/e2fa3c55cb2240408d4f62d7d331d1965ac702be60b2b0754858fb9e50ad8292-other.xml.gz
   (with props)

dev/cassandra/3.11.6/redhat/repodata/e2fa3c55cb2240408d4f62d7d331d1965ac702be60b2b0754858fb9e50ad8292-other.xml.gz.asc
dev/cassandra/3.11.6/redhat/repodata/repomd.xml
dev/cassandra/3.11.6/redhat/repodata/repomd.xml.asc

Added: dev/cassandra/3.11.6/redhat/cassandra-3.11.6-1.noarch.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/redhat/cassandra-3.11.6-1.noarch.rpm
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.11.6/redhat/cassandra-3.11.6-1.src.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/redhat/cassandra-3.11.6-1.src.rpm
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.11.6/redhat/cassandra-tools-3.11.6-1.noarch.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/redhat/cassandra-tools-3.11.6-1.noarch.rpm
--
svn:mime-type = application/octet-stream

Added: 
dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz
==
Binary file - no diff available.

Propchange: 
dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz.asc
==
--- 
dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz.asc
 (added)
+++ 
dev/cassandra/3.11.6/redhat/repodata/790a5123992c80cb51f727f53722dcef2b42503a3950719653e6d0e61040319a-primary.xml.gz.asc
 Mon Feb 10 23:18:37 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B5L0ACgkQ6RM1134+
+h8sLhw/9GBTTbyeNOb7ifi+tsCcBOe3QMVNsisF6bRC+Hr5Z64sr4O8p3tFSLXZY
+TDJvW59SE30bGKGY/fSdkHhMMYQ+flrp8qsLw3iFvN4EINf8C41RJ+p49Tp6EJXi
+RPzO86NDAFbn51c15VVLzDZdNfSQEqukys9ltdj0OBJVHvYpbV6woE5jeoQFMq2y
+kLU3Cg2aofyrhr7/MZUop5+Tt6FJv5uI4qp5GRvPrgd1S+ub5kuGEEt3dCHPV247
+2yKymnk5zFgpAUFG+wUAJOLFfD6Yu6h6lsmoRGd3/8LG0kyG/Kfyjvm5sXRBbu/p
+Sgrtt33r67h3wSUjZns3DnEMw/KBTwG23l0xr+zH7+d95669J6HQwGPZ0onf84RR
+/KIM7aQYRadwp5042wuqJHwoet1+GX+zn4WHrxBbRXkzOzGl3/haeRPeYSi9n/6t
+zMSJ95KXWan/BfU2hB9F/ZtoXuzGJXq5GoF/xvHrGJ2DkQBCE8ijEeK/ffcwmMnB
+keyjAckD7NbNembn4dqBdw6xf1PiIDUzsen6VCuq+bG11DvbYCwSQjiw5nKYj2Tn

svn commit: r37983 - in /dev/cassandra/3.11.6/debian: ./ dists/ dists/311x/ dists/311x/main/ dists/311x/main/binary-amd64/ dists/311x/main/binary-i386/ dists/311x/main/source/ pool/ pool/main/ pool/ma

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 23:03:06 2020
New Revision: 37983

Log:
staging cassandra debian packages for 3.11.6

Added:
dev/cassandra/3.11.6/debian/
dev/cassandra/3.11.6/debian/cassandra-tools_3.11.6_all.deb   (with props)
dev/cassandra/3.11.6/debian/cassandra_3.11.6.dsc
dev/cassandra/3.11.6/debian/cassandra_3.11.6.tar.gz   (with props)
dev/cassandra/3.11.6/debian/cassandra_3.11.6_all.deb   (with props)
dev/cassandra/3.11.6/debian/cassandra_3.11.6_amd64.buildinfo
dev/cassandra/3.11.6/debian/cassandra_3.11.6_amd64.changes
dev/cassandra/3.11.6/debian/dists/
dev/cassandra/3.11.6/debian/dists/311x/
dev/cassandra/3.11.6/debian/dists/311x/InRelease
dev/cassandra/3.11.6/debian/dists/311x/Release
dev/cassandra/3.11.6/debian/dists/311x/Release.gpg
dev/cassandra/3.11.6/debian/dists/311x/main/
dev/cassandra/3.11.6/debian/dists/311x/main/binary-amd64/
dev/cassandra/3.11.6/debian/dists/311x/main/binary-amd64/Packages
dev/cassandra/3.11.6/debian/dists/311x/main/binary-amd64/Packages.gz   
(with props)
dev/cassandra/3.11.6/debian/dists/311x/main/binary-amd64/Release
dev/cassandra/3.11.6/debian/dists/311x/main/binary-i386/
dev/cassandra/3.11.6/debian/dists/311x/main/binary-i386/Packages
dev/cassandra/3.11.6/debian/dists/311x/main/binary-i386/Packages.gz   (with 
props)
dev/cassandra/3.11.6/debian/dists/311x/main/binary-i386/Release
dev/cassandra/3.11.6/debian/dists/311x/main/source/
dev/cassandra/3.11.6/debian/dists/311x/main/source/Release
dev/cassandra/3.11.6/debian/dists/311x/main/source/Sources.gz   (with props)
dev/cassandra/3.11.6/debian/pool/
dev/cassandra/3.11.6/debian/pool/main/
dev/cassandra/3.11.6/debian/pool/main/c/
dev/cassandra/3.11.6/debian/pool/main/c/cassandra/

dev/cassandra/3.11.6/debian/pool/main/c/cassandra/cassandra-tools_3.11.6_all.deb
   (with props)
dev/cassandra/3.11.6/debian/pool/main/c/cassandra/cassandra_3.11.6.dsc
dev/cassandra/3.11.6/debian/pool/main/c/cassandra/cassandra_3.11.6.tar.gz   
(with props)
dev/cassandra/3.11.6/debian/pool/main/c/cassandra/cassandra_3.11.6_all.deb  
 (with props)

Added: dev/cassandra/3.11.6/debian/cassandra-tools_3.11.6_all.deb
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/debian/cassandra-tools_3.11.6_all.deb
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.11.6/debian/cassandra_3.11.6.dsc
==
--- dev/cassandra/3.11.6/debian/cassandra_3.11.6.dsc (added)
+++ dev/cassandra/3.11.6/debian/cassandra_3.11.6.dsc Mon Feb 10 23:03:06 2020
@@ -0,0 +1,41 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA512
+
+Format: 1.0
+Source: cassandra
+Binary: cassandra, cassandra-tools
+Architecture: all
+Version: 3.11.6
+Maintainer: Eric Evans 
+Uploaders: Sylvain Lebresne 
+Homepage: http://cassandra.apache.org
+Standards-Version: 3.8.3
+Vcs-Browser: https://git-wip-us.apache.org/repos/asf?p=cassandra.git
+Vcs-Git: http://git-wip-us.apache.org/repos/asf/cassandra.git
+Build-Depends: debhelper (>= 5), openjdk-8-jdk | java8-jdk, ant (>= 1.9), 
ant-optional (>= 1.9), dh-python, python-dev (>= 2.7), dpatch, bash-completion
+Package-List:
+ cassandra deb misc extra arch=all
+ cassandra-tools deb misc extra arch=all
+Checksums-Sha1:
+ a17e03cf9b2834d08c2e03243c4d09eb23a15010 34914270 cassandra_3.11.6.tar.gz
+Checksums-Sha256:
+ 5ef67eb9d490172226f507b798163c07be272f2713ffbcf9efb026fa55cb5716 34914270 
cassandra_3.11.6.tar.gz
+Files:
+ 5df07b4bf39b2974d82e7fbdfd0d4d04 34914270 cassandra_3.11.6.tar.gz
+
+-BEGIN PGP SIGNATURE-
+
+iQIzBAEBCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B4Q8ACgkQ6RM1134+
+h8vmMA//ewP3pHQZFhExqXC5O7ivZX/zWhLnWZySuiNRrAe6xx/TNuJOFo2nBy2R
+SV2bpL8p2D4wrsWglDUFKNhQpp5HO3D+Xonxlr0Gaf55xt8IewNDBPTNogAOOxtZ
+S6LNZ77QA+E4coc9Qou3ttO7lc9JLu58Mf8jFoNfrhTa3GK6cWtjko3q1GIGj5TO
+9CL5WzVwkocAm5hf3Da5ZjI0UZNY34MMkUcieKwSmE+ST68P1jmJzL/1FjbtJanW
+BKc7hUgOSAORT7n/ZKXdSjOx+wUzTlDj+Gkez2RwctzWdoMn12+vpG5oPKkudaHf
+JD8RJ5rIjKg3oG4BlAJcSxMo+8WWGisH+chgTAR0v8H26GXJDBxSys8Jinle4/ay
+df/ewvUqDEstn0+gmwRlQN70ueVbdpAEnk/8DROAhymmQNpJP3FZLZ8+dBlrv7Kz
+tt3WRAkx8TN0n3RY7N1DSsCPQNB19L/SclyG+bhGmDbIUon2KnnMGzNpswp2qVq0
+g0eNXBzZySFUd0ULMKdQ/Aui1wXDNIicAjq5IkC79CTHYjhJDfpcXv6KOJ3pNw0x
+8rTH6b1TECrQSVSxQoxgxYxm3LuPy/CPA0I9rDuOq9+t5dDvy5wLxfTuyI5O2V+R
+XR7rnqeuG+ulDNzh9zzX43UWfJgXdf47wioYLLuisXFlqEwm5lo=
+=JTaf
+-END PGP SIGNATURE-

Added: dev/cassandra/3.11.6/debian/cassandra_3.11.6.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/debian/cassandra_3.11.6.tar.gz
--
svn:mime-type = application/octet-stream


svn commit: r37982 - /dev/cassandra/3.11.6/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 23:01:15 2020
New Revision: 37982

Log:
staging cassandra 3.11.6

Added:
dev/cassandra/3.11.6/
dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz   (with props)
dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.asc
dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha256
dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha512
dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz   (with props)
dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.asc
dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.sha256
dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.sha512

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.asc
==
--- dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.asc (added)
+++ dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.asc Mon Feb 10 
23:01:15 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B4FkACgkQ6RM1134+
+h8vZJBAAwLUNc3dqSuEicrK2JMkNFDX+Zakj8HDCAeLpH9tv7KhZXeZO3VzYKa3X
+z+Loy32hZq2+UXbtTCcakqospL8xsGZP3RCfuGlhTN6PxSVsQJgP68+WkYSpmVJZ
+L7vmN1jEJW2gtMeMNgkqZrDYKLVl0A4PGrEHF/yxl2y+hphuI5ba7pp0ynlo2g3g
+BkAy5WGUnNGvC5ORmwQ/Bsks8JwboH5L4g5L1LRsGPbhMAtD/8ADBF3mXytOB5dR
+l36r5VE7ItfMSlXFl3bCyYeUnbWNw1zxo3a4F8mGH6bVpc0yYc8vQljDzH6O3tOp
+4R0EQUXPoDH4uEriL78zvZrJe0136KOshZoB2/RWEWAkC1hwsc1SNUTFZk/d1D1q
+sKzJMLx7ee1Dvgqf6ePh7Y8WhZ4ZvPCr9qCqOPovdS45qG5q8P2Niv8aqIOri13j
+CkOw7AOP+DnBVFBb2qXwJMLT/kFYEgDVBbBzhogF97mtA9v92lPqjXzW8ihY5E/M
+2ivQgaTlm0BF4Lxz2lTTf4AObbZaQ4lXgG1ZyiZS7GXBL9ZzZ5TOSY3wBHmqhAA6
+URc8MfafZSkhi6OGJIkMwrss1eFcofJr6hzwaaiitZWNwxXubY3i9MhuVDwgwVk5
+nQB5A9AlQ+MuhIGssQXw+VNx+VEAD/XI8Dx5nv2gfJLN++NGJPk=
+=/JcV
+-END PGP SIGNATURE-

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha256
==
--- dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha256 (added)
+++ dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha256 Mon Feb 10 
23:01:15 2020
@@ -0,0 +1 @@
+ce34edebd1b6bb35216ae97bd06d3efc338c05b273b78267556a99f85d30e45b

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha512
==
--- dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha512 (added)
+++ dev/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz.sha512 Mon Feb 10 
23:01:15 2020
@@ -0,0 +1 @@
+0e778f8fb4a050fde3ec174a9ca365e49ef437cd9e61280b6b4dcba950418a3d04a104bb41aed1add858e2acc2513cf7df4065ca5ca751dd1daf60e70adc4042

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.asc
==
--- dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.asc (added)
+++ dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.asc Mon Feb 10 
23:01:15 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B4FsACgkQ6RM1134+
+h8u0Gw//Smo0VjlZXvC7ZmZ8coMI1SO4EzEzjMzAJXa0XY7j0aGmjv4kWphQWGjj
+nT9dL5dBNyvGWDWeV10kpp7/6oBOXWHXOLkhdbZlmOLiukj2n2tVaJDsjwBi5rMo
+CtfkYbBMOxD2a/N4IcwSLWojHyLrOehrg2om2EDcHX7daxGs5/A0wUP49SVUAZ9U
+ZBqs7jxdzv8exYF7xxhr6dBumbg+HmT8s4So7effw2CqBE33ZY90SrVdBmiIcW8e
+vJOfTjcrBbD+xjvTGKzrLnJekI0L0/bBHepBg4k2AYYSQIK6EK/eDI+pEEEqysas
+glJYeAqwcbdOpKEMFp14RoHQzNd/CmQsVUnKarK2Sx5FbX6t4T3+LdWMWbIZT2bD
+oinKa53wOeg/OBJyA3BztnkPYplYx0ECnV1qr6hjIhHzTqzPGaQ0YBt6CQVRB/Vd
+PZq637lzv6l5BOOtW7htBc3E+WiUOY/Ywr9PgC0h5GAzVNTCGRi3vJSRRe2pePlh
+Yk1Y/wtnvmL87/9Jm7dKkaOUHn2Ub4SthKBuZR71BK3NrIdg/M0rxLXf9oRZNKFi
+89ON2euEz9UD0K1fMqtAwHHTN7pspNdZumlGvXBcpqHGduqDTVn+sL03s1ykxQTO
+oitUiebWRmiJEFHSbAQscpLthpfnqYbZ4RZLV/5Wk91H3iB7Wcg=
+=dPA+
+-END PGP SIGNATURE-

Added: dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.sha256
==
--- dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.sha256 (added)
+++ dev/cassandra/3.11.6/apache-cassandra-3.11.6-src.tar.gz.sha256 Mon Feb 10 
23:01:15 2020
@@ -0,0 +1 @@

[cassandra] tag 3.11.6-tentative created (now cb779ab)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to tag 3.11.6-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


  at cb779ab  (commit)
This tag includes the following new commits:

 new cb779ab  Prepare debian changelog for 3.11.6

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Prepare debian changelog for 3.11.6

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to tag 3.11.6-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit cb779ab9a631c13a245926f55320392c4468c6f0
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 23:54:06 2020 +0100

Prepare debian changelog for 3.11.6
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 14b9b78..0115a49 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-cassandra (3.11.6) UNRELEASED; urgency=medium
+cassandra (3.11.6) unstable; urgency=medium
 
   * New release
 
- -- Michael Shuler   Tue, 29 Oct 2019 16:14:42 -0500
+ -- Mick Semb Wever   Mon, 10 Feb 2020 23:54:00 +0100
 
 cassandra (3.11.5) unstable; urgency=medium
 


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch cassandra-3.0 updated (7363eae -> 89edf50)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch cassandra-3.0
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from 7363eae  Merge branch 'cassandra-2.2' into cassandra-3.0
 add 89edf50  Prepare debian changelog for 3.0.20

No new revisions were added by this update.

Summary of changes:
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch cassandra-3.11 updated (aa5f328 -> 4a914da)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from aa5f328  Merge branch 'cassandra-3.0' into cassandra-3.11
 add 89edf50  Prepare debian changelog for 3.0.20
 new 4a914da  Merge branch 'cassandra-3.0' into cassandra-3.11

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Merge branch 'cassandra-3.11' into trunk

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit 5c7b28359679fac54305ad982a05a8f47b712aeb
Merge: a838e9f 4a914da
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 23:51:39 2020 +0100

Merge branch 'cassandra-3.11' into trunk



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Merge branch 'cassandra-3.0' into cassandra-3.11

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit 4a914da37fc588cda780f2d273f14a4961eb9907
Merge: aa5f328 89edf50
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 23:51:21 2020 +0100

Merge branch 'cassandra-3.0' into cassandra-3.11



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch trunk updated (a838e9f -> 5c7b283)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from a838e9f  Merge branch 'cassandra-3.11' into trunk
 add 89edf50  Prepare debian changelog for 3.0.20
 new 4a914da  Merge branch 'cassandra-3.0' into cassandra-3.11
 new 5c7b283  Merge branch 'cassandra-3.11' into trunk

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r37981 - in /dev/cassandra/3.0.20/redhat: ./ repodata/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 22:49:41 2020
New Revision: 37981

Log:
staging cassandra rpm packages for 3.0.20

Added:
dev/cassandra/3.0.20/redhat/
dev/cassandra/3.0.20/redhat/cassandra-3.0.20-1.noarch.rpm   (with props)
dev/cassandra/3.0.20/redhat/cassandra-3.0.20-1.src.rpm   (with props)
dev/cassandra/3.0.20/redhat/cassandra-tools-3.0.20-1.noarch.rpm   (with 
props)
dev/cassandra/3.0.20/redhat/repodata/

dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz
   (with props)

dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz.asc

dev/cassandra/3.0.20/redhat/repodata/7a28cd53aede49699978e62f8b12581bc790c15bca5023090a696a26c20d-filelists.sqlite.bz2
   (with props)

dev/cassandra/3.0.20/redhat/repodata/7a28cd53aede49699978e62f8b12581bc790c15bca5023090a696a26c20d-filelists.sqlite.bz2.asc

dev/cassandra/3.0.20/redhat/repodata/90a4cab7e08e9ba1d4a3726c648056c134b07cd641de829b6429ee13bb38be99-primary.xml.gz
   (with props)

dev/cassandra/3.0.20/redhat/repodata/90a4cab7e08e9ba1d4a3726c648056c134b07cd641de829b6429ee13bb38be99-primary.xml.gz.asc

dev/cassandra/3.0.20/redhat/repodata/9183af7b39bb86342479df8c5c772f1dd86f3df96db2e9c0331fbbff3f4ff675-filelists.xml.gz
   (with props)

dev/cassandra/3.0.20/redhat/repodata/9183af7b39bb86342479df8c5c772f1dd86f3df96db2e9c0331fbbff3f4ff675-filelists.xml.gz.asc

dev/cassandra/3.0.20/redhat/repodata/da76270f5368af8a2e46f9bed52e6ee174d99c6e62cf2b5b6227fc8418935352-other.sqlite.bz2
   (with props)

dev/cassandra/3.0.20/redhat/repodata/da76270f5368af8a2e46f9bed52e6ee174d99c6e62cf2b5b6227fc8418935352-other.sqlite.bz2.asc

dev/cassandra/3.0.20/redhat/repodata/ee5e7f9ce1311fff9ca682c60c5de3197652581315e356b803d71fad92db8987-primary.sqlite.bz2
   (with props)

dev/cassandra/3.0.20/redhat/repodata/ee5e7f9ce1311fff9ca682c60c5de3197652581315e356b803d71fad92db8987-primary.sqlite.bz2.asc
dev/cassandra/3.0.20/redhat/repodata/repomd.xml
dev/cassandra/3.0.20/redhat/repodata/repomd.xml.asc

Added: dev/cassandra/3.0.20/redhat/cassandra-3.0.20-1.noarch.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/redhat/cassandra-3.0.20-1.noarch.rpm
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.0.20/redhat/cassandra-3.0.20-1.src.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/redhat/cassandra-3.0.20-1.src.rpm
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.0.20/redhat/cassandra-tools-3.0.20-1.noarch.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/redhat/cassandra-tools-3.0.20-1.noarch.rpm
--
svn:mime-type = application/octet-stream

Added: 
dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz
==
Binary file - no diff available.

Propchange: 
dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz.asc
==
--- 
dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz.asc
 (added)
+++ 
dev/cassandra/3.0.20/redhat/repodata/14951a486f79826bd570c10b0e80ea8134038d410afd7490981174da04e1f486-other.xml.gz.asc
 Mon Feb 10 22:49:41 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B3fUACgkQ6RM1134+
+h8vlRg/+LUU57v+Bc9Rc1zrMPfmcHv3UYgEntRAQRruujqrFLNkGXwKA9PLn6O+x
+OBRuMVOysr0efhzw5FdhgGw44kDQ0xj+XKYIsXrcu4bFC6ZCH+d5f2ijHNVg/p2P
+f1iqX/AU2QAXQGHYxhVdPn6BykQVRoYngV0JQqqWrzt6NgNMt4zq5jg47P/m3oo/
+GHiHX5Wjg2pIDUD/Bu0Xsl7WERfOXrP7fLmFDPFZaB4156nar6u+q7R/AHJ9ZQj5
+yaLOYTVJl+t4UtIhHhTh3Sm62WJnaa9awELaR3u4Zgt9Mmzor684VX9qhOtl9c9p
+QhLYSmwiy2Pnr/JPL/vwq47j9aVBSgkJvcJSPcvg1TMy1HF0jZUWEfrgokAHTscG
+KDeqshRhnGb7aRhe0DxYSVABVrbMsTMEzD1Ql6apH18ROUi4hLz1QKbiNZq5ew+0
+7yzNMBXqfh9Nwynzny9qA3oK3lyALt6KLO4lYJNb8nqzTOv5nFFiWQJjygzFtK5m
+zW1YWvhtyMi6YcGCEXeVPD9+/hvwaUPB6MvEr7jz+IV3JBM/LellTClJoLvgeE60

[jira] [Updated] (CASSANDRA-15563) Backport removal of OpenJDK warning log

2020-02-10 Thread Thomas Steinmaurer (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Steinmaurer updated CASSANDRA-15563:
---
Summary: Backport removal of OpenJDK warning log  (was: Backport OpenJDK 
warning log)

> Backport removal of OpenJDK warning log
> ---
>
> Key: CASSANDRA-15563
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15563
> Project: Cassandra
>  Issue Type: Task
>Reporter: Thomas Steinmaurer
>Priority: Normal
>
> As requested on Slack, creating this ticket for a backport of 
> CASSANDRA-13916, potentially to 2.2 and 3.0.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Created] (CASSANDRA-15563) Backport OpenJDK warning log

2020-02-10 Thread Thomas Steinmaurer (Jira)
Thomas Steinmaurer created CASSANDRA-15563:
--

 Summary: Backport OpenJDK warning log
 Key: CASSANDRA-15563
 URL: https://issues.apache.org/jira/browse/CASSANDRA-15563
 Project: Cassandra
  Issue Type: Task
Reporter: Thomas Steinmaurer


As requested on Slack, creating this ticket for a backport of CASSANDRA-13916, 
potentially to 2.2 and 3.0.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r37980 - in /dev/cassandra/3.0.20/debian: ./ dists/ dists/30x/ dists/30x/main/ dists/30x/main/binary-amd64/ dists/30x/main/binary-i386/ dists/30x/main/source/ pool/ pool/main/ pool/main/c/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 22:01:52 2020
New Revision: 37980

Log:
staging cassandra debian packages for 3.0.20

Added:
dev/cassandra/3.0.20/debian/
dev/cassandra/3.0.20/debian/cassandra-tools_3.0.20_all.deb   (with props)
dev/cassandra/3.0.20/debian/cassandra_3.0.20.dsc
dev/cassandra/3.0.20/debian/cassandra_3.0.20.tar.gz   (with props)
dev/cassandra/3.0.20/debian/cassandra_3.0.20_all.deb   (with props)
dev/cassandra/3.0.20/debian/cassandra_3.0.20_amd64.buildinfo
dev/cassandra/3.0.20/debian/cassandra_3.0.20_amd64.changes
dev/cassandra/3.0.20/debian/dists/
dev/cassandra/3.0.20/debian/dists/30x/
dev/cassandra/3.0.20/debian/dists/30x/InRelease
dev/cassandra/3.0.20/debian/dists/30x/Release
dev/cassandra/3.0.20/debian/dists/30x/Release.gpg
dev/cassandra/3.0.20/debian/dists/30x/main/
dev/cassandra/3.0.20/debian/dists/30x/main/binary-amd64/
dev/cassandra/3.0.20/debian/dists/30x/main/binary-amd64/Packages
dev/cassandra/3.0.20/debian/dists/30x/main/binary-amd64/Packages.gz   (with 
props)
dev/cassandra/3.0.20/debian/dists/30x/main/binary-amd64/Release
dev/cassandra/3.0.20/debian/dists/30x/main/binary-i386/
dev/cassandra/3.0.20/debian/dists/30x/main/binary-i386/Packages
dev/cassandra/3.0.20/debian/dists/30x/main/binary-i386/Packages.gz   (with 
props)
dev/cassandra/3.0.20/debian/dists/30x/main/binary-i386/Release
dev/cassandra/3.0.20/debian/dists/30x/main/source/
dev/cassandra/3.0.20/debian/dists/30x/main/source/Release
dev/cassandra/3.0.20/debian/dists/30x/main/source/Sources.gz   (with props)
dev/cassandra/3.0.20/debian/pool/
dev/cassandra/3.0.20/debian/pool/main/
dev/cassandra/3.0.20/debian/pool/main/c/
dev/cassandra/3.0.20/debian/pool/main/c/cassandra/

dev/cassandra/3.0.20/debian/pool/main/c/cassandra/cassandra-tools_3.0.20_all.deb
   (with props)
dev/cassandra/3.0.20/debian/pool/main/c/cassandra/cassandra_3.0.20.dsc
dev/cassandra/3.0.20/debian/pool/main/c/cassandra/cassandra_3.0.20.tar.gz   
(with props)
dev/cassandra/3.0.20/debian/pool/main/c/cassandra/cassandra_3.0.20_all.deb  
 (with props)

Added: dev/cassandra/3.0.20/debian/cassandra-tools_3.0.20_all.deb
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/debian/cassandra-tools_3.0.20_all.deb
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.0.20/debian/cassandra_3.0.20.dsc
==
--- dev/cassandra/3.0.20/debian/cassandra_3.0.20.dsc (added)
+++ dev/cassandra/3.0.20/debian/cassandra_3.0.20.dsc Mon Feb 10 22:01:52 2020
@@ -0,0 +1,41 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA512
+
+Format: 1.0
+Source: cassandra
+Binary: cassandra, cassandra-tools
+Architecture: all
+Version: 3.0.20
+Maintainer: Eric Evans 
+Uploaders: Sylvain Lebresne 
+Homepage: http://cassandra.apache.org
+Standards-Version: 3.8.3
+Vcs-Browser: https://git-wip-us.apache.org/repos/asf?p=cassandra.git
+Vcs-Git: http://git-wip-us.apache.org/repos/asf/cassandra.git
+Build-Depends: debhelper (>= 5), openjdk-8-jdk | java8-jdk, ant (>= 1.9), 
ant-optional (>= 1.9), dh-python, python-dev (>= 2.7), dpatch, bash-completion
+Package-List:
+ cassandra deb misc extra arch=all
+ cassandra-tools deb misc extra arch=all
+Checksums-Sha1:
+ e8993f05fcc4a8ee69021fa777f6f5cc0a63555e 27786544 cassandra_3.0.20.tar.gz
+Checksums-Sha256:
+ 06b07792355f1ddd6923b5c685a9fbd86c45b4566bd4f8714e26def56b5af313 27786544 
cassandra_3.0.20.tar.gz
+Files:
+ 57c24153054f6cdfbecebf9cfd4b9d8a 27786544 cassandra_3.0.20.tar.gz
+
+-BEGIN PGP SIGNATURE-
+
+iQIzBAEBCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B0rkACgkQ6RM1134+
+h8ufgA/+MPRSyQ/kb8agEBHE9HzB217XB21BCYJWrcC43OPJZlOdBT1CHZKTUAdj
++pVOboEqKEJboDiFoVcz8DxvWMV8PGh+qsvjus2Z2pk0XthsVGo/iZoC8XWvIp90
+/WfrvkmRZjPNHZPDoyggh7Pluh3EzQIooOrWPURvhrmGeQvepu+hUV5uqtVs7c6I
+gg7zt+WAJWkgZoMifyOodO+Ya9WIVLazn5E4DdECJ7fWUrdP9mg2ip9+BHsBijEG
+IfHKVFIDVYU0isGruOjO9GjfS9xMaHIhc/AkwdxlmbUZ9gf47v9OOUTM9jdLXVp3
++hiy9XSDVXZhYV+eycOMoKY1V4iACok/4hFit0Cwj5IpeGFSGecnu3LobOqy75Zx
+m2WKxeIWtXq7kwAcOzvMr3uD8eFz+eAlKqPon+iHxr148yDwShWqkwR59RtcbBJ9
+AQB7bqRd2i79+eZmdJ/xQO8t617+xBxqcQpgkSU6VYjefOVMvBHch2UHfDzd2wqB
+TU/gSU3pTG8qRTmrmngf0kt91kaxTpPHagGgX8x4iH0+gZ/jVFW24MLq21mjr6Ik
+SYBXr2ZqfHg4ubMQKVh56+94M2HOg20jaSmexnMAHpo0ytg5lnrP0SQFPPdoAmW1
+1aC+ZWmOhk7wKSQ7YrknKnI2cYTpOZnY3AIqCDllLsczE52CCXA=
+=rLyF
+-END PGP SIGNATURE-

Added: dev/cassandra/3.0.20/debian/cassandra_3.0.20.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/debian/cassandra_3.0.20.tar.gz
--
svn:mime-type = application/octet-stream

Added: 

svn commit: r37979 - /dev/cassandra/3.0.20/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 22:00:11 2020
New Revision: 37979

Log:
staging cassandra 3.0.20

Added:
dev/cassandra/3.0.20/
dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz   (with props)
dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.asc
dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha256
dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha512
dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz   (with props)
dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.asc
dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.sha256
dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.sha512

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.asc
==
--- dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.asc (added)
+++ dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.asc Mon Feb 10 
22:00:11 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B0iIACgkQ6RM1134+
+h8vophAAruATmtkupmj4BnR9QUPsbfgjws8thonmBvNXvdAp/0jsg4He3sBKpKd+
+iZvlfYz2buGMqqYJ/piy6LaMB72XxfjV9prbTzDjk0MrYvdrHe2uGVc7xeR8ooyl
+yI4IwB4wmegseFn7JEIZIJxR+WDzr2gnUmC4YUWbWEH2ywVPRBJ40WhanA7+yXZf
+MBFN0Q0DvoeIw7trxt2Rt7vg8+o3uvoUq3DMH7NEvaBPZCCgSCXjcGsCuwSGqLFX
+GUklO0ThHaoUzKMR0TASxHNhKqYn4av1hysF2V+csfb0zo4h3zd4ymW9L0jhRpGj
+cWTnpo1hfoE9m5L6Ov8aS9VXsNcTGypuXajawcssk3mmJTXPzRXXpg8kAXnPknIj
+wnjRx9y681B+xpjKacjqBZ4snDtMUYFcVHu3vBs3ahru/8E+RyWCK43ZOrHyVRVG
+r4pwmruCPvl67AyrLYgupY4ZqPEQsw1llFJ7c1pBUSPOeIhjhvdO5HiSdt6hVP0B
+OnqEfymK+sB/AZWX1uUy/BEO6fDYiPfkzyCBHp3RpLLCFW7riA3ZI7qPuNg2/zZ5
+2IRNuGPOimZIW+2mkhfmgJAQvfmkZ4uOKxKtk10OAhi5F/zoBsVRXVitMKmz387m
+47LNCeGfD3MQ87o2uttb5czfNvKQzjsHBWuEAD1koLgqm0WXkCk=
+=g8Fi
+-END PGP SIGNATURE-

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha256
==
--- dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha256 (added)
+++ dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha256 Mon Feb 10 
22:00:11 2020
@@ -0,0 +1 @@
+1601e1f794b2e0e555c59a995eb5c3b35574455f633250899e5a998e2fc6f87d

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha512
==
--- dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha512 (added)
+++ dev/cassandra/3.0.20/apache-cassandra-3.0.20-bin.tar.gz.sha512 Mon Feb 10 
22:00:11 2020
@@ -0,0 +1 @@
+1a96db1f26cb31e3d04cb67791d4055515b0ea434e0fa2fb2445d44a180c71e7ca5c6436c27059e44b398f623c9623a8fa67d60a084219f0938f9528cd0c1634

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.asc
==
--- dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.asc (added)
+++ dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.asc Mon Feb 10 
22:00:11 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5B0iQACgkQ6RM1134+
+h8shHQ//RMVmNby1Ej1luCS/FzWT4uuhToy2xjFcS9Nt19U6DL8PaNRubd37ByEv
+utoKMGH2+HBTmX9UYWLvc2leLq2qE+2WFkQHl3nc5Wf3+q39jb+o4Q8vwHA1HpEX
+u59XJbu6jhCOTK5UIZSiqwYdRZrJFL9W5tKPdpAhiBXUOS55ExifyRPlvyTfsXgq
+lkizUD+lz28C0h1hyhq+I2JjPNRpEhre5aCmlvfYAoSvi0xd6pGTPia2IHaaXb/S
+ijMrn3cQxezFuCR5yBPDxTTiHxx2E3PLimikEsrBVKbRo2hStFHWx7y5VxcIrpHP
+DuKysnlzT30boNTZ//j7K/CN4VXvdA0SyH1Tt1Ke0gWTma/tJ9D0ug9YwQyS0uwA
+0bLQNK29jQN7X9TllhPJrIJ36cE84yPia9h6zoRndj/yAX+DT8RVSY9MUcqLKGRH
+eoiURSNzfgXjy7vgicZS6OUTgGvuwk7HDV8BmbJSZln1+RJsimebKh2uCGMD1ZaY
+fqgptTo2X0r2XynaEJRbFWrCAX3T10Kh7tfPZy3eohPMWt2A0TyAtYHcx0UCsNLY
+zOMCxPqPMa+GIBUWuIDRm4uDP1Be9arvzhLLquCiifMkV8FJeFezpVkEl1HhFTk8
+Qf5fBCy1J7MimvhRQ/5RsKWs7TqQ9heyK7eh8/2p84MsA+j3ZWc=
+=UppO
+-END PGP SIGNATURE-

Added: dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.sha256
==
--- dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.sha256 (added)
+++ dev/cassandra/3.0.20/apache-cassandra-3.0.20-src.tar.gz.sha256 Mon Feb 10 
22:00:11 2020
@@ -0,0 +1 @@

[jira] [Commented] (CASSANDRA-15527) Fix flakey test - org.apache.cassandra.index.sasi.SASIIndexTest testCrossSSTableQueries

2020-02-10 Thread Ekaterina Dimitrova (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033975#comment-17033975
 ] 

Ekaterina Dimitrova commented on CASSANDRA-15527:
-

[~dcapwell] As it looks like this one is dependent on  CASSANDRA-15526

(You reproduce it in case the other one fails and for me only the other one 
fails, only on Ubuntu VM so ),

I am gonna put this one for now as blocked by the other one until we come up 
with solution there. Then we can check whether our assumption for dependency is 
valid. About CASSANDRA-15526, I didn't find any other issue than the one 
mentioned already by [~jrwest]

As per the Java doc:

"Beware that, unlike in most collections, the {{size}} method is _not_ a 
constant-time operation. Because of the asynchronous nature of these sets, 
determining the current number of elements requires a traversal of the 
elements, and so may report inaccurate results if this collection is modified 
during traversal."

Probably we will need to find a more reliable test. TBD

 

 

> Fix flakey test - org.apache.cassandra.index.sasi.SASIIndexTest 
> testCrossSSTableQueries
> ---
>
> Key: CASSANDRA-15527
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15527
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Ekaterina Dimitrova
>Priority: Normal
> Fix For: 4.0-alpha
>
> Attachments: CASSANDRA-15527.txt
>
>
> {code}
> junit.framework.AssertionFailedError: [key13, key2977, key2978, key2979, 
> key2980, key2982, key2983, key2984, key2985, key6]
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.testCrossSSTableQueries(SASIIndexTest.java:340)
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.testCrossSSTableQueries(SASIIndexTest.java:286)
>   at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native 
> Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] tag 3.0.20-tentative created (now 89edf50)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to tag 3.0.20-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


  at 89edf50  (commit)
This tag includes the following new commits:

 new 89edf50  Prepare debian changelog for 3.0.20

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Prepare debian changelog for 3.0.20

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to tag 3.0.20-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit 89edf5073ba4181dd2f70294cdbcb47f5a45c82e
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 22:53:37 2020 +0100

Prepare debian changelog for 3.0.20
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index cc3dcff..2ca4aca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-cassandra (3.0.20) UNRELEASED; urgency=medium
+cassandra (3.0.20) unstable; urgency=medium
 
   * New release
 
- -- Michael Shuler   Tue, 29 Oct 2019 16:10:49 -0500
+ -- Mick Semb Wever   Mon, 10 Feb 2020 22:53:30 +0100
 
 cassandra (3.0.19) unstable; urgency=medium
 


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] tag 3.0.20-tentative deleted (was 56dc3bf)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to tag 3.0.20-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


*** WARNING: tag 3.0.20-tentative was deleted! ***

 was 56dc3bf  Prepare debian changelog for 3.0.20

This change permanently discards the following revisions:

 discard 56dc3bf  Prepare debian changelog for 3.0.20


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Prepare debian changelog for 3.0.20

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to tag 3.0.20-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit 56dc3bf399783c75a6a39d18162405047d590a47
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 22:42:37 2020 +0100

Prepare debian changelog for 3.0.20
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index cc3dcff..e7b2f48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-cassandra (3.0.20) UNRELEASED; urgency=medium
+cassandra (3.0.20) unstable; urgency=medium
 
   * New release
 
- -- Michael Shuler   Tue, 29 Oct 2019 16:10:49 -0500
+ -- Mick Semb Wever   Mon, 10 Feb 2020 22:42:09 +0100
 
 cassandra (3.0.19) unstable; urgency=medium
 


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] tag 3.0.20-tentative created (now 56dc3bf)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to tag 3.0.20-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


  at 56dc3bf  (commit)
This tag includes the following new commits:

 new 56dc3bf  Prepare debian changelog for 3.0.20

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15526) Fix flakey test - org.apache.cassandra.index.sasi.SASIIndexTest testConcurrentMemtableReadsAndWrites

2020-02-10 Thread Ekaterina Dimitrova (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15526?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033966#comment-17033966
 ] 

Ekaterina Dimitrova commented on CASSANDRA-15526:
-

[~jrwest] thanks!

As mentioned on Slack, I spent my afternoon to understand the codebase. 

I don't see any other explanation for this flakiness than the one provided in 
the java doc for the size function (as you also pointed out). Why we only see 
it in java 11, that I am not sure about. Maybe we were just lucky before as 
there is the same note for the size method for Java 8.

So this makes me think the efforts here should be to figure out a more stable 
test which could assure the needed results with higher certainty. Let me know 
if you agree with me here or if you have a different vision. 

 

> Fix flakey test - org.apache.cassandra.index.sasi.SASIIndexTest 
> testConcurrentMemtableReadsAndWrites
> 
>
> Key: CASSANDRA-15526
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15526
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.index.sasi.utils.RangeIterator.(RangeIterator.java:46)
>   at 
> org.apache.cassandra.index.sasi.memory.KeyRangeIterator.(KeyRangeIterator.java:42)
>   at 
> org.apache.cassandra.index.sasi.memory.TrieMemIndex$ConcurrentTrie.search(TrieMemIndex.java:150)
>   at 
> org.apache.cassandra.index.sasi.memory.TrieMemIndex.search(TrieMemIndex.java:102)
>   at 
> org.apache.cassandra.index.sasi.memory.IndexMemtable.search(IndexMemtable.java:70)
>   at 
> org.apache.cassandra.index.sasi.conf.ColumnIndex.searchMemtable(ColumnIndex.java:138)
>   at org.apache.cassandra.index.sasi.TermIterator.build(TermIterator.java:91)
>   at 
> org.apache.cassandra.index.sasi.plan.QueryController.getIndexes(QueryController.java:145)
>   at 
> org.apache.cassandra.index.sasi.plan.Operation$Builder.complete(Operation.java:434)
>   at org.apache.cassandra.index.sasi.plan.QueryPlan.analyze(QueryPlan.java:57)
>   at org.apache.cassandra.index.sasi.plan.QueryPlan.execute(QueryPlan.java:68)
>   at 
> org.apache.cassandra.index.sasi.SASIIndex.lambda$searcherFor$2(SASIIndex.java:301)
>   at org.apache.cassandra.db.ReadCommand.executeLocally(ReadCommand.java:455)
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.getIndexed(SASIIndexTest.java:2576)
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.getPaged(SASIIndexTest.java:2537)
>   at 
> org.apache.cassandra.index.sasi.SASIIndexTest.testConcurrentMemtableReadsAndWrites(SASIIndexTest.java:1108)
>   at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native 
> Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch cassandra-2.2 updated (9705d82 -> c4d9e9c)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch cassandra-2.2
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from 9705d82  Add an ability to run bootstrap / streaming tests with in-JVM 
dtest framework.
 add c4d9e9c  Prepare debian changelog for 2.2.16

No new revisions were added by this update.

Summary of changes:
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Merge branch 'cassandra-2.2' into cassandra-3.0

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch cassandra-3.0
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit 7363eae1fd7f5a4f12745086b6c25bd445192732
Merge: 3320f08 c4d9e9c
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 21:23:24 2020 +0100

Merge branch 'cassandra-2.2' into cassandra-3.0



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch cassandra-3.11 updated (c09e709 -> aa5f328)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from c09e709  Merge branch 'cassandra-3.0' into cassandra-3.11
 add c4d9e9c  Prepare debian changelog for 2.2.16
 new 7363eae  Merge branch 'cassandra-2.2' into cassandra-3.0
 new aa5f328  Merge branch 'cassandra-3.0' into cassandra-3.11

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch trunk updated (6aa68ef -> a838e9f)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from 6aa68ef  ninja-fix: correct debian/changelog version, author, 
timestamp (CASSANDRA-15541)
 add c4d9e9c  Prepare debian changelog for 2.2.16
 new 7363eae  Merge branch 'cassandra-2.2' into cassandra-3.0
 new aa5f328  Merge branch 'cassandra-3.0' into cassandra-3.11
 new a838e9f  Merge branch 'cassandra-3.11' into trunk

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Merge branch 'cassandra-3.11' into trunk

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit a838e9f996082c90e86d85002139e29d542ca392
Merge: 6aa68ef aa5f328
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 21:26:22 2020 +0100

Merge branch 'cassandra-3.11' into trunk



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] branch cassandra-3.0 updated (3320f08 -> 7363eae)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to branch cassandra-3.0
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


from 3320f08  Merge branch 'cassandra-2.2' into cassandra-3.0
 add c4d9e9c  Prepare debian changelog for 2.2.16
 new 7363eae  Merge branch 'cassandra-2.2' into cassandra-3.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] 01/01: Merge branch 'cassandra-3.0' into cassandra-3.11

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit aa5f328cf8fb2d5620aeda125167b4d5eecff004
Merge: c09e709 7363eae
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 21:24:14 2020 +0100

Merge branch 'cassandra-3.0' into cassandra-3.11



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15562) Node distribution in us-east-1 is uneven

2020-02-10 Thread Brandon Williams (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15562?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brandon Williams updated CASSANDRA-15562:
-
Resolution: Invalid
Status: Resolved  (was: Triage Needed)

This is not a bug, but a product of your configuration or usage pattern.  I 
recommended taking this to the user list or the #cassandra channel on ASF slack.

> Node distribution in us-east-1 is uneven
> 
>
> Key: CASSANDRA-15562
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15562
> Project: Cassandra
>  Issue Type: Bug
>Reporter: Reeta
>Priority: Normal
> Attachments: system.log
>
>
> nodetool status on 10.0.88.138 node gave pretty inconsistent distribution in 
> us-east-1:-
> [user@ip-10-0-88-138 cassandra]$ nodetool status
> Datacenter: us-east
> ===
> Status=Up/Down
> |/ State=Normal/Leaving/Joining/Moving
> -- Address   Load   Tokens   Owns  Host ID   Rack
> UN 10.0.93.177 17.22 TB 256 ?   bfe1d84b-eac9-4132-afca-35fde09377c4 1d
> UN 10.0.91.41  1.07 TB  256 ?   bff1158e-985d-4ace-a152-1cd5747d58ca 1a
> UN 10.0.91.90  2.35 TB  256 ?   5230d506-3675-47e9-a8a6-8a59ec94c303 1a
> UN 10.0.88.138 1.59 TB  256 ?   ff21fbac-ae71-48d8-8d78-e638b98dd3ed 1a
> UN 10.0.90.186 877.51 GB 256 ?   ef58c52b-73fe-406e-adfd-09585b5da5ed 1a
> UN 10.0.93.123 5.6 TB  256 ?   d29dbd92-174d-47bf-aeb4-5376aa05e352 1d
> UN 10.0.89.60  1.08 TB  256 ?   ae8e25b5-e336-4bbc-853c-54574cd0814f 1a
> UN 10.0.91.237 1.25 TB  256 ?   085234df-6b46-4c9b-a512-9db034271458 1a
> UN 10.0.92.62  5.5 TB  256 ?   3b02ad6f-ed92-4fd6-8725-b2105f26ead3 1d
> Datacenter: us-west-2
> =
> Status=Up/Down
> |/ State=Normal/Leaving/Joining/Moving
> -- Address   Load   Tokens   Owns  Host ID   Rack
> UN 10.3.192.211 1.55 TB  256 ?   d6e47a22-e479-4df5-b1d7-a9c25a93d0e6 2a
> UN 10.3.194.246 1.56 TB  256 ?   343a8828-1d94-4845-85bd-eaa3fde6115c 2a
> UN 10.3.193.139 1.58 TB  256 ?   469d4a8d-a88d-42d2-a332-2dac1b03b7e7 2a
> UN 10.3.197.153 1.55 TB  256 ?   6b2db4b7-d3df-4a82-93ec-a8913c741bcd 2c
> UN 10.3.197.47 1.41 TB  256 ?   c4636cb0-4419-4900-b5c2-2a62767b1513 2c
> UN 10.3.198.15 1.52 TB  256 ?   4fec0a33-16bf-420b-adda-2807290de2f1 2c
> UN 10.3.192.127 1.58 TB  256 ?   837e8256-7d29-4db4-b746-0a7aed8409a4 2a
> UN 10.3.196.190 1.63 TB  256 ?   99580b60-b329-4912-89c0-677be342c3af 2c
> df -h on the node:-
> Filesystem   Size Used Avail Use% Mounted on
> devtmpfs 30G  68K  30G  1% /dev
> tmpfs  30G   0  30G  0% /dev/shm
> /dev/xvda1   126G 6.4G 120G  6% /
> /dev/nvme0n1  1.8T 786G 868G 48% /var/cassandra/data-0



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Created] (CASSANDRA-15562) Node distribution in us-east-1 is uneven

2020-02-10 Thread Reeta (Jira)
Reeta created CASSANDRA-15562:
-

 Summary: Node distribution in us-east-1 is uneven
 Key: CASSANDRA-15562
 URL: https://issues.apache.org/jira/browse/CASSANDRA-15562
 Project: Cassandra
  Issue Type: Bug
Reporter: Reeta
 Attachments: system.log

nodetool status on 10.0.88.138 node gave pretty inconsistent distribution in 
us-east-1:-

[user@ip-10-0-88-138 cassandra]$ nodetool status
Datacenter: us-east
===
Status=Up/Down
|/ State=Normal/Leaving/Joining/Moving
-- Address   Load   Tokens   Owns  Host ID   Rack
UN 10.0.93.177 17.22 TB 256 ?   bfe1d84b-eac9-4132-afca-35fde09377c4 1d
UN 10.0.91.41  1.07 TB  256 ?   bff1158e-985d-4ace-a152-1cd5747d58ca 1a
UN 10.0.91.90  2.35 TB  256 ?   5230d506-3675-47e9-a8a6-8a59ec94c303 1a
UN 10.0.88.138 1.59 TB  256 ?   ff21fbac-ae71-48d8-8d78-e638b98dd3ed 1a
UN 10.0.90.186 877.51 GB 256 ?   ef58c52b-73fe-406e-adfd-09585b5da5ed 1a
UN 10.0.93.123 5.6 TB  256 ?   d29dbd92-174d-47bf-aeb4-5376aa05e352 1d
UN 10.0.89.60  1.08 TB  256 ?   ae8e25b5-e336-4bbc-853c-54574cd0814f 1a
UN 10.0.91.237 1.25 TB  256 ?   085234df-6b46-4c9b-a512-9db034271458 1a
UN 10.0.92.62  5.5 TB  256 ?   3b02ad6f-ed92-4fd6-8725-b2105f26ead3 1d
Datacenter: us-west-2
=
Status=Up/Down
|/ State=Normal/Leaving/Joining/Moving
-- Address   Load   Tokens   Owns  Host ID   Rack
UN 10.3.192.211 1.55 TB  256 ?   d6e47a22-e479-4df5-b1d7-a9c25a93d0e6 2a
UN 10.3.194.246 1.56 TB  256 ?   343a8828-1d94-4845-85bd-eaa3fde6115c 2a
UN 10.3.193.139 1.58 TB  256 ?   469d4a8d-a88d-42d2-a332-2dac1b03b7e7 2a
UN 10.3.197.153 1.55 TB  256 ?   6b2db4b7-d3df-4a82-93ec-a8913c741bcd 2c
UN 10.3.197.47 1.41 TB  256 ?   c4636cb0-4419-4900-b5c2-2a62767b1513 2c
UN 10.3.198.15 1.52 TB  256 ?   4fec0a33-16bf-420b-adda-2807290de2f1 2c
UN 10.3.192.127 1.58 TB  256 ?   837e8256-7d29-4db4-b746-0a7aed8409a4 2a
UN 10.3.196.190 1.63 TB  256 ?   99580b60-b329-4912-89c0-677be342c3af 2c


df -h on the node:-
Filesystem   Size Used Avail Use% Mounted on
devtmpfs 30G  68K  30G  1% /dev
tmpfs  30G   0  30G  0% /dev/shm
/dev/xvda1   126G 6.4G 120G  6% /
/dev/nvme0n1  1.8T 786G 868G 48% /var/cassandra/data-0



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Assigned] (CASSANDRA-15550) Fix flaky test org.apache.cassandra.streaming.StreamTransferTaskTest testFailSessionDuringTransferShouldNotReleaseReferences

2020-02-10 Thread Brandon Williams (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brandon Williams reassigned CASSANDRA-15550:


Assignee: Brandon Williams

> Fix flaky test org.apache.cassandra.streaming.StreamTransferTaskTest 
> testFailSessionDuringTransferShouldNotReleaseReferences
> 
>
> Key: CASSANDRA-15550
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15550
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Brandon Williams
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> {code}
> junit.framework.AssertionFailedError: expected:<0> but was:<1>
>   at 
> org.apache.cassandra.streaming.StreamTransferTaskTest.testFailSessionDuringTransferShouldNotReleaseReferences(StreamTransferTaskTest.java:181)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> {code}
> Failure was on java 11



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r37970 - /dev/cassandra/2.2.16/debian/db/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 17:44:25 2020
New Revision: 37970

Log:
remove Cassandra 2.2.16 staging debian db folder (doesn't need to be stage)

Removed:
dev/cassandra/2.2.16/debian/db/


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread David Capwell (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033773#comment-17033773
 ] 

David Capwell commented on CASSANDRA-15558:
---

+1

Do wish we could control time more though.

> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread David Capwell (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

David Capwell updated CASSANDRA-15558:
--
Reviewers: Brandon Williams, David Capwell  (was: Brandon Williams)

> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15399) Add ability to track state in repair

2020-02-10 Thread David Capwell (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033754#comment-17033754
 ] 

David Capwell commented on CASSANDRA-15399:
---

Ok starting back up on this.  I isolated the tests out (and added tests I 
forgot to add to add back to FailingRepairTest) to show a few issues.

[GitHub|https://github.com/dcapwell/cassandra/tree/repairCoordinatorErrorHandling]

There are 3 kinds of errors called out in the test (there are other known 
issues I am not clear how to replicate in dtest yet): missing JMX events, JMX 
consistency, and failure to terminate.

Missing JMX can cause nodetool to discover termination slowly (RepairRunner 
blocks on a conditional variable which signals when COMPLETE is sent, if not 
sent it needs to timeout then poll for status); if this happens nodetool will 
be blocked for a worse case of 5 minutes before detecting repair has completed.

JMX consistency is that a few code paths send different messages than majority 
of other code paths, this can cause confusion while reading the logs.  A simple 
example is most errors COMPLETE with message "finished with error" but in a 
small set of cases they have "Repair command #2 finished in 0 seconds" (this is 
the messaged used for successful repairs, so reading this implies repair was 
success).

Lastly is failure to terminate.  There are two main root causes for these; 
coordinator relies on "fire and forget" and messages can be dropped.  "Fire and 
forget" ignores failure messages (when other node rejects the message), and 
messages can get dropped which means coordinator waits for something that will 
never retry.

> Add ability to track state in repair
> 
>
> Key: CASSANDRA-15399
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15399
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Consistency/Repair
>Reporter: David Capwell
>Assignee: David Capwell
>Priority: Normal
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To enhance the visibility in repair, we should expose internal state via 
> virtual tables; the state should include coordinator as well as participant 
> state (validation, sync, etc.)
> I propose the following tables:
> repairs - high level summary of the global state of repair; this should be 
> called on the coordinator.
> {code:sql}
> CREATE TABLE repairs (
>   id uuid,
>   keyspace_name text,
>   table_names frozen>,
>   ranges frozen>,
>   coordinator text,
>   participants frozen>,
>   state text,
>   progress_percentage float,
>   last_updated_at_millis bigint,
>   duration_micro bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id) )
> )
> {code}
> repair_tasks - represents RepairJob and participants state.  This will show 
> if validations are running on participants and the progress they are making; 
> this should be called on the coordinator.
> {code:sql}
> CREATE TABLE repair_tasks (
>   id uuid,
>   session_id uuid,
>   keyspace_name text,
>   table_name text,
>   ranges frozen>,
>   coordinator text,
>   participant text,
>   state text,
>   state_description text,
>   progress_percentage float, -- between 0.0 and 100.0
>   last_updated_at_millis bigint,
>   duration_micro bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id), session_id, table_name, participant )
> )
> {code}
> repair_validations - shows the state of the validation task and updated 
> periodically while validation is running; this should be called on the 
> participants.
> {code:sql}
> CREATE TABLE repair_validations (
>   id uuid,
>   session_id uuid,
>   ranges frozen>,
>   keyspace_name text,
>   table_name text,
>   initiator text,
>   state text,
>   progress_percentage float,
>   queue_duration_ms bigint,
>   runtime_duration_ms bigint,
>   total_duration_ms bigint,
>   estimated_partitions bigint,
>   partitions_processed bigint,
>   estimated_total_bytes bigint,
>   failure_cause text,
>   PRIMARY KEY ( (id), session_id, table_name )
> )
> {code}
> The main reason for exposing virtual tables rather than exposing through 
> durable tables is to make sure what is exposed is accurate.  In cases of 
> write failures or node failures, the durable tables could become in-accurate 
> and could add edge cases where the repair is not running but the tables say 
> it is; by relying on repair's internal in-memory bookkeeping, these problems 
> go away.
> This jira does not try to solve the following:
> 1) repair resiliency - there are edge cases where repair hits an error and 
> runs forever (at least from nodetool's perspective).
> 2) repair stream tracking - I have not learned the streaming side yet and 
> what I see is multiple implementations exist, so seems like high scope.  My 
> hope is to punt from this jira and tackle 

[jira] [Commented] (CASSANDRA-14788) Add test coverage workflows to CircleCI config

2020-02-10 Thread Jon Meredith (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-14788?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033752#comment-17033752
 ] 

Jon Meredith commented on CASSANDRA-14788:
--

This needs to be reworked, I'll close the existing PRs.  I think it'll be 
possible to just use CircleCI variables to update the ant commands with the 
Jacoco magic needed but need to take a closer look. I'm still hoping to get to 
this, but it's unlikely to be this week.

> Add test coverage workflows to CircleCI config
> --
>
> Key: CASSANDRA-14788
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14788
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Build
>Reporter: Jon Meredith
>Assignee: Jon Meredith
>Priority: Low
>  Labels: pull-request-available
> Fix For: 4.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> To support 4.0 testing efforts it's helpful to know how much of the code is 
> being exercised by unit tests and dtests.
> Add support for running the unit tests and dtests instrumented for test 
> coverage on CircleCI and then combine the results of all tests (unit, dtest 
> with vnodes, dtest without vnodes) into a single coverage report.
> All of the hard work of getting JaCoCo to work with unit tests and dtests has 
> already been done, it just needs wiring up.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15271) CASSANDRA-13426 changed the behavior of "CLUSTERING ORDER" on "CREATE TABLE"

2020-02-10 Thread Ekaterina Dimitrova (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ekaterina Dimitrova updated CASSANDRA-15271:

 Bug Category: Parent values: Correctness(12982)
   Complexity: Normal
Discovered By: User Report
 Severity: Low
   Status: Open  (was: Triage Needed)

> CASSANDRA-13426 changed the behavior of "CLUSTERING ORDER" on "CREATE TABLE"
> 
>
> Key: CASSANDRA-15271
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15271
> Project: Cassandra
>  Issue Type: Bug
>  Components: CQL/Syntax
>Reporter: Jeremiah Jordan
>Assignee: Ekaterina Dimitrova
>Priority: Normal
> Fix For: 4.0
>
>
> CASSANDRA-13426 changed the behavior of "CLUSTERING ORDER" on "CREATE TABLE", 
> it now complains if you don't specify all the columns.
> It was nice that previously you could just specify to make the first 
> clustering DESC and leave the rest ASC without needing to specify them.  Also 
> it would be nice I think to avoid breaking changes to the CREATE TABLE syntax.
> We should either update NEWS.txt to call out the breaking change there, or 
> update the new code to be able to default the columns which were not 
> mentioned.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14788) Add test coverage workflows to CircleCI config

2020-02-10 Thread Brandon Williams (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14788?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brandon Williams updated CASSANDRA-14788:
-
Status: Open  (was: Patch Available)

> Add test coverage workflows to CircleCI config
> --
>
> Key: CASSANDRA-14788
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14788
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Build
>Reporter: Jon Meredith
>Assignee: Jon Meredith
>Priority: Low
>  Labels: pull-request-available
> Fix For: 4.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> To support 4.0 testing efforts it's helpful to know how much of the code is 
> being exercised by unit tests and dtests.
> Add support for running the unit tests and dtests instrumented for test 
> coverage on CircleCI and then combine the results of all tests (unit, dtest 
> with vnodes, dtest without vnodes) into a single coverage report.
> All of the hard work of getting JaCoCo to work with unit tests and dtests has 
> already been done, it just needs wiring up.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread Brandon Williams (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brandon Williams updated CASSANDRA-15558:
-
Status: Ready to Commit  (was: Review In Progress)

> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread Brandon Williams (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033690#comment-17033690
 ] 

Brandon Williams commented on CASSANDRA-15558:
--

+1

> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15273) cassandra does not start with new systemd version

2020-02-10 Thread Jira


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033660#comment-17033660
 ] 

Jürgen Albersdorfer commented on CASSANDRA-15273:
-

As a followup to [~musinsky] and as an Answer for [~acerna], I fixed both 
{{start}} and {{stop}} as following:
{noformat}
--- /etc/rc.d/init.d/cassandra.old   2020-02-10 15:23:38.852120933 +0100
+++ /etc/rc.d/init.d/cassandra.new   2020-02-10 15:23:10.610076622 +0100
@@ -71,7 +71,9 @@
chown -R cassandra:cassandra "$(dirname "$log_file")"
 [ -d `dirname "$pid_file"` ] || \
 install -m 755 -o $CASSANDRA_OWNR -g $CASSANDRA_OWNR -d `dirname 
$pid_file`
-su $CASSANDRA_OWNR -c "$CASSANDRA_PROG -p $pid_file" > $log_file 2>&1
+# su $CASSANDRA_OWNR -c "$CASSANDRA_PROG -p $pid_file" > $log_file 2>&1
+runuser -u $CASSANDRA_OWNR -- $CASSANDRA_PROG -p $pid_file > $log_file 
2>&1
+chown root.root $pid_file
 retval=$?
 [ $retval -eq 0 ] && touch $lock_file
 echo "OK"
@@ -79,7 +81,8 @@
 stop)
 # Cassandra shutdown
 echo -n "Shutdown Cassandra: "
-su $CASSANDRA_OWNR -c "kill `cat $pid_file`"
+# su $CASSANDRA_OWNR -c "kill `cat $pid_file`"
+runuser -u $CASSANDRA_OWNR -- kill `cat $pid_file`
 retval=$?
 [ $retval -eq 0 ] && rm -f $lock_file
 for t in `seq 40`; do
{noformat}

> cassandra does not start with new systemd version
> -
>
> Key: CASSANDRA-15273
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15273
> Project: Cassandra
>  Issue Type: Bug
>Reporter: Aleksandr Yatskin
>Priority: Urgent
>
> After update systemd with  fixed vulnerability 
> https://access.redhat.com/security/cve/cve-2018-16888, the cassandra service 
> does not start correctly.
> Environment: RHEL 7, systemd-219-67.el7_7.1, cassandra-3.11.4-1 
> (https://www.apache.org/dist/cassandra/redhat/311x/cassandra-3.11.4-1.noarch.rpm)
> ---
> systemctl status cassandra
> ● cassandra.service - LSB: distributed storage system for structured data
>  Loaded: loaded (/etc/rc.d/init.d/cassandra; bad; vendor preset: disabled)
>  Active: failed (Result: resources) since Fri 2019-08-09 17:20:26 MSK; 1s ago
>  Docs: man:systemd-sysv-generator(8)
>  Process: 2414 ExecStop=/etc/rc.d/init.d/cassandra stop (code=exited, 
> status=0/SUCCESS)
>  Process: 2463 ExecStart=/etc/rc.d/init.d/cassandra start (code=exited, 
> status=0/SUCCESS)
>  Main PID: 1884 (code=exited, status=143)
> Aug 09 17:20:23 desktop43.example.com systemd[1]: Unit cassandra.service 
> entered failed state.
> Aug 09 17:20:23 desktop43.example.com systemd[1]: cassandra.service failed.
> Aug 09 17:20:23 desktop43.example.com systemd[1]: Starting LSB: distributed 
> storage system for structured data...
> Aug 09 17:20:23 desktop43.example.com su[2473]: (to cassandra) root on none
> Aug 09 17:20:26 desktop43.example.com cassandra[2463]: Starting Cassandra: OK
> Aug 09 17:20:26 desktop43.example.com systemd[1]: New main PID 2545 does not 
> belong to service, and PID file is not owned by root. Refusing.
> Aug 09 17:20:26 desktop43.example.com systemd[1]: New main PID 2545 does not 
> belong to service, and PID file is not owned by root. Refusing.
> Aug 09 17:20:26 desktop43.example.com systemd[1]: Failed to start LSB: 
> distributed storage system for structured data.
> Aug 09 17:20:26 desktop43.example.com systemd[1]: Unit cassandra.service 
> entered failed state.
> Aug 09 17:20:26 desktop43.example.com systemd[1]: cassandra.service failed.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread Brandon Williams (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brandon Williams updated CASSANDRA-15558:
-
Reviewers: Brandon Williams, Brandon Williams  (was: Brandon Williams)
   Brandon Williams, Brandon Williams
   Status: Review In Progress  (was: Patch Available)

> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15549) Remove all recommendations to run Cassandra as root

2020-02-10 Thread Michael Shuler (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15549?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033635#comment-17033635
 ] 

Michael Shuler commented on CASSANDRA-15549:


`git grep root` returns a lot of hits, but I did see the linked CASSANDRA-8142 
in NEWS/CHANGES. This shows fixed for 3.2, so should be in the 3.11 and trunk 
branches already, in order to prevent starting up as UID=0.

> Remove all recommendations to run Cassandra as root
> ---
>
> Key: CASSANDRA-15549
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15549
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Local/Other
>Reporter: David Capwell
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> There are several exceptions/logs in the code which recommend users to run 
> Cassandra as root, should remove these since users really shouldn’t be 
> running Cassandra as root.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-14761) Rename speculative_retry to match additional_write_policy

2020-02-10 Thread Josh McKenzie (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-14761?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033611#comment-17033611
 ] 

Josh McKenzie commented on CASSANDRA-14761:
---

[~jolynch] - am I inferring correctly that you'd be ok w/us pushing this out 
past 4.0?

> Rename speculative_retry to match additional_write_policy
> -
>
> Key: CASSANDRA-14761
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14761
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Legacy/Core
>Reporter: Ariel Weisberg
>Priority: Normal
> Fix For: 4.0
>
>
> It's not really speculative. This commit is where it was last named and shows 
> what to update 
> https://github.com/aweisberg/cassandra/commit/e1df8e977d942a1b0da7c2a7554149c781d0e6c3



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Assigned] (CASSANDRA-15034) cassandra-stress fails to retry user profile insert and query operations

2020-02-10 Thread Dmitry Kropachev (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry Kropachev reassigned CASSANDRA-15034:


Assignee: Dinesh Joshi  (was: Shlomi Livne)

> cassandra-stress fails to retry user profile insert and query operations 
> -
>
> Key: CASSANDRA-15034
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15034
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tool/stress
>Reporter: Shlomi Livne
>Assignee: Dinesh Joshi
>Priority: Normal
> Attachments: 0001-Fix-retry-of-userdefined-operations.patch, 
> stress.yaml
>
>
> cassandra-stress that is run with a user profile against a cluster will fail 
> to trey operations when a node is killed.
> To reproduce:
> # Create a 3 ndoe cluster with ccm
> {code:java}
> ccm create cas-3 --vnodes -n 1 --version=3.11.3``{code}
> # start the cluster
> {code:java}
>  ccm start{code}
> # run
> {code:java}
> tools/bin/cassandra-stress user profile=stress.yaml n=10 ops(insert=1) 
> no-warmup cl=QUORUM -node 127.0.0.2 -rate threads=10{code}
> or run
> {code:java}
> tools/bin/cassandra-stress user profile=stress.yaml n=10 ops(simple=1) 
> no-warmup cl=QUORUM -node 127.0.0.2 -rate threads=10{code}
> # while the stress is progressing kill a node
> {code:java}
> ccm node1 stop --not-gently{code}
> # wait for cassandra-stress to end
> for the insert case check
> {code:java}
> ccm node2 cqlsh -e " select count(*) FROM stresscql.tb ;"{code}
> we are missing rows
> for the query case (simple) the following errors will be reported
> {code:java}
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.io.IOException: Operation x10 on key(s) [49a26f35297303469236]: Error 
> executing: (NoSuchElementException)
> at 
> org.apache.cassandra.stress.Operation.error(Operation.java:127)java.util.NoSuchElementException
> at 
> org.apache.cassandra.stress.Operation.timeWithRetry(Operation.java:105)com.datastax.driver.core.exceptions.TransportException:
>  [/127.0.0.1:9042] Connection has been closed
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException{code}
> profile: stress.yaml[^stress.yaml]
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-15034) cassandra-stress fails to retry user profile insert and query operations

2020-02-10 Thread Dmitry Kropachev (Jira)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-15034?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17033517#comment-17033517
 ] 

Dmitry Kropachev commented on CASSANDRA-15034:
--

 

Fix proposed by Shlomi fixes only one particular case, while this issue can 
happen with other type of statements. 

Please take a look at more general fix here: 
[https://github.com/apache/cassandra/pull/443/files]

 

> cassandra-stress fails to retry user profile insert and query operations 
> -
>
> Key: CASSANDRA-15034
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15034
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tool/stress
>Reporter: Shlomi Livne
>Assignee: Shlomi Livne
>Priority: Normal
> Attachments: 0001-Fix-retry-of-userdefined-operations.patch, 
> stress.yaml
>
>
> cassandra-stress that is run with a user profile against a cluster will fail 
> to trey operations when a node is killed.
> To reproduce:
> # Create a 3 ndoe cluster with ccm
> {code:java}
> ccm create cas-3 --vnodes -n 1 --version=3.11.3``{code}
> # start the cluster
> {code:java}
>  ccm start{code}
> # run
> {code:java}
> tools/bin/cassandra-stress user profile=stress.yaml n=10 ops(insert=1) 
> no-warmup cl=QUORUM -node 127.0.0.2 -rate threads=10{code}
> or run
> {code:java}
> tools/bin/cassandra-stress user profile=stress.yaml n=10 ops(simple=1) 
> no-warmup cl=QUORUM -node 127.0.0.2 -rate threads=10{code}
> # while the stress is progressing kill a node
> {code:java}
> ccm node1 stop --not-gently{code}
> # wait for cassandra-stress to end
> for the insert case check
> {code:java}
> ccm node2 cqlsh -e " select count(*) FROM stresscql.tb ;"{code}
> we are missing rows
> for the query case (simple) the following errors will be reported
> {code:java}
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.io.IOException: Operation x10 on key(s) [49a26f35297303469236]: Error 
> executing: (NoSuchElementException)
> at 
> org.apache.cassandra.stress.Operation.error(Operation.java:127)java.util.NoSuchElementException
> at 
> org.apache.cassandra.stress.Operation.timeWithRetry(Operation.java:105)com.datastax.driver.core.exceptions.TransportException:
>  [/127.0.0.1:9042] Connection has been closed
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException
> java.util.NoSuchElementException{code}
> profile: stress.yaml[^stress.yaml]
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread Sam Tunnicliffe (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sam Tunnicliffe updated CASSANDRA-15558:

Test and Documentation Plan: Unit test fix only
 Status: Patch Available  (was: In Progress)

When creating the read commands _after_ setting {{gcgs}}, the {{nowInSeconds}} 
wasn't being bumped far enough. It was only adding 1 to the value used for the 
inserts. This could lead to a race where occasionally a tombstone was not yet 
purgable. Fixed by bumping it a full 60s as in the other similar tests. No 
failures seen running this 200 times locally.

||branch||CI||
|[15558-trunk|https://github.com/beobal/cassandra/tree/15558-trunk]|[circle|https://circleci.com/gh/beobal/workflows/cassandra/tree/15558-trunk]|


> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Assigned] (CASSANDRA-15558) Fix flaky test org.apache.cassandra.db.ReadCommandTest purgeGCableTombstonesBeforeCalculatingDigest

2020-02-10 Thread Sam Tunnicliffe (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sam Tunnicliffe reassigned CASSANDRA-15558:
---

Assignee: Sam Tunnicliffe

> Fix flaky test org.apache.cassandra.db.ReadCommandTest 
> purgeGCableTombstonesBeforeCalculatingDigest
> ---
>
> Key: CASSANDRA-15558
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15558
> Project: Cassandra
>  Issue Type: Bug
>  Components: Test/unit
>Reporter: David Capwell
>Assignee: Sam Tunnicliffe
>Priority: Normal
> Fix For: 4.0-alpha
>
>
> https://app.circleci.com/jobs/github/dcapwell/cassandra/502/tests
> {code}
> junit.framework.AssertionFailedError
>   at 
> org.apache.cassandra.db.ReadCommandTest.lambda$purgeGCableTombstonesBeforeCalculatingDigest$5(ReadCommandTest.java:812)
>   at java.util.Iterator.forEachRemaining(Iterator.java:116)
>   at 
> org.apache.cassandra.db.ReadCommandTest.purgeGCableTombstonesBeforeCalculatingDigest(ReadCommandTest.java:805)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r37961 - in /dev/cassandra/2.2.16/redhat: ./ repodata/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 11:37:27 2020
New Revision: 37961

Log:
staging cassandra rpm packages for 2.2.16

Added:
dev/cassandra/2.2.16/redhat/
dev/cassandra/2.2.16/redhat/cassandra-2.2.16-1.noarch.rpm   (with props)
dev/cassandra/2.2.16/redhat/cassandra-2.2.16-1.src.rpm   (with props)
dev/cassandra/2.2.16/redhat/cassandra-tools-2.2.16-1.noarch.rpm   (with 
props)
dev/cassandra/2.2.16/redhat/repodata/

dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz
   (with props)

dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz.asc

dev/cassandra/2.2.16/redhat/repodata/235c91635f46d527ec70bfa7c5d1d8d258cdb9758efe8d628b977255e93537b7-primary.xml.gz
   (with props)

dev/cassandra/2.2.16/redhat/repodata/235c91635f46d527ec70bfa7c5d1d8d258cdb9758efe8d628b977255e93537b7-primary.xml.gz.asc

dev/cassandra/2.2.16/redhat/repodata/474a25c0c5993cea77a188104655bc605fe57d0d1e0a7f25911d0550bd90353f-other.xml.gz
   (with props)

dev/cassandra/2.2.16/redhat/repodata/474a25c0c5993cea77a188104655bc605fe57d0d1e0a7f25911d0550bd90353f-other.xml.gz.asc

dev/cassandra/2.2.16/redhat/repodata/78418d1e4f01921cb29f8527002dfacdf00e5f8f957d14efe7a3e32b2a764f77-primary.sqlite.bz2
   (with props)

dev/cassandra/2.2.16/redhat/repodata/78418d1e4f01921cb29f8527002dfacdf00e5f8f957d14efe7a3e32b2a764f77-primary.sqlite.bz2.asc

dev/cassandra/2.2.16/redhat/repodata/865255e17a9316fe7fb7b21e4210ffb884a0c3ac72e43fde2c7c10dba38833c4-other.sqlite.bz2
   (with props)

dev/cassandra/2.2.16/redhat/repodata/865255e17a9316fe7fb7b21e4210ffb884a0c3ac72e43fde2c7c10dba38833c4-other.sqlite.bz2.asc

dev/cassandra/2.2.16/redhat/repodata/df26a4b5328c71b0713bdc812db15edd4ad2bc846ca42c2d890eff8101c47f4f-filelists.sqlite.bz2
   (with props)

dev/cassandra/2.2.16/redhat/repodata/df26a4b5328c71b0713bdc812db15edd4ad2bc846ca42c2d890eff8101c47f4f-filelists.sqlite.bz2.asc
dev/cassandra/2.2.16/redhat/repodata/repomd.xml
dev/cassandra/2.2.16/redhat/repodata/repomd.xml.asc

Added: dev/cassandra/2.2.16/redhat/cassandra-2.2.16-1.noarch.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/2.2.16/redhat/cassandra-2.2.16-1.noarch.rpm
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/2.2.16/redhat/cassandra-2.2.16-1.src.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/2.2.16/redhat/cassandra-2.2.16-1.src.rpm
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/2.2.16/redhat/cassandra-tools-2.2.16-1.noarch.rpm
==
Binary file - no diff available.

Propchange: dev/cassandra/2.2.16/redhat/cassandra-tools-2.2.16-1.noarch.rpm
--
svn:mime-type = application/octet-stream

Added: 
dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz
==
Binary file - no diff available.

Propchange: 
dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz.asc
==
--- 
dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz.asc
 (added)
+++ 
dev/cassandra/2.2.16/redhat/repodata/06835a42842e7a2715fa1eee65988a036890f744d3cfe62e868660661f54a7f2-filelists.xml.gz.asc
 Mon Feb 10 11:37:27 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5BQAsACgkQ6RM1134+
+h8u6eQ//eqQQ3ho0eZbQvRqwf7IY/2t+L4vWb/WN+9o04deT2ZBmGUobFmxklH2l
+cemBVmbk8tPj93DrcwSn7Sx/aCDsBE19WdzXrMT197Xr12ymjGCEGdlzFrDIRTc6
+273y91GMUdfuzsjXNKqsfpk6wGE8W41HmxeJz8Ujko6jDxgsJT69MbNF79BBXjD7
+dt6mCb9qFU/xfRlTOdUp+gIg29+78XzrMy2MKUzmqUs7zLaWWbeNrhr/cReYk+Xq
+vIrKDnfGzj9Pu15DW2rM4o/RNCvYU4Y9DD/oXw+f3GlK4L6MXvpHz0nQYyS5CCL0
+ybbcwAW5CPTCBeXf2RbLV4hNey50epiz9vAnHJsYSlJV5SCr/dhhqpGDp5N4CU1N
+XTiGtoHr1Yns2lq9xjPJBToO7cGVZVYIWNgPNmCLnRj8P3ihDQXp6tVvIfvE1rVu
+BF9HDjT/rEbaDw0798+ts1PSiB+PKJVRd2dbYcvOAiZvP8FwBdEP8bLpbnHYI7zH
+qd/Ljd8G19IOPX4gKbVeTxzYnmi5+Q8k4NNWXOpQup2K2+TOeGpTRZJuu910Yqa2

svn commit: r37960 - in /dev/cassandra/2.2.16/debian: ./ db/ dists/ dists/22x/ dists/22x/main/ dists/22x/main/binary-amd64/ dists/22x/main/binary-i386/ dists/22x/main/source/ pool/ pool/main/ pool/mai

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 10:30:45 2020
New Revision: 37960

Log:
staging cassandra debian packages for 

Added:
dev/cassandra/2.2.16/debian/
dev/cassandra/2.2.16/debian/cassandra-tools_2.2.16_all.deb   (with props)
dev/cassandra/2.2.16/debian/cassandra_2.2.16.dsc
dev/cassandra/2.2.16/debian/cassandra_2.2.16.tar.gz   (with props)
dev/cassandra/2.2.16/debian/cassandra_2.2.16_all.deb   (with props)
dev/cassandra/2.2.16/debian/cassandra_2.2.16_amd64.buildinfo
dev/cassandra/2.2.16/debian/cassandra_2.2.16_amd64.changes
dev/cassandra/2.2.16/debian/db/
dev/cassandra/2.2.16/debian/db/checksums.db   (with props)
dev/cassandra/2.2.16/debian/db/contents.cache.db   (with props)
dev/cassandra/2.2.16/debian/db/packages.db   (with props)
dev/cassandra/2.2.16/debian/db/references.db   (with props)
dev/cassandra/2.2.16/debian/db/release.caches.db   (with props)
dev/cassandra/2.2.16/debian/db/version
dev/cassandra/2.2.16/debian/dists/
dev/cassandra/2.2.16/debian/dists/22x/
dev/cassandra/2.2.16/debian/dists/22x/InRelease
dev/cassandra/2.2.16/debian/dists/22x/Release
dev/cassandra/2.2.16/debian/dists/22x/Release.gpg
dev/cassandra/2.2.16/debian/dists/22x/main/
dev/cassandra/2.2.16/debian/dists/22x/main/binary-amd64/
dev/cassandra/2.2.16/debian/dists/22x/main/binary-amd64/Packages
dev/cassandra/2.2.16/debian/dists/22x/main/binary-amd64/Packages.gz   (with 
props)
dev/cassandra/2.2.16/debian/dists/22x/main/binary-amd64/Release
dev/cassandra/2.2.16/debian/dists/22x/main/binary-i386/
dev/cassandra/2.2.16/debian/dists/22x/main/binary-i386/Packages
dev/cassandra/2.2.16/debian/dists/22x/main/binary-i386/Packages.gz   (with 
props)
dev/cassandra/2.2.16/debian/dists/22x/main/binary-i386/Release
dev/cassandra/2.2.16/debian/dists/22x/main/source/
dev/cassandra/2.2.16/debian/dists/22x/main/source/Release
dev/cassandra/2.2.16/debian/dists/22x/main/source/Sources.gz   (with props)
dev/cassandra/2.2.16/debian/pool/
dev/cassandra/2.2.16/debian/pool/main/
dev/cassandra/2.2.16/debian/pool/main/c/
dev/cassandra/2.2.16/debian/pool/main/c/cassandra/

dev/cassandra/2.2.16/debian/pool/main/c/cassandra/cassandra-tools_2.2.16_all.deb
   (with props)
dev/cassandra/2.2.16/debian/pool/main/c/cassandra/cassandra_2.2.16.dsc
dev/cassandra/2.2.16/debian/pool/main/c/cassandra/cassandra_2.2.16.tar.gz   
(with props)
dev/cassandra/2.2.16/debian/pool/main/c/cassandra/cassandra_2.2.16_all.deb  
 (with props)

Added: dev/cassandra/2.2.16/debian/cassandra-tools_2.2.16_all.deb
==
Binary file - no diff available.

Propchange: dev/cassandra/2.2.16/debian/cassandra-tools_2.2.16_all.deb
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/2.2.16/debian/cassandra_2.2.16.dsc
==
--- dev/cassandra/2.2.16/debian/cassandra_2.2.16.dsc (added)
+++ dev/cassandra/2.2.16/debian/cassandra_2.2.16.dsc Mon Feb 10 10:30:45 2020
@@ -0,0 +1,41 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA512
+
+Format: 1.0
+Source: cassandra
+Binary: cassandra, cassandra-tools
+Architecture: all
+Version: 2.2.16
+Maintainer: Eric Evans 
+Uploaders: Sylvain Lebresne 
+Homepage: http://cassandra.apache.org
+Standards-Version: 3.8.3
+Vcs-Browser: https://git-wip-us.apache.org/repos/asf?p=cassandra.git
+Vcs-Git: http://git-wip-us.apache.org/repos/asf/cassandra.git
+Build-Depends: debhelper (>= 5), openjdk-8-jdk | java8-jdk, ant (>= 1.9), 
ant-optional (>= 1.9), dh-python, python-dev (>= 2.7), dpatch, bash-completion
+Package-List:
+ cassandra deb misc extra arch=all
+ cassandra-tools deb misc extra arch=all
+Checksums-Sha1:
+ 790b46ee13310c8fd623ea3f85cdba7c5a589bbc 24783064 cassandra_2.2.16.tar.gz
+Checksums-Sha256:
+ ddbea6ef7d1b5211eab5769024bfc946c6531d3383a4d065cbc59f29cc1bd523 24783064 
cassandra_2.2.16.tar.gz
+Files:
+ bae54da0bf049d3a2c7d7c0abdac1841 24783064 cassandra_2.2.16.tar.gz
+
+-BEGIN PGP SIGNATURE-
+
+iQIzBAEBCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5BKhAACgkQ6RM1134+
+h8uMYA/+Mf0Jjxi/is/880wR03dVS4AtLDbn6uIplw58WrABV3JsnP/ySVMVe+gv
+0mj/IKc+iufm7mLWgVI0sG+50JU3v+O/6mf8MNR33uqq9hMhOao48Rvndsse0+Ml
+hMh/NH/d6ALwNHC/DiAG/Tqdfp36hOQhOCUHGv8C5jtnj88ayhmOD08EMwPZHQtK
+lCJTGRD+EAbxiONewQmICGVUuRRR7iS2FqmZTtSg5HZoWrSBNsmYv/3HuQHkOa3x
+5I4BDzZyVzf4bze1kRQ2F7hMH2P+p/xKzz6kNTDM1KPGvGsFtEmZdx5Q/TQD2eoq
+Vabb9x4YUyVKdcL3eV5R67jZFlKFkNehLZqmcwvoYMdyc0cEOth0w5pU/lxbYROV
+8BzSO+eg5O/C29jkw7bB9ZKaLjC0Z+d2rO7t/we+KPjrn0S0mLK2jp5X2H5/Cn+g
+T7bMKcJudEHdOKypplnpC0U/cpBPqqcEFGO3nWDXVjspl+kecSmz+HEfmRrDVi0W
+FzvFmYq1/NoivlV8xKkRRk+7mXtu/1hjKd+hUBFeLwE/GwdUg2DE0DOs010wYBP9
+6hLxUbLpvM9fHodk6NaQ/gHmEux3O6FXInvClyIScVKfh9uHUTbP6i5Nts7s7Vge
+W8rTAq/dIvJm5UJGlmLjLBaOVEvt9P3TjkM/l3rpSgmmFI9yZB8=
+=R/O7
+-END 

svn commit: r37959 - /dev/cassandra/2.2.16/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 10:00:44 2020
New Revision: 37959

Log:
staging cassandra 2.2.16

Added:
dev/cassandra/2.2.16/
dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz   (with props)
dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.asc
dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha256
dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha512
dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz   (with props)
dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.asc
dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.sha256
dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.sha512

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.asc
==
--- dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.asc (added)
+++ dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.asc Mon Feb 10 
10:00:44 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5BKaUACgkQ6RM1134+
+h8tTcA//fpY8AgYB55UCdR/kWh2N/8LzAf/4Z2KOMfJUAWAacRR+X2M8cH67fFVy
+6GPYEeWM1HBM7PQ9mCNX7/3fYfIYDv3WCi/5sbTBktCK+ou52TLmFYhBJ4y6XWMG
+ZBkPdyOhn4vcJ3D/h5hkBOvx/k9uUhJrAzshc8I4ODfjsrUknos9ikzfSt+S94LC
+OHje0ixbG3GruA6H0RieDYs9/XR7bkzyUCXjX49pYgX4lEBPoFkJs38SDza+z1mz
+g10x6TXsqAz5ABcd/YBMYG16x5WqaTNlmQRQijdQWj/UP4g9egol6UPB9mCjlk+8
+8TbtQs8b9ulr1SFYcDvDnyKAqTM82K7qf7Pylybo+MVd3cU1PrleQrBODNPJjuWA
+fKVbtWaGtKrswnzokUBTBy7IR6HCiGAmqntWAs8oj6VrWUELBfPpFO3k/tssQ/W+
+fH4ym2R6Efug4w+t0h06oVlDFNvBH0/hobDnhTy0gxWF/wChujUlEDmxbfXeFdq0
+a8qMmbdESi7G4NgVYz1sS39Irdrgk0wP5iqvXR/US+0LnHx4pSAmqZy+eK+/79+k
+Hg/QRBfCfVvJtYgFnBpwzh/zosQtg3uCYfYfuPVXZ5LCUxiW23tcIhehr46iIkek
+JcemFkcRozO7dPeBHEsnhqBYxPODuKzozlNTOzUtSJFqR7KKaS8=
+=/Ilt
+-END PGP SIGNATURE-

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha256
==
--- dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha256 (added)
+++ dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha256 Mon Feb 10 
10:00:44 2020
@@ -0,0 +1 @@
+827474c965242be4788beefa3e28d05d909e0bb068e03b65c73f1669796ddb84

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha512
==
--- dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha512 (added)
+++ dev/cassandra/2.2.16/apache-cassandra-2.2.16-bin.tar.gz.sha512 Mon Feb 10 
10:00:44 2020
@@ -0,0 +1 @@
+db2026342e876caf790833d49f7ab1a2fbba39bf380384ef66e2da4913f537690a56c97cb2f6ea17f667a0d34aeb406fa658db02aec1121a5ba7134ab59a5cfb

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.asc
==
--- dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.asc (added)
+++ dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.asc Mon Feb 10 
10:00:44 2020
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEpMRl/qDFUlYaOSph6RM1134+h8sFAl5BKacACgkQ6RM1134+
+h8tAYxAApdOgRgYOeK995q2UCJwyaF0mWp8c02deUGwb63LljIY9yp1WiAA+e7ji
+EfQxYoARkUEOtqMEu7VpMaqK2yVVzL8p1RCIWE4RrQ+1uuKw6qGvUaByLQqhrosh
+3jPxkPp4x03u5BjAai50MRNh6975g5g5AjuW5FqmkYuGw31wH88duQrQxOdmJwm1
+4TjVrFAiu8vRlrwxbV3VS+k419t0nP2cVOLpXOiRU4GtF/2mJEn/j3NywENU9YgP
+gTkdlmxoB0I/vzmdmTAjmaJDe7oi6pIoBdcEsIlcNEKz9MucHqmZsJiYspDgPBCg
+jCoE18j/KdM4IKM0QeOrc32bMCxVWKDxJq0wGOntVmhjo0EefrM5YEfxiPF6vHhQ
+T0KXavugzuD/59CsrsWBNMbY4Mm9KHpL+IPO0Nq7GrQHNY9N0ddloZT5Xy2lmo1y
+8iJ2U3jxU4dlfpntS27t9XJc8QNL55MuRzchpHPLgoFSyDlt+VlGjNeDxFNBgwtP
+dWqg4he6EMCLIbXDHb1VQu256ewELgO47o8b0gkC2i/I6SsiNmFphQLveosxTpQ1
+yHWHcvGCp8D8w6IFTnFvwTyT6/6Yh1H18AyvQ09BZM/zyluBRd1aoRf/prZE0eKc
+9F7PGpBuwyJf+TEOXruck+WNYhI0WlCe/riIj91Qmu34vWHDeAo=
+=+L8x
+-END PGP SIGNATURE-

Added: dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.sha256
==
--- dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.sha256 (added)
+++ dev/cassandra/2.2.16/apache-cassandra-2.2.16-src.tar.gz.sha256 Mon Feb 10 
10:00:44 2020
@@ -0,0 +1 @@

[cassandra] 01/01: Prepare debian changelog for 2.2.16

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to tag 2.2.16-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit c4d9e9ca4ade40b956e37935bce68737b0c063b9
Author: Mick Semb Wever 
AuthorDate: Mon Feb 10 10:55:15 2020 +0100

Prepare debian changelog for 2.2.16
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 445bf96..7f80269 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-cassandra (2.2.16) UNRELEASED; urgency=medium
+cassandra (2.2.16) unstable; urgency=medium
 
   * New release
 
- -- Michael Shuler   Tue, 29 Oct 2019 16:08:37 -0500
+ -- Mick Semb Wever   Mon, 10 Feb 2020 10:52:49 +0100
 
 cassandra (2.2.15) unstable; urgency=medium
 


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] tag 2.2.16-tentative created (now c4d9e9c)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to tag 2.2.16-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


  at c4d9e9c  (commit)
This tag includes the following new commits:

 new c4d9e9c  Prepare debian changelog for 2.2.16

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r37957 - /dev/cassandra/2.2.16/

2020-02-10 Thread mck
Author: mck
Date: Mon Feb 10 09:17:08 2020
New Revision: 37957

Log:
remove Cassandra 2.2.16 staging attempt

Removed:
dev/cassandra/2.2.16/


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[cassandra] tag 2.2.16-tentative deleted (was 9705d82)

2020-02-10 Thread mck
This is an automated email from the ASF dual-hosted git repository.

mck pushed a change to tag 2.2.16-tentative
in repository https://gitbox.apache.org/repos/asf/cassandra.git.


*** WARNING: tag 2.2.16-tentative was deleted! ***

 was 9705d82  Add an ability to run bootstrap / streaming tests with in-JVM 
dtest framework.

The revisions that were on this tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org