Re: Connection Latency with Cassandra 4.0.x

2023-01-11 Thread MyWorld
In addition to this, the established connection count to db is increasing on every new API hit. Ideally existing connection should be reused. Moreover even if we restart Cassandra the connection from the API end do not get killed and remains the same. On Thu, 12 Jan, 2023, 02:16 Elliott Sims, wr

Re: Connection Latency with Cassandra 4.0.x

2023-01-11 Thread Elliott Sims
Consistently 200ms, during the back-and-forth negotiation rather than the handshake? That sounds suspiciously like Nagle interacting with Delayed ACK. On Wed, Jan 11, 2023 at 8:41 AM MyWorld wrote: > Hi all, > We are facing a connection latency of 200ms between API server and db > server during

Connection Latency with Cassandra 4.0.x

2023-01-11 Thread MyWorld
Hi all, We are facing a connection latency of 200ms between API server and db server during connection. We are working with Apache cassandra 4.0.7 and open jdk ver 11.0.17. We are using php on API side and connecting using php Cassandra driver (CPP ver 2.7) with below string. $cluster = Cassandra::

Re: Cassandra 4.0 upgrade - Upgradesstables

2022-08-21 Thread Jim Shaw
Though it is not required to run upgradesstables, but upgradesstables -a will re-write the file to kick out tombstones, in sizeTieredcompaction, the largest files may stay a long time to wait for the next compaction to kick out tombstones. So it really depends, to run it or not, usually upgrades

Re: Cassandra 4.0 upgrade - Upgradesstables

2022-08-16 Thread Jai Bheemsen Rao Dhanwada
Thank you On Tue, Aug 16, 2022 at 11:48 AM C. Scott Andreas wrote: > No downside at all for 3.x -> 4.x (however, Cassandra 3.x reading 2.1 > SSTables incurred a performance hit). > > Many users of Cassandra don't run upgradesstables after 3.x -> 4.x > upgrades at all. It's not necessary to run u

Re: Cassandra 4.0 upgrade - Upgradesstables

2022-08-16 Thread C. Scott Andreas
No downside at all for 3.x -> 4.x (however, Cassandra 3.x reading 2.1 SSTables incurred a performance hit).Many users of Cassandra don't run upgradesstables after 3.x -> 4.x upgrades at all. It's not necessary to run until a hypothetical future time if/when support for reading Cassandra 3.x SST

Re: Cassandra 4.0 upgrade - Upgradesstables

2022-08-16 Thread Jai Bheemsen Rao Dhanwada
Thank you Erick, > it is going to be single-threaded by default so it will take a while to get through all the sstables on dense nodes Is there any downside if the upgradesstables take longer (example 1-2 days), other than I/O? Also when is the upgradesstable get triggered? after every node is up

Re: Cassandra 4.0 upgrade - Upgradesstables

2022-08-16 Thread Erick Ramirez
As convenient as it is, there are a few caveats and it isn't a silver bullet. The automatic feature will only kick in if there are no other compactions scheduled. Also, it is going to be single-threaded by default so it will take a while to get through all the sstables on dense nodes. In contrast,

Cassandra 4.0 upgrade - Upgradesstables

2022-08-15 Thread Jai Bheemsen Rao Dhanwada
Hello, I am evaluating the upgrade from 3.11.x to 4.0.x and as per CASSANDRA-14197 we don't need to run upgradesstables any more. We have tested this in a test environment and see that setting "-Dcassandra.automatic_sstable_upgrade=true" take

Re: unlimited repair throughput in Cassandra 4.0

2022-06-14 Thread Azamat Hackimov
Hello. I had the same issues on full repair. I've checked on various GC settings, the most performant is ZGC on Java 11, but I had some stability issues. I left G1GC settings from 3.11.x and got the same issues as yours: CPU load over 90 %, and growing count of open file descriptors (up to max all

Re: Cassandra 4.0 randomly freezes on heavy load

2022-02-25 Thread Azamat Hackimov
OK, I think I figured out what was wrong in my setup. Appears that during the upgrade course I totally missed Garbage Collector settings in jvm11-server.options. After installation from RPM it defines the default CMS garbage collector, which is totally wrong for my hi-load environment. I returned b

Re: Cassandra 4.0 randomly freezes on heavy load

2022-02-25 Thread Paulo Motta
> I can reproduce this with a huge load using dsbulk, but still can't determine the cause of the problem. Can you get a thread dump (jstack ) when the system freezes? This might be helpful to determine the cause of the freeze. Also, can you reproduce this in a simpler environment (ccm + dsbulk)?

Re: Cassandra 4.0 randomly freezes on heavy load

2022-02-25 Thread Bowen Song
Okay, that ruled it out. Anything interesting in the GC logs? Was Cassandra stuck at a GC safepoint? You may need to enable the detailed GC logs to see these. On 25/02/2022 10:02, Azamat Hackimov wrote: Hello! No, I have a directly attached NVMe disk, and there are no IO or network issues. п

Re: Cassandra 4.0 randomly freezes on heavy load

2022-02-25 Thread Azamat Hackimov
Hello! No, I have a directly attached NVMe disk, and there are no IO or network issues. пт, 25 февр. 2022 г. в 12:50, Bowen Song : > > Do you have any network based mountpoint, such as NFS or samba? I have > seen similar behaviour on other Java based applications at GC safepoint > when the networ

Re: Cassandra 4.0 randomly freezes on heavy load

2022-02-25 Thread Bowen Song
Do you have any network based mountpoint, such as NFS or samba? I have seen similar behaviour on other Java based applications at GC safepoint when the network based filesystem loses their connection and reconnects. On 25/02/2022 06:09, Azamat Hackimov wrote: Hello! I recently migrated Cassan

Cassandra 4.0 randomly freezes on heavy load

2022-02-24 Thread Azamat Hackimov
Hello! I recently migrated Cassandra from 3.11.x to 4.0 and got strange freezes on heavy load. It looks like some nodes in DC stopped responding and got DN status. I cannot check status directly on node via nodetool status or even restart Cassandra with `systemctl restart cassandra` command. Only

Re: Cassandra 4.0 upgrade from Cassandra 3x

2022-02-10 Thread manish khandelwal
You can see upgrading instructions here https://github.com/apache/cassandra/blob/cassandra-4.0.2/NEWS.txt. On Fri, Feb 11, 2022 at 2:52 AM Abdul Patel wrote: > Hi > apart from standard upgrade process any thing specific needs ti be > handled separately for this upgrade process? > > Any changes

Re: Cassandra 4.0 upgrade from Cassandra 3x

2022-02-10 Thread Erick Ramirez
Make sure you go through all the instructions in https://github.com/apache/cassandra/blob/trunk/NEWS.txt. It's also highly recommended that you upgrade to the latest 3.0.x or 3.11.x version before upgrading to 4.0. Generally there are no changes required on the client side apart from setting the p

Cassandra 4.0 upgrade from Cassandra 3x

2022-02-10 Thread Abdul Patel
Hi apart from standard upgrade process any thing specific needs ti be handled separately for this upgrade process? Any changes needed at client side w.r.t drivers?

Re: Cassandra 4.0 hanging on restart

2022-01-27 Thread Bowen Song
Hi Paul, It's only problematic if you are trying to do *a lots of* subrange incremental repairs. The whole point of incremental repair is each repair is incremental and it will only touch the recently changed data, therefore you shouldn't need to split each node into too many subranges to re

Re: Cassandra 4.0 hanging on restart

2022-01-27 Thread Paul Chandler
Thanks Erick and Bowen I do find all the different parameters for repairs confusing, and even reading up on it now, I see Datastax warns against incremental repairs with -pr, but then the code here seems to negate the need for this warning. Anyway running it like this, produces data in the syst

Re: Cassandra 4.0 hanging on restart

2022-01-27 Thread Bowen Song
Hi Erick, From the source code: https://github.com/apache/cassandra/blob/6709111ed007a54b3e42884853f89cabd38e4316/src/java/org/apache/cassandra/service/StorageService.java#L4042 The -pr option has no effect if -st and -et are specified. Therefore, the command results in an incremental repair

Re: Cassandra 4.0 hanging on restart

2022-01-26 Thread Erick Ramirez
I just came across this thread and noted that you're running repairs with -pr which are not incremental repairs. Was that a typo? Cheers!

Re: Cassandra 4.0 hanging on restart

2022-01-26 Thread Bowen Song
Yes, I understand that exposing JMX securely outside localhost involves a fair amount of work. The sidecar option will use more RAM per Cassandra node, which may or may not be an issue depending on the individual circumstance. It is not a quick win if neither of those two options are optimal fo

Re: Cassandra 4.0 hanging on restart

2022-01-26 Thread Paul Chandler
We don’t expose the JMX port outside localhost, so last time we looked it was not possible, I see now there is the sidecar option, but that sounds like there are number of caveats, particularly around resources, that may cause some issues with our setup. So at the moment reaper does not seem lik

Re: Cassandra 4.0 hanging on restart

2022-01-26 Thread Bowen Song
I'm glad that it fixed the problem. Now, may I interest you with Cassandra Reaper ? In my experience it has managed the load fairly well on large clusters. On 26/01/2022 10:19, Paul Chandler wrote: I changed the the range repair to be full repair, reset the repaired

Re: Cassandra 4.0 hanging on restart

2022-01-26 Thread Paul Chandler
I changed the the range repair to be full repair, reset the repairedAt for all SSTables and deleted the old data out of the system.repairs table. This then did not create any new rows in the system.repairs table, and the node was able to restart without any problem, so this seems to be a soluti

Re: Cassandra 4.0 hanging on restart

2022-01-25 Thread Bowen Song
That would indicate the "isSuperseded(session)" call returned false. After looking at the source code, it seems the subrange incremental repair is likely causing this. Would you mind to try either subrange full repair or full range incremental repair? You may need to reset the "repairedAt" val

Re: Cassandra 4.0 hanging on restart

2022-01-25 Thread Paul Chandler
Hi Bowen, Yes there are a large number of "Skipping delete of FINALIZED LocalSession” messages. We have a script that repairs ranges, stepping through the complete range in 5 days, this should create 1600 ranges over the 5 days, this runs commands like this: nodetool -h localhost -p 7199 repa

Re: Cassandra 4.0 hanging on restart

2022-01-24 Thread Bowen Song
From the source code I've read, by default Cassandra will run a clean up for the system.repairs table every 10 minutes, any row related to a repair that has completed over 1 day ago will be automatically removed. I highly doubt that you have ran 75,000 repairs in the 24 hours prior to shutting

Re: Cassandra 4.0 hanging on restart

2022-01-24 Thread Paul Chandler
Hi Bowen, Yes, there does seem to be a lot of rows, on one of the upgraded clusters there 75,000 rows. I have been experimenting on a test cluster, this has about a 5 minute pause, and around 15,000 rows. If I clear the system.repairs table ( by deleting the sstables ) then this does not pau

Re: Cassandra 4.0 hanging on restart

2022-01-24 Thread Bowen Song
Hmm, interesting... Try "select * from system.repairs;" in cqlsh on a slow starting node, do you get a lots of rows? This is the most obvious loop run (indirectly) by the ActiveRepairService.start(). On 24/01/2022 13:30, Romain Anselin wrote: Hi everyone, We generated a JFR profile of the st

Re: Cassandra 4.0 hanging on restart

2022-01-24 Thread Romain Anselin
Hi everyone, We generated a JFR profile of the startup phase of Cassandra with Paul, and it would appear that the time is spent in the ActiveRepairSession within the main thread (11mn of execution of the "main" thread in his environment, vs 15s in mine), which has been introduced in CASSANDRA-

Re: Cassandra 4.0 hanging on restart

2022-01-19 Thread Paul Chandler
Hi Bowen, Thanks for the reply, these have been our normal shutdowns, so we do a nodetool drain before restarting the service, so I would have thought there should not be any commtlogs However there is these messages for one commit log, But looks like it has finished quickly and correctly: IN

Re: Cassandra 4.0 hanging on restart

2022-01-19 Thread Bowen Song
Nothing obvious from the logs you posted. Generally speaking, replaying commit log is often the culprit when a node takes a long time to start. I have seen many nodes with large memtable and commit log size limit spending over half an hour replaying the commit log. I usually do a "nodetool flu

Cassandra 4.0 hanging on restart

2022-01-19 Thread Paul Chandler
Hi all, We have upgraded a couple of clusters from 3.11.6, now we are having issues when we restart the nodes. The node will either hang or take 10-30 minute to restart, these are the last messages we have in the system.log: INFO [NonPeriodicTasks:1] 2022-01-19 10:08:23,267 FileUtils.java:54

Some more tooling around Cassandra 4.0

2021-09-29 Thread Stefan Miklosovic
Hi users, I would like to highlight some tooling we put together at Instaclustr focusing / updating it to the recent Cassandra 4.0 release. We wrote a short and descriptive blog about that here (1). All these tools are completely free of charge and Apache 2.0 licensed. We hope you find them

Re: Validation of NetworkTopologyStrategy data center name in Cassandra 4.0

2021-08-10 Thread Jens Fischer
Thanks for providing the links Erick, very helpful. Although it is slightly inconvenient for me I now better understand the motivation. On 10. Aug 2021, at 10:27, Erick Ramirez mailto:erick.rami...@datastax.com>> wrote: You are correct. Cassandra no longer allows invalid DC names for NetworkTo

Re: Validation of NetworkTopologyStrategy data center name in Cassandra 4.0

2021-08-10 Thread Erick Ramirez
You are correct. Cassandra no longer allows invalid DC names for NetworkTopologyStrategy in CREATE KEYSPACE or ALTER KEYSPACE from 4.0 ( CASSANDRA-12681 ). FWIW, here is the NEWS.txt

Validation of NetworkTopologyStrategy data center name in Cassandra 4.0

2021-08-10 Thread Jens Fischer
Hi, in Cassandra 3.11.x I was able to create key spaces with basically arbitrary names for the data center. When I do this with Cassandra 4.0 I get a "ConfigurationException: Unrecognized strategy option {} passed to NetworkTopologyStrategy for keyspace ”. This breaks some unit tests i

Re: cassandra 4.0 java 11 support

2021-07-28 Thread Scott Andreas
Anecdotally, I have no issues to report running Cassandra 4.0 on JDK11 and would be supportive of removing the "experimental" classification in an upcoming release. From: Erick Ramirez Sent: Tuesday, July 27, 2021 3:57 PM To: user@cassandra.

Re: cassandra 4.0 java 11 support

2021-07-27 Thread Erick Ramirez
There's been some discussion around removing the "experimental" tag for C* 4.0 + Java 11 so by all means, we encourage everyone to try it and report back to the community if you run into issues. Java 11 support was added 2 years ago so I think most of the issues have been ironed out. Now that 4.0 i

Re: cassandra 4.0 java 11 support

2021-07-27 Thread Bowen Song
Experimental means anything can happen - dragons, unicorns, ... On 27/07/2021 21:32, CPC wrote: Hi , At cassandra site https://cassandra.apache.org/doc/latest/cassandra/new/java11.html , it says java 11 support is experiment

cassandra 4.0 java 11 support

2021-07-27 Thread CPC
Hi , At cassandra site https://cassandra.apache.org/doc/latest/cassandra/new/java11.html , it says java 11 support is experimental and not recommended for production. What is the reason for that? I mean performance or bugs? Thank you...

Re: [RELEASE] Apache Cassandra 4.0-rc2 released

2021-06-30 Thread Abdul Patel
>>>> This version is a release candidate[1] on the 4.0 series. As always, >>>> please pay attention to the release notes[2] and let us know[3] if you were >>>> to encounter any problem. >>>> >>>> Please note, the bintray location is now replaced

Re: [RELEASE] Apache Cassandra 4.0-rc2 released

2021-06-30 Thread Patrick McFadin
;>> Please note, the bintray location is now replaced with the ASF's JFrog >>> Artifactory location: https://apache.jfrog.io/artifactory/cassandra/ >>> >>> Enjoy! >>> >>> [1]: CHANGES.txt >>> https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc2 >>> [2]: NEWS.txt >>> https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-rc2 >>> [3]: https://issues.apache.org/jira/browse/CASSANDRA >>> >>

Re: [RELEASE] Apache Cassandra 4.0-rc2 released

2021-06-30 Thread Joe Obernberger
ndra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc2 [2]: NEWS.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-rc2 [3]: https://issues.apache.org/jira/browse/CASSANDRA <http://www.avg.com/email-signature?utm_medium=ema

Re: [RELEASE] Apache Cassandra 4.0-rc2 released

2021-06-30 Thread Abdul Patel
ache.jfrog.io/artifactory/cassandra/ >> >> Enjoy! >> >> [1]: CHANGES.txt >> https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc2 >> [2]: NEWS.txt >> https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-rc2 >> [3]: https://issues.apache.org/jira/browse/CASSANDRA >> >

Re: [RELEASE] Apache Cassandra 4.0-rc2 released

2021-06-30 Thread Patrick McFadin
, the bintray location is now replaced with the ASF's JFrog > Artifactory location: https://apache.jfrog.io/artifactory/cassandra/ > > Enjoy! > > [1]: CHANGES.txt > https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc2 &g

[RELEASE] Apache Cassandra 4.0-rc2 released

2021-06-30 Thread Mick Semb Wever
location is now replaced with the ASF's JFrog Artifactory location: https://apache.jfrog.io/artifactory/cassandra/ Enjoy! [1]: CHANGES.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc2 [2]: NEWS.txt https://gitbox.apache.org/repos/

Re: Cassandra 4.0 GA

2021-05-27 Thread Jai Bheemsen Rao Dhanwada
Thank you for the information On Wed, May 26, 2021 at 5:40 PM Kane Wilson wrote: > On Tue, May 25, 2021 at 6:36 AM Jai Bheemsen Rao Dhanwada < > jaibheem...@gmail.com> wrote: > >> Hello All, >> >> I see that Cassandra 4.0 RC1 is released in April, is there

Re: Cassandra 4.0 GA

2021-05-26 Thread Kane Wilson
On Tue, May 25, 2021 at 6:36 AM Jai Bheemsen Rao Dhanwada < jaibheem...@gmail.com> wrote: > Hello All, > > I see that Cassandra 4.0 RC1 is released in April, is there going to be an > official 4.0 GA release or is RC1 considered as an official GA release with > Production u

Cassandra 4.0 GA

2021-05-24 Thread Jai Bheemsen Rao Dhanwada
Hello All, I see that Cassandra 4.0 RC1 is released in April, is there going to be an official 4.0 GA release or is RC1 considered as an official GA release with Production use? If not is there a tentative timeline for the GA release?

Re: Compatibility between Cassandra 3.11 and cqlsh from Cassandra 4.0 RC1

2021-05-04 Thread Bowen Song
.org/jira/projects/CASSANDRA/summary> with the provided reproduction steps. Thanks, Paulo Em ter., 4 de mai. de 2021 às 18:22, Bowen Song escreveu: Hi all, I was using the cqlsh from Cassandra 4.0 RC1 and trying to connect to a Cassandra 3.11 cluster, and it does not appear t

Re: Compatibility between Cassandra 3.11 and cqlsh from Cassandra 4.0 RC1

2021-05-04 Thread Paulo Motta
> > cqlsh:system_auth> select * from roles; > > role | can_login | is_superuser | member_of | salted_hash > > ---+---+--+---+-- > cassandra | True | True | null | > $2a$10$8UNyioBF41/OZfcCa2aqXOHvXiNXArBHKaUUhMyPAFKpfN8byXonm > > (

Compatibility between Cassandra 3.11 and cqlsh from Cassandra 4.0 RC1

2021-05-04 Thread Bowen Song
Hi all, I was using the cqlsh from Cassandra 4.0 RC1 and trying to connect to a Cassandra 3.11 cluster, and it does not appear to be working correctly. Specificity, the "desc" command does not work at all. Steps to reproduce: # ensure you have docker installed a

Re: Cassandra 4.0 and python

2021-04-29 Thread Paul Chandler
Thanks Kane, If anyone else is interested in this, I created a Jira ticket : https://issues.apache.org/jira/browse/CASSANDRA-16641 but the response is that 3.6 is the minimum official supported version, although 2.7 still should work. Thi

Re: Cassandra 4.0 and python

2021-04-28 Thread Kane Wilson
No, I suspect the deb package dependencies haven't been updated correctly, as 2.7 should definitely still work. Could you raise a JIRA for this issue? Not sure if apt has some way to force install/ignore dependencies, however if you do that it may work, otherwise your only workaround would be to i

Cassandra 4.0 and python

2021-04-28 Thread Paul Chandler
Hi all, We have been testing with 4.0~beta2 in our setup for a few weeks and all has gone very smoothly, however when tried to install 4.0~rc1 we ran into problems with python versions. We are on Ubuntu 16.04.7 LTS so use apt to install Cassandra, and this now gives the following error: The f

Re: [RELEASE] Apache Cassandra 4.0-rc1 released

2021-04-25 Thread Joe Obernberger
Enjoy! [1]: CHANGES.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc1 [2]: NEWS.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-rc1

Re: [RELEASE] Apache Cassandra 4.0-rc1 released

2021-04-25 Thread Patrick McFadin
https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-rc1 > [2]: NEWS.txt > https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-rc1 > [3]: https://issues.apache.org/jira/browse/CASSANDRA >

[RELEASE] Apache Cassandra 4.0-rc1 released

2021-04-25 Thread Mick Semb Wever
, as the docs are not yet updated, the bintray location is now replaced with the ASF's JFrog Artifactory location: https://apache.jfrog.io/artifactory/cassandra/ Enjoy! [1]: CHANGES.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-r

Center for Internet Security Benchmark for Cassandra 4.0

2021-03-24 Thread Joseph Testa
Is anyone here on the list interested in helping out in working on the next version of the benchmark? Would love some assistance and you can potentially get your name on the document as an author :) Feel free to reach out, we're always looking for new contributors, you can check them out here: h

Re: Cassandra 4.0 and changing DC setting

2021-02-22 Thread Kane Wilson
Great thanks for testing this Paul. You're likely the first one to actually try it on 4.0. Albeit I still think we should have a flag to ALTER to do this for you... not ideal to have users messing with system tables. raft.so - Cassandra consulting, support, and managed services On Mon, Feb 22, 2

Re: Cassandra 4.0 and changing DC setting

2021-02-22 Thread Paul Chandler
Yes, I am only running this on test clusters, I don’t run anything like this without lots of tests first. Anyway this worked well, so thanks for the info. For anyone else who needs this, the cql statement to do this was: insert into system_schema.keyspaces ( keyspace_name , durable_writes, rep

Re: Cassandra 4.0 and changing DC setting

2021-02-21 Thread Kane Wilson
Make sure you test it on a practice cluster. Messing with the system tables is risky business! raft.so - Cassandra consulting, support, and managed services On Sun, Feb 21, 2021 at 11:12 PM Paul Chandler wrote: > Hi Kane, > > That sounds a good idea, I will give it a try on Monday. > > Thanks

Re: Cassandra 4.0 and changing DC setting

2021-02-21 Thread Paul Chandler
Hi Kane, That sounds a good idea, I will give it a try on Monday. Thanks Paul > On 21 Feb 2021, at 11:33, Kane Wilson wrote: > > There has been proposals to add a force/unsafe flag to alter DC but it hasn't > been actioned and at this rate seems unlikely to make it into 4.0. There is > how

Re: Cassandra 4.0 and changing DC setting

2021-02-21 Thread Kane Wilson
There has been proposals to add a force/unsafe flag to alter DC but it hasn't been actioned and at this rate seems unlikely to make it into 4.0. There is however a workaround, albeit not very user friendly. You should be able to modify the system_schema tables directly to do your DC updates. I am y

Cassandra 4.0 and changing DC setting

2021-02-19 Thread Paul Chandler
All, We have a use case where we need to change the datacenter name for a cassandra cluster, we have a script to do this that involves a short downtime. This does the following 1) Change replication factor for the system key spaces to be { ‘OLD_DC’ : ‘3’, ’NEW_DC”: ‘3’ } 2) Change the dc va

[RELEASE] Apache Cassandra 4.0-beta4 released

2020-12-30 Thread Mick Semb Wever
https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-beta4 [2]: NEWS.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-beta4 [3]: https://issues.apache.org/jira/browse/CASSANDRA

[RELEASE] Apache Cassandra 4.0-beta3 released

2020-11-04 Thread Mick Semb Wever
https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-beta3 [2]: NEWS.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-beta3 [3]: https://issues.apache.org/jira/browse/CASSANDRA

Re: Cassandra 4.0-beta1 available on FreeBSD

2020-10-27 Thread Lapo Luchini
Angelo Polo wrote: Cassandra 4.0-beta1 is now available on FreeBSD. By the way I'm runinning a 6 nodes production cluster using 3.11.6 on FreeBSD 12.1/amd64 and I'm very happy about it (thanks Angelo for maintaining the FreeBSD Port!). I hope your 4.0-beta2 patch will be accepted

[RELEASE] Apache Cassandra 4.0-beta2 released

2020-08-31 Thread Mick Semb Wever
https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-beta2 [2]: NEWS.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=NEWS.txt;hb=refs/tags/cassandra-4.0-beta2 [3]: https://issues.apache.org/jira/browse/CASSANDRA

Cassandra 4.0-beta1 available on FreeBSD

2020-07-27 Thread Angelo Polo
Cassandra 4.0-beta1 is now available on FreeBSD. You can find information about the port here: https://www.freshports.org/databases/cassandra4/ The beta can be installed from an up-to-date ports tree under databases/cassandra4. Best, Angelo

Re: [RELEASE] Apache Cassandra 4.0-beta1 released

2020-07-24 Thread Mick Semb Wever
> This version is a beta release[1] on the 4.0 series. As always, please > pay attention to the release notes[2] and let us know[3] if you were > to encounter any problem. A quick followup note to both user and dev groups. Our Beta release guidelines¹ states that there will be no further API ch

Re: [RELEASE] Apache Cassandra 4.0-beta1 released

2020-07-23 Thread Michael Semb Wever
> From NEWS.txt: > > Release builds require Java 11 + Java 8. Development builds can use Java > 8 without 11. > > Did it mean to read "Development builds can use *Java 11 without 8*."? Cassandra can be built with either JDK 8 or JDK 11. Our formal releases are built with JDK 8.

Re: [RELEASE] Apache Cassandra 4.0-beta1 released

2020-07-21 Thread Oleksandr Shulgin
please > pay attention to the release notes[2] and let us know[3] if you were > to encounter any problem. > > Enjoy! > And check out our blog post on Cassandra 4.0 beta1 > > https://cassandra.apache.org/blog/2020/07/20/apache-cassandra-4-0-beta1.html > Congratulations on movi

[RELEASE] Apache Cassandra 4.0-beta1 released

2020-07-20 Thread Mick Semb Wever
blog post on Cassandra 4.0 beta1 https://cassandra.apache.org/blog/2020/07/20/apache-cassandra-4-0-beta1.html [1]: CHANGES.txt https://gitbox.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=CHANGES.txt;hb=refs/tags/cassandra-4.0-beta1 [2]: NEWS.txt https://gitbox.apache.org/repos/asf?p

[RELEASE] Apache Cassandra 4.0-alpha4 released

2020-04-24 Thread Mick Semb Wever
source and binary distributions are listed in our download section: http://cassandra.apache.org/download/ Downloads of source and binary distributions: http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha4/apache-cassandra-4.0-alpha4-bin.tar.gz http://www.apache.org/dyn/closer.lua/cassandra/4.0

Re: [RELEASE] Apache Cassandra 4.0-alpha3 released

2020-02-07 Thread Erick Ramirez
Congratulations! 👏 For those who may not be familiar with the behind-the-scenes, this is a major milestone for the project and another step closer to the release of Apache Cassandra 4.0. I'm so excited about this news and you should be too! 🍻

Re: [RELEASE] Apache Cassandra 4.0-alpha3 released

2020-02-07 Thread Jon Haddad
binary distributions: > > http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha3/apache-cassandra-4.0-alpha3-bin.tar.gz > > http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha3/apache-cassandra-4.0-alpha3-src.tar.gz > > Debian and Redhat configurations. > >

[RELEASE] Apache Cassandra 4.0-alpha3 released

2020-02-07 Thread Mick Semb Wever
of source and binary distributions are listed in our download section: http://cassandra.apache.org/download/ Downloads of source and binary distributions: http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha3/apache-cassandra-4.0-alpha3-bin.tar.gz http://www.apache.org/dyn/closer.lua/cassandra

Re: [Discuss] num_tokens default in Cassandra 4.0

2020-02-04 Thread Carl Mueller
nd how num_tokens affects > availability, with RF=3, CLW,CLR=quorum, the cluster could tolerate to lost > at most one node and all of the tokens assigned to that node would be also > assigned to two other nodes no matter what num_tokens is, right? > > Sent using Zoho Mail <https:/

Re: [Discuss] num_tokens default in Cassandra 4.0

2020-02-04 Thread Jeremiah D Jordan
t num_tokens is, right? >> >> Sent using Zoho Mail <https://www.zoho.com/mail/> >> >> >> ==== Forwarded message >> From: Jon Haddad mailto:j...@jonhaddad.com>> >> To: mailto:d...@cassandra.apache.org>> >> Date: Tue, 04 Feb 2020 01:1

Fwd: Re: [Discuss] num_tokens default in Cassandra 4.0

2020-02-03 Thread onmstester onmstester
Thank you so much Sent using https://www.zoho.com/mail/ Forwarded message From: Max C. To: Date: Tue, 04 Feb 2020 08:37:21 +0330 Subject: Re: [Discuss] num_tokens default in Cassandra 4.0 Forwarded message Let’s say you have a 6

Re: [Discuss] num_tokens default in Cassandra 4.0

2020-02-03 Thread Max C.
@jonhaddad.com>> > To: mailto:d...@cassandra.apache.org>> > Date: Tue, 04 Feb 2020 01:15:21 +0330 > Subject: Re: [Discuss] num_tokens default in Cassandra 4.0 > Forwarded message > > I think it's a good idea to take a step back and get a

Re: Re: [Discuss] num_tokens default in Cassandra 4.0

2020-02-03 Thread Jeff Jirsa
e > From: Jon Haddad > To: > Date: Tue, 04 Feb 2020 01:15:21 +0330 > Subject: Re: [Discuss] num_tokens default in Cassandra 4.0 > Forwarded message > > I think it's a good idea to take a step back and get a high level view of > t

Fwd: Re: [Discuss] num_tokens default in Cassandra 4.0

2020-02-03 Thread onmstester onmstester
using https://www.zoho.com/mail/ Forwarded message From: Jon Haddad <mailto:j...@jonhaddad.com> To: <mailto:d...@cassandra.apache.org> Date: Tue, 04 Feb 2020 01:15:21 +0330 Subject: Re: [Discuss] num_tokens default in Cassandra 4.0 Forwa

Testing Cassandra 4.0 Pre-releases on Windows

2020-01-21 Thread Jordan West
Hi Cassandra Users, The Cassandra dev community is looking for users of Cassandra running on windows to test compatibility of the 4.0 alpha / beta / rc releases. If you run on windows and have time / resources to test, please report any compatibility issues you find to the dev mailing list or JIR

[RELEASE] Apache Cassandra 4.0-alpha2 released

2019-10-29 Thread Michael Shuler
of source and binary distributions: http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha2/apache-cassandra-4.0-alpha2-bin.tar.gz http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha2/apache-cassandra-4.0-alpha2-src.tar.gz Debian and Redhat configurations sources.list: deb http

Re: [RELEASE] Apache Cassandra 4.0-alpha1 released

2019-10-24 Thread Abdul Patel
a is a fully distributed database. It is the right choice > when you need scalability and high availability without compromising > performance. > > http://cassandra.apache.org/ > > Downloads of source and binary distributions for 4.0-alpha1: > > > http://www.apache.org/dyn/cl

[RELEASE] Apache Cassandra 4.0-alpha1 released

2019-09-08 Thread Michael Shuler
of source and binary distributions for 4.0-alpha1: http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha1/apache-cassandra-4.0-alpha1-bin.tar.gz http://www.apache.org/dyn/closer.lua/cassandra/4.0-alpha1/apache-cassandra-4.0-alpha1-src.tar.gz Debian and Redhat configurations sources.list

Re: When Apache Cassandra 4.0 will release?

2019-07-29 Thread Pandey Bhaskar
com/Ericsson/ecaudit/blob/release/c3.0.11/doc/cassandra_compatibility.md#apache-cassandra-40 > > > -- > > SIMON FONTANA OSCARSSON > Software Developer > > Ericsson > Ölandsgatan 1 > 37133 Karlskrona, swedensimon.fontana.oscars...@ericsson.comwww.ericsson.com > > &

Re: When Apache Cassandra 4.0 will release?

2019-07-26 Thread Simon Fontana Oscarsson
+, bhaskar pandey wrote: > Hi, > > When Apache Cassandra 4.0 will release? Any specific time line? I am > eagerly waiting for audit log.  > > Regards, > > - > To unsubscribe, e-mail: user-unsub

When Apache Cassandra 4.0 will release?

2019-07-26 Thread bhaskar pandey
Hi, When Apache Cassandra 4.0 will release? Any specific time line? I am eagerly waiting for audit log. Regards, - To unsubscribe, e-mail: user-unsubscr...@cassandra.apache.org For additional commands, e-mail: user-h

RE: Cassandra 4.0

2018-10-25 Thread Jacques-Henri Berthemet
Are there binary builds available for testing or is it source only? -- Jacques-Henri Berthemet -Original Message- From: Nate McCall Sent: Wednesday, October 24, 2018 10:02 PM To: Cassandra Users Subject: Re: Cassandra 4.0 When it's ready :) In all seriousness, the past two

Re: Cassandra 4.0

2018-10-24 Thread Nate McCall
When it's ready :) In all seriousness, the past two blog posts include some discussion on our motivations and current goals with regard to 4.0: http://cassandra.apache.org/blog/ On Wed, Oct 24, 2018 at 4:49 AM Abdul Patel wrote: > > Hi all, > > Any idea when 4.0 is planned to release? --

Cassandra 4.0

2018-10-23 Thread Abdul Patel
Hi all, Any idea when 4.0 is planned to release?

RE: Java 11 support in Cassandra 4.0 + Early Testing and Feedback

2018-09-07 Thread Kyrylo Lebediev
What these statements mean for Cassandra users in terms of which JDK (there are several OSS alternatives available) is the best to use in case of absence of active Oracle/Java Subscription? Regards, Kyrill From: Jonathan Haddad Sent: Thursday, August 16, 2018 9:02 PM To: user Subject: Java 11 su

Re: bigger data density with Cassandra 4.0?

2018-08-29 Thread dinesh.jo...@yahoo.com.INVALID
eature of 4.0: Streaming optimizations (https://cassandra.apache.org/ blog/2018/08/07/faster_streami ng_in_cassandra.html) Is this mean that we could have much more data density with Cassandra 4.0 (less problems than 3.X)? I mean > 10 TB of data on each node without worrying about node join/r

  1   2   >