[jira] [Commented] (CASSANDRA-13652) Deadlock in AbstractCompactionManager

2017-07-01 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CASSANDRA-13652:


GitHub user Fuud opened a pull request:

https://github.com/apache/cassandra/pull/127

CASSANDRA-13652: Deadlock in AbstractCompactionManager

Change incorrect usage of LockSupport.park/unpark to Semaphore.
Old implementation can deadlock because permit from unpark invocation can 
be consumed by park inside logging framework and manager thread will be parked 
forever.

https://issues.apache.org/jira/browse/CASSANDRA-13652

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Fuud/cassandra commitlog_deadlock

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cassandra/pull/127.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #127


commit 175be27297e9933906a9261cd8d0af3a772bff24
Author: Fedor Bobin 
Date:   2017-07-01T12:53:22Z

CASSANDRA-13652: Deadlock in AbstractCompactionManager




> Deadlock in AbstractCompactionManager
> -
>
> Key: CASSANDRA-13652
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13652
> Project: Cassandra
>  Issue Type: Bug
>  Components: Core
>Reporter: Fuud
>
> AbstractCommitLogManager uses LockSupport.(un)park incorreclty. It invokes 
> unpark without checking if manager thread was parked in approriate place. 
> For example, logging frameworks uses queues and queues uses ReadWriteLock's 
> that uses LockSupport. Therefore AbstractCommitLogManager.wakeManager can 
> wake thread inside Lock and manager thread will sleep forever at park() 
> method (because unpark permit was already consumed inside lock).
> For examle stack traces:
> {code}
> "MigrationStage:1" id=412 state=WAITING
> at sun.misc.Unsafe.park(Native Method)
> at java.util.concurrent.locks.LockSupport.park(LockSupport.java:304)
> at 
> org.apache.cassandra.utils.concurrent.WaitQueue$AbstractSignal.awaitUninterruptibly(WaitQueue.java:279)
> at 
> org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager.awaitAvailableSegment(AbstractCommitLogSegmentManager.java:263)
> at 
> org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager.advanceAllocatingFrom(AbstractCommitLogSegmentManager.java:237)
> at 
> org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager.forceRecycleAll(AbstractCommitLogSegmentManager.java:279)
> at 
> org.apache.cassandra.db.commitlog.CommitLog.forceRecycleAllSegments(CommitLog.java:210)
> at org.apache.cassandra.config.Schema.dropView(Schema.java:708)
> at 
> org.apache.cassandra.schema.SchemaKeyspace.lambda$updateKeyspace$23(SchemaKeyspace.java:1361)
> at 
> org.apache.cassandra.schema.SchemaKeyspace$$Lambda$382/1123232162.accept(Unknown
>  Source)
> at java.util.LinkedHashMap$LinkedValues.forEach(LinkedHashMap.java:608)
> at 
> java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1080)
> at 
> org.apache.cassandra.schema.SchemaKeyspace.updateKeyspace(SchemaKeyspace.java:1361)
> at 
> org.apache.cassandra.schema.SchemaKeyspace.mergeSchema(SchemaKeyspace.java:1332)
> at 
> org.apache.cassandra.schema.SchemaKeyspace.mergeSchemaAndAnnounceVersion(SchemaKeyspace.java:1282)
>   - locked java.lang.Class@cc38904
> at 
> org.apache.cassandra.db.DefinitionsUpdateVerbHandler$1.runMayThrow(DefinitionsUpdateVerbHandler.java:51)
> at org.apache.cassandra.utils.WrappedRunnable.run(WrappedRunnable.java:28)
> at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at 
> org.apache.cassandra.concurrent.DebuggableThreadPoolExecutor$LocalSessionWrapper.run(DebuggableThreadPoolExecutor.java:322)
> at 
> com.ringcentral.concurrent.executors.MonitoredRunnable.run(MonitoredRunnable.java:36)
> at MON_R_MigrationStage.run(NamedRunnableFactory.java:67)
> at 
> com.ringcentral.concurrent.executors.MonitoredThreadPoolExecutor$MdcAwareRunnable.run(MonitoredThreadPoolExecutor.java:114)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> org.apache.cassandra.concurrent.NamedThreadFactory.lambda$threadLocalDeallocator$0(NamedThreadFactory.java:79)
> at 
> org.apache.cassandra.concurrent.NamedThreadFactory$$Lambda$61/179045.run(Unknown
>  Source)
> at java.lang.Thread.run(Thread.java:745)
> "COMMIT-LOG-ALLOCATOR:1" id=80 state=WAITING
> 

[jira] [Created] (CASSANDRA-13652) Deadlock in AbstractCompactionManager

2017-07-01 Thread Fuud (JIRA)
Fuud created CASSANDRA-13652:


 Summary: Deadlock in AbstractCompactionManager
 Key: CASSANDRA-13652
 URL: https://issues.apache.org/jira/browse/CASSANDRA-13652
 Project: Cassandra
  Issue Type: Bug
  Components: Core
Reporter: Fuud


AbstractCommitLogManager uses LockSupport.(un)park incorreclty. It invokes 
unpark without checking if manager thread was parked in approriate place. 
For example, logging frameworks uses queues and queues uses ReadWriteLock's 
that uses LockSupport. Therefore AbstractCommitLogManager.wakeManager can wake 
thread inside Lock and manager thread will sleep forever at park() method 
(because unpark permit was already consumed inside lock).

For examle stack traces:
{code}
"MigrationStage:1" id=412 state=WAITING
at sun.misc.Unsafe.park(Native Method)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:304)
at 
org.apache.cassandra.utils.concurrent.WaitQueue$AbstractSignal.awaitUninterruptibly(WaitQueue.java:279)
at 
org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager.awaitAvailableSegment(AbstractCommitLogSegmentManager.java:263)
at 
org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager.advanceAllocatingFrom(AbstractCommitLogSegmentManager.java:237)
at 
org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager.forceRecycleAll(AbstractCommitLogSegmentManager.java:279)
at 
org.apache.cassandra.db.commitlog.CommitLog.forceRecycleAllSegments(CommitLog.java:210)
at org.apache.cassandra.config.Schema.dropView(Schema.java:708)
at 
org.apache.cassandra.schema.SchemaKeyspace.lambda$updateKeyspace$23(SchemaKeyspace.java:1361)
at 
org.apache.cassandra.schema.SchemaKeyspace$$Lambda$382/1123232162.accept(Unknown
 Source)
at java.util.LinkedHashMap$LinkedValues.forEach(LinkedHashMap.java:608)
at 
java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1080)
at 
org.apache.cassandra.schema.SchemaKeyspace.updateKeyspace(SchemaKeyspace.java:1361)
at 
org.apache.cassandra.schema.SchemaKeyspace.mergeSchema(SchemaKeyspace.java:1332)
at 
org.apache.cassandra.schema.SchemaKeyspace.mergeSchemaAndAnnounceVersion(SchemaKeyspace.java:1282)
  - locked java.lang.Class@cc38904
at 
org.apache.cassandra.db.DefinitionsUpdateVerbHandler$1.runMayThrow(DefinitionsUpdateVerbHandler.java:51)
at org.apache.cassandra.utils.WrappedRunnable.run(WrappedRunnable.java:28)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at 
org.apache.cassandra.concurrent.DebuggableThreadPoolExecutor$LocalSessionWrapper.run(DebuggableThreadPoolExecutor.java:322)
at 
com.ringcentral.concurrent.executors.MonitoredRunnable.run(MonitoredRunnable.java:36)
at MON_R_MigrationStage.run(NamedRunnableFactory.java:67)
at 
com.ringcentral.concurrent.executors.MonitoredThreadPoolExecutor$MdcAwareRunnable.run(MonitoredThreadPoolExecutor.java:114)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at 
org.apache.cassandra.concurrent.NamedThreadFactory.lambda$threadLocalDeallocator$0(NamedThreadFactory.java:79)
at 
org.apache.cassandra.concurrent.NamedThreadFactory$$Lambda$61/179045.run(Unknown
 Source)
at java.lang.Thread.run(Thread.java:745)

"COMMIT-LOG-ALLOCATOR:1" id=80 state=WAITING
at sun.misc.Unsafe.park(Native Method)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:304)
at 
org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager$1.runMayThrow(AbstractCommitLogSegmentManager.java:128)
at org.apache.cassandra.utils.WrappedRunnable.run(WrappedRunnable.java:28)
at 
org.apache.cassandra.concurrent.NamedThreadFactory.lambda$threadLocalDeallocator$0(NamedThreadFactory.java:79)
at 
org.apache.cassandra.concurrent.NamedThreadFactory$$Lambda$61/179045.run(Unknown
 Source)
at java.lang.Thread.run(Thread.java:745)
{code}

Solution is to use Semaphore instead of low-level LockSupport.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang updated CASSANDRA-13650:
-
Reviewer: Alex Petrov
  Status: Patch Available  (was: In Progress)

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
>Priority: Minor
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 12:36 PM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries. (back to what the java comment described.)


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
>Priority: Minor
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 12:16 PM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
>Priority: Minor
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 12:15 PM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
>Priority: Minor
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang commented on CASSANDRA-13650:
--

[~ifesdjeen] could you review it? 

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
>Priority: Minor
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang updated CASSANDRA-13650:
-
Priority: Minor  (was: Major)

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
>Priority: Minor
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 11:03 AM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk..| 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 10:42 AM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/90]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CASSANDRA-12994) update arline dependecy to 0.7

2017-07-01 Thread Stefan Podkowinski (JIRA)

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

Stefan Podkowinski updated CASSANDRA-12994:
---
Resolution: Fixed
  Assignee: Tomas Repik  (was: Stefan Podkowinski)
  Reviewer: Stefan Podkowinski
Status: Resolved  (was: Patch Available)

Committed as f415b736d6cdbf to trunk/4.0.

> update arline dependecy to 0.7
> --
>
> Key: CASSANDRA-12994
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12994
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Libraries
>Reporter: Tomas Repik
>Assignee: Tomas Repik
> Fix For: 4.0
>
> Attachments: airline-0.7.jar.asc, cassandra-3.9-airline0.7.patch
>
>
> We want to include Cassandra into Fedora, and there are some tweaks to 
> cassandra sources we need to do. The io.airlift:airline dependency is one of 
> those tweak we gotta do. Cassandra depends on arline 0.6, but In Fedora we 
> have the latest upstream version 0.7. It was released quite time ago on Nov 6 
> 2014. I attached a patch updating cassandra sources to depend on the newest 
> airline sources. The only actual changes are in the imports. Please consider 
> updating. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CASSANDRA-12994) update arline dependecy to 0.7

2017-07-01 Thread Stefan Podkowinski (JIRA)

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

Stefan Podkowinski updated CASSANDRA-12994:
---
Attachment: airline-0.7.jar.asc

> update arline dependecy to 0.7
> --
>
> Key: CASSANDRA-12994
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12994
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Libraries
>Reporter: Tomas Repik
>Assignee: Tomas Repik
> Fix For: 4.0
>
> Attachments: airline-0.7.jar.asc, cassandra-3.9-airline0.7.patch
>
>
> We want to include Cassandra into Fedora, and there are some tweaks to 
> cassandra sources we need to do. The io.airlift:airline dependency is one of 
> those tweak we gotta do. Cassandra depends on arline 0.6, but In Fedora we 
> have the latest upstream version 0.7. It was released quite time ago on Nov 6 
> 2014. I attached a patch updating cassandra sources to depend on the newest 
> airline sources. The only actual changes are in the imports. Please consider 
> updating. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-12994) update arline dependecy to 0.7

2017-07-01 Thread Stefan Podkowinski (JIRA)

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

Stefan Podkowinski edited comment on CASSANDRA-12994 at 7/1/17 10:26 AM:
-

Kicked off tests, now that the CI seems to be reasonably stable enough again:
* [Branch|https://github.com/spodkowinski/cassandra/tree/CASSANDRA-12994-trunk]
* 
[dtest|https://builds.apache.org/user/spod/my-views/view/Cassandra%20List%20View/job/Cassandra-devbranch-dtest/108/]
* [testall|https://circleci.com/gh/spodkowinski/cassandra/73]


was (Author: spo...@gmail.com):
Kicked off tests, now that the CI seems to be reasonably stable enough again:
* [Branch|https://github.com/spodkowinski/cassandra/tree/CASSANDRA-12994-trunk]
* 
[dtest|https://builds.apache.org/user/spod/my-views/view/Cassandra%20List%20View/job/Cassandra-devbranch-dtest/108/]
* [testall|https://circleci.com/gh/spodkowinski/cassandra/67]

> update arline dependecy to 0.7
> --
>
> Key: CASSANDRA-12994
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12994
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Libraries
>Reporter: Tomas Repik
>Assignee: Stefan Podkowinski
> Fix For: 4.0
>
> Attachments: cassandra-3.9-airline0.7.patch
>
>
> We want to include Cassandra into Fedora, and there are some tweaks to 
> cassandra sources we need to do. The io.airlift:airline dependency is one of 
> those tweak we gotta do. Cassandra depends on arline 0.6, but In Fedora we 
> have the latest upstream version 0.7. It was released quite time ago on Nov 6 
> 2014. I attached a patch updating cassandra sources to depend on the newest 
> airline sources. The only actual changes are in the imports. Please consider 
> updating. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



cassandra git commit: Upgrade airline dependency to 0.7

2017-07-01 Thread spod
Repository: cassandra
Updated Branches:
  refs/heads/trunk 45c0f860f -> f415b736d


Upgrade airline dependency to 0.7

patch by Tomas Repik; reviewed by Stefan Podkowinski for CASSANDRA-12994


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/f415b736
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/f415b736
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/f415b736

Branch: refs/heads/trunk
Commit: f415b736d6cdbfcf71ffeaa4ebbdce406584ad25
Parents: 45c0f86
Author: Stefan Podkowinski 
Authored: Fri Jun 2 18:58:35 2017 +0200
Committer: Stefan Podkowinski 
Committed: Sat Jul 1 12:24:22 2017 +0200

--
 build.xml  |   2 +-
 lib/airline-0.6.jar| Bin 86653 -> 0 bytes
 lib/airline-0.7.jar| Bin 0 -> 85912 bytes
 src/java/org/apache/cassandra/tools/NodeTool.java  |   2 +-
 .../cassandra/tools/nodetool/Assassinate.java  |   4 ++--
 .../cassandra/tools/nodetool/BootstrapResume.java  |   2 +-
 .../cassandra/tools/nodetool/CfHistograms.java |   2 +-
 .../apache/cassandra/tools/nodetool/CfStats.java   |   2 +-
 .../apache/cassandra/tools/nodetool/Cleanup.java   |   6 +++---
 .../cassandra/tools/nodetool/ClearSnapshot.java|   6 +++---
 .../apache/cassandra/tools/nodetool/Compact.java   |   6 +++---
 .../tools/nodetool/CompactionHistory.java  |   4 ++--
 .../cassandra/tools/nodetool/CompactionStats.java  |   4 ++--
 .../cassandra/tools/nodetool/Decommission.java |   4 ++--
 .../cassandra/tools/nodetool/DescribeCluster.java  |   2 +-
 .../cassandra/tools/nodetool/DescribeRing.java |   4 ++--
 .../tools/nodetool/DisableAutoCompaction.java  |   4 ++--
 .../cassandra/tools/nodetool/DisableBackup.java|   2 +-
 .../cassandra/tools/nodetool/DisableBinary.java|   2 +-
 .../cassandra/tools/nodetool/DisableGossip.java|   2 +-
 .../cassandra/tools/nodetool/DisableHandoff.java   |   2 +-
 .../tools/nodetool/DisableHintsForDC.java  |   4 ++--
 .../org/apache/cassandra/tools/nodetool/Drain.java |   2 +-
 .../tools/nodetool/EnableAutoCompaction.java   |   4 ++--
 .../cassandra/tools/nodetool/EnableBackup.java |   2 +-
 .../cassandra/tools/nodetool/EnableBinary.java |   2 +-
 .../cassandra/tools/nodetool/EnableGossip.java |   2 +-
 .../cassandra/tools/nodetool/EnableHandoff.java|   2 +-
 .../cassandra/tools/nodetool/EnableHintsForDC.java |   4 ++--
 .../tools/nodetool/FailureDetectorInfo.java|   2 +-
 .../org/apache/cassandra/tools/nodetool/Flush.java |   4 ++--
 .../cassandra/tools/nodetool/GarbageCollect.java   |   6 +++---
 .../apache/cassandra/tools/nodetool/GcStats.java   |   2 +-
 .../tools/nodetool/GetCompactionThreshold.java |   4 ++--
 .../tools/nodetool/GetCompactionThroughput.java|   2 +-
 .../tools/nodetool/GetConcurrentCompactors.java|   2 +-
 .../cassandra/tools/nodetool/GetEndpoints.java |   4 ++--
 .../tools/nodetool/GetInterDCStreamThroughput.java |   2 +-
 .../cassandra/tools/nodetool/GetLoggingLevels.java |   2 +-
 .../cassandra/tools/nodetool/GetMaxHintWindow.java |   2 +-
 .../cassandra/tools/nodetool/GetSSTables.java  |   6 +++---
 .../tools/nodetool/GetStreamThroughput.java|   2 +-
 .../cassandra/tools/nodetool/GetTimeout.java   |   4 ++--
 .../tools/nodetool/GetTraceProbability.java|   2 +-
 .../cassandra/tools/nodetool/GossipInfo.java   |   2 +-
 .../org/apache/cassandra/tools/nodetool/Info.java  |   4 ++--
 .../tools/nodetool/InvalidateCounterCache.java |   2 +-
 .../tools/nodetool/InvalidateKeyCache.java |   2 +-
 .../tools/nodetool/InvalidateRowCache.java |   2 +-
 .../org/apache/cassandra/tools/nodetool/Join.java  |   2 +-
 .../cassandra/tools/nodetool/ListSnapshots.java|   2 +-
 .../org/apache/cassandra/tools/nodetool/Move.java  |   4 ++--
 .../apache/cassandra/tools/nodetool/NetStats.java  |   4 ++--
 .../cassandra/tools/nodetool/PauseHandoff.java |   2 +-
 .../cassandra/tools/nodetool/ProxyHistograms.java  |   2 +-
 .../cassandra/tools/nodetool/RangeKeySample.java   |   2 +-
 .../apache/cassandra/tools/nodetool/Rebuild.java   |   6 +++---
 .../cassandra/tools/nodetool/RebuildIndex.java |   4 ++--
 .../apache/cassandra/tools/nodetool/Refresh.java   |   4 ++--
 .../tools/nodetool/RefreshSizeEstimates.java   |   2 +-
 .../cassandra/tools/nodetool/ReloadTriggers.java   |   2 +-
 .../cassandra/tools/nodetool/RelocateSSTables.java |   6 +++---
 .../cassandra/tools/nodetool/RemoveNode.java   |   4 ++--
 .../apache/cassandra/tools/nodetool/Repair.java|   6 +++---
 .../cassandra/tools/nodetool/RepairAdmin.java  |   4 ++--
 .../cassandra/tools/nodetool/ReplayBatchlog.java   |   2 +-
 

[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 10:10 AM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor column-filter to allow {{queried = null}} to represent {{wildcard 
(*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor some changes in C*-13004 to allow {{queried = null}} to represent 
{{wildcard (*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 10:10 AM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor some changes in C*-13004 to allow {{queried = null}} to represent 
{{wildcard (*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor some changes in C*-13004 to allow {{queried = null}} to present 
{{wildcard (*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang edited comment on CASSANDRA-13650 at 7/1/17 10:09 AM:
---

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 | 

1. refactor some changes in C*-13004 to allow {{queried = null}} to present 
{{wildcard (*)}} queries.


was (Author: jasonstack):
|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk| 

1. refactor some changes in C*-13004 to allow {{queried = null}} to present 
{{wildcard (*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CASSANDRA-13650) cql_tests:SlowQueryTester.local_query_test and cql_tests:SlowQueryTester.remote_query_test failed on trunk

2017-07-01 Thread ZhaoYang (JIRA)

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

ZhaoYang commented on CASSANDRA-13650:
--

|| source || junit-result || dtest-result||
| [trunk|https://github.com/jasonstack/cassandra/commits/CASSANDRA-13650] | 
[junit|https://circleci.com/gh/jasonstack/cassandra/89]  | 
{{compaction_test.py:TestCompaction_with_SizeTieredCompactionStrategy.compaction_throughput_test}}
 failed on dtest, passed on local
{{bootstrap_test.py:TestBootstrap.consistent_range_movement_false_with_rf1_should_succeed_test}}
 failed on trunk| 

1. refactor some changes in C*-13004 to allow {{queried = null}} to present 
{{wildcard (*)}} queries.

> cql_tests:SlowQueryTester.local_query_test and 
> cql_tests:SlowQueryTester.remote_query_test failed on trunk
> --
>
> Key: CASSANDRA-13650
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13650
> Project: Cassandra
>  Issue Type: Bug
>  Components: Distributed Metadata
>Reporter: ZhaoYang
>Assignee: ZhaoYang
> Fix For: 4.x
>
>
> cql_tests.py:SlowQueryTester.local_query_test failed on trunk
> cql_tests.py:SlowQueryTester.remote_query_test failed on trunk
> SHA: fe3cfe3d7df296f022c50c9c0d22f91a0fc0a217
> It's due to the dtest unable to find {{'SELECT \* FROM ks.test1'}} pattern 
> from log.
> but in the log, following info is showed: 
> {{MonitoringTask.java:173 - 1 operations were slow in the last 10 msecs: 
> , time 102 msec - slow timeout 10 msec}}
> ColumnFilter.toString() should return {{*}}, but return normal column {{val}} 
> instead 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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