You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Michael Semb Wever (Jira)" <ji...@apache.org> on 2022/02/17 08:06:00 UTC

[jira] [Updated] (CASSANDRA-15984) thrift_hsha_test.TestThriftHSHA test_closing_connections is broken on 3.0 and 3.11

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

Michael Semb Wever updated CASSANDRA-15984:
-------------------------------------------
    Fix Version/s: 3.0.26

> thrift_hsha_test.TestThriftHSHA test_closing_connections is broken on 3.0 and 3.11
> ----------------------------------------------------------------------------------
>
>                 Key: CASSANDRA-15984
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-15984
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Test/dtest/python
>            Reporter: David Capwell
>            Priority: Normal
>             Fix For: 3.0.26, 3.0.x, 3.11.x
>
>
> This test seems to have been broken on 3.0 for a while now; I ran Circle CI with HIGHER configs from ab6a87bf60174d9a6e7cd727702da3004c0dbeeb (from Jul 6 18:05:18 2020)  all the way to HEAD ebf9c74c4ea8aefb1262458664571fdb52b76102 (from Jul 24 18:47:39 2020).
> Interestingly, when I run the test locally against latest 3.0 it passes.
> This is not a flaky test, as it fails on no-vnode and vnode for every attempt (tried 9 times)
> {code}
>         if rc != 0:
> >           raise ToolError(cmd_args, rc, out, err)
> E           ccmlib.node.ToolError: Subprocess ['nodetool', '-h', 'localhost', '-p', '7100', 'enablethrift'] exited with non-zero status; exit status: 2; 
> E           stderr: error: Could not create ServerSocket on address /127.0.0.1:9160.
> E           -- StackTrace --
> E           org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address /127.0.0.1:9160.
> E           	at org.apache.thrift.transport.TNonblockingServerSocket.<init>(TNonblockingServerSocket.java:96)
> E           	at org.apache.thrift.transport.TNonblockingServerSocket.<init>(TNonblockingServerSocket.java:79)
> E           	at org.apache.thrift.transport.TNonblockingServerSocket.<init>(TNonblockingServerSocket.java:75)
> E           	at org.apache.cassandra.thrift.TCustomNonblockingServerSocket.<init>(TCustomNonblockingServerSocket.java:39)
> E           	at org.apache.cassandra.thrift.THsHaDisruptorServer$Factory.buildTServer(THsHaDisruptorServer.java:80)
> E           	at org.apache.cassandra.thrift.TServerCustomFactory.buildTServer(TServerCustomFactory.java:55)
> E           	at org.apache.cassandra.thrift.ThriftServer$ThriftServerThread.<init>(ThriftServer.java:128)
> E           	at org.apache.cassandra.thrift.ThriftServer.start(ThriftServer.java:55)
> E           	at org.apache.cassandra.service.StorageService.startRPCServer(StorageService.java:386)
> E           	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> E           	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> E           	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> E           	at java.lang.reflect.Method.invoke(Method.java:498)
> E           	at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:71)
> E           	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> E           	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> E           	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> E           	at java.lang.reflect.Method.invoke(Method.java:498)
> E           	at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:275)
> E           	at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:112)
> E           	at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:46)
> E           	at com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:237)
> E           	at com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:138)
> E           	at com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:252)
> E           	at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
> E           	at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
> E           	at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1468)
> E           	at javax.management.remote.rmi.RMIConnectionImpl.access$300(RMIConnectionImpl.java:76)
> E           	at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1309)
> E           	at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1401)
> E           	at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:829)
> E           	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> E           	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> E           	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> E           	at java.lang.reflect.Method.invoke(Method.java:498)
> E           	at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:357)
> E           	at sun.rmi.transport.Transport$1.run(Transport.java:200)
> E           	at sun.rmi.transport.Transport$1.run(Transport.java:197)
> E           	at java.security.AccessController.doPrivileged(Native Method)
> E           	at sun.rmi.transport.Transport.serviceCall(Transport.java:196)
> E           	at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:573)
> E           	at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:834)
> E           	at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:688)
> E           	at java.security.AccessController.doPrivileged(Native Method)
> E           	at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:687)
> E           	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
> E           	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
> E           	at java.lang.Thread.run(Thread.java:748)
> ../env/src/ccm/ccmlib/node.py:2162: ToolError
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

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