[jira] [Created] (CASSANDRA-11406) Include Seed Node information in nodetool info

2016-03-22 Thread Sam Goldberg (JIRA)
Sam Goldberg created CASSANDRA-11406:


 Summary: Include Seed Node information in nodetool info
 Key: CASSANDRA-11406
 URL: https://issues.apache.org/jira/browse/CASSANDRA-11406
 Project: Cassandra
  Issue Type: Improvement
Reporter: Sam Goldberg


It would be helpful to include information on seed node status in the output of 
nodetool info.

The intent is to save the trouble of going into the cassandra.yaml to verify 
seed node status. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (CASSANDRA-10445) Cassandra-stress throws max frame size error when SSL certification is enabled

2015-10-05 Thread Sam Goldberg (JIRA)
Sam Goldberg created CASSANDRA-10445:


 Summary: Cassandra-stress throws max frame size error when SSL 
certification is enabled
 Key: CASSANDRA-10445
 URL: https://issues.apache.org/jira/browse/CASSANDRA-10445
 Project: Cassandra
  Issue Type: Bug
Reporter: Sam Goldberg


Running cassandra-stress when SSL is enabled gives the following error and does 
not finish executing:

cassandra-stress write n=100
Exception in thread "main" java.lang.RuntimeException: 
org.apache.thrift.transport.TTransportException: Frame size (352518912) larger 
than max length (15728640)!
at 
org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:144)
at 
org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:110)
at 
org.apache.cassandra.stress.settings.SettingsSchema.createKeySpacesThrift(SettingsSchema.java:111)
at 
org.apache.cassandra.stress.settings.SettingsSchema.createKeySpaces(SettingsSchema.java:59)
at 
org.apache.cassandra.stress.settings.StressSettings.maybeCreateKeyspaces(StressSettings.java:205)
at org.apache.cassandra.stress.StressAction.run(StressAction.java:55)
at org.apache.cassandra.stress.Stress.main(Stress.java:109)


I was able to reproduce this issue consistently via the following steps:
1) Spin up 3 node cassandra cluster running 2.1.8
2) Perform cassandra-stress write n=100
3) Everything works!
4) Generate keystore and truststore for each node in the cluster and distribute 
appropriately 
5) Modify cassandra.yaml on each node to enable SSL:
client_encryption_options:
enabled: true
keystore: /
# require_client_auth: false
# Set trustore and truststore_password if require_client_auth is true
truststore:  /
truststore_password: 
# More advanced defaults below:
protocol: ssl
6) Restart each node.
7) Perform cassandra-stress write n=100
8) Get Frame Size error, cassandra-stress fails

This may be related to CASSANDRA-9325.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (CASSANDRA-10445) Cassandra-stress throws max frame size error when SSL certification is enabled

2015-10-05 Thread Sam Goldberg (JIRA)

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

Sam Goldberg updated CASSANDRA-10445:
-
Description: 
Running cassandra-stress when SSL is enabled gives the following error and does 
not finish executing:

{quote}
cassandra-stress write n=100
Exception in thread "main" java.lang.RuntimeException: 
org.apache.thrift.transport.TTransportException: Frame size (352518912) larger 
than max length (15728640)!
at 
org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:144)
at 
org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:110)
at 
org.apache.cassandra.stress.settings.SettingsSchema.createKeySpacesThrift(SettingsSchema.java:111)
at 
org.apache.cassandra.stress.settings.SettingsSchema.createKeySpaces(SettingsSchema.java:59)
at 
org.apache.cassandra.stress.settings.StressSettings.maybeCreateKeyspaces(StressSettings.java:205)
at org.apache.cassandra.stress.StressAction.run(StressAction.java:55)
at org.apache.cassandra.stress.Stress.main(Stress.java:109)
{quote}

I was able to reproduce this issue consistently via the following steps:
1) Spin up 3 node cassandra cluster running 2.1.8
2) Perform cassandra-stress write n=100
3) Everything works!
4) Generate keystore and truststore for each node in the cluster and distribute 
appropriately 
5) Modify cassandra.yaml on each node to enable SSL:
client_encryption_options:
enabled: true
keystore: /
# require_client_auth: false
# Set trustore and truststore_password if require_client_auth is true
truststore:  /
truststore_password: 
# More advanced defaults below:
protocol: ssl
6) Restart each node.
7) Perform cassandra-stress write n=100
8) Get Frame Size error, cassandra-stress fails

This may be related to CASSANDRA-9325.

  was:
Running cassandra-stress when SSL is enabled gives the following error and does 
not finish executing:

cassandra-stress write n=100
Exception in thread "main" java.lang.RuntimeException: 
org.apache.thrift.transport.TTransportException: Frame size (352518912) larger 
than max length (15728640)!
at 
org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:144)
at 
org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:110)
at 
org.apache.cassandra.stress.settings.SettingsSchema.createKeySpacesThrift(SettingsSchema.java:111)
at 
org.apache.cassandra.stress.settings.SettingsSchema.createKeySpaces(SettingsSchema.java:59)
at 
org.apache.cassandra.stress.settings.StressSettings.maybeCreateKeyspaces(StressSettings.java:205)
at org.apache.cassandra.stress.StressAction.run(StressAction.java:55)
at org.apache.cassandra.stress.Stress.main(Stress.java:109)


I was able to reproduce this issue consistently via the following steps:
1) Spin up 3 node cassandra cluster running 2.1.8
2) Perform cassandra-stress write n=100
3) Everything works!
4) Generate keystore and truststore for each node in the cluster and distribute 
appropriately 
5) Modify cassandra.yaml on each node to enable SSL:
client_encryption_options:
enabled: true
keystore: /
# require_client_auth: false
# Set trustore and truststore_password if require_client_auth is true
truststore:  /
truststore_password: 
# More advanced defaults below:
protocol: ssl
6) Restart each node.
7) Perform cassandra-stress write n=100
8) Get Frame Size error, cassandra-stress fails

This may be related to CASSANDRA-9325.


> Cassandra-stress throws max frame size error when SSL certification is enabled
> --
>
> Key: CASSANDRA-10445
> URL: https://issues.apache.org/jira/browse/CASSANDRA-10445
> Project: Cassandra
>  Issue Type: Bug
>Reporter: Sam Goldberg
>
> Running cassandra-stress when SSL is enabled gives the following error and 
> does not finish executing:
> {quote}
> cassandra-stress write n=100
> Exception in thread "main" java.lang.RuntimeException: 
> org.apache.thrift.transport.TTransportException: Frame size (352518912) 
> larger than max length (15728640)!
> at 
> org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:144)
> at 
> org.apache.cassandra.stress.settings.StressSettings.getRawThriftClient(StressSettings.java:110)
> at 
> org.apache.cassandra.stress.settings.SettingsSchema.createKeySpacesThrift(SettingsSchema.java:111)
> at 
> org.apache.cassandra.stress.settings.SettingsSchema.createKeySpaces(SettingsSchema.java:59)
> at 
> org.apache.cassandra.stress.settings.StressSettings.maybeCreateKeyspaces(StressSettings.java:205)
> at