Will x64 jdk-1.8 work in Mac with Apple Silicon (M1) Chip?

Homebrew does not support OpenJDK@8 on Apple Silicon (M1/M2) but Zulu Community 8 is present as a cask. You just have to enable cask-versions repository and install zulu8 cask. brew tap homebrew/cask-versions brew install –cask zulu8 It will install the JDK in /Library/Java/JavaVirtualMachines/zulu-8.jdk/Contents/Home. You should then configure your JAVA_HOME variable for development tools to use … Read more

Cassandra cqlsh Unable to connect to any servers – 127.0.0.1:9160 (closed)> is already closed

I think the issue was the result of having a previous installation that wasn’t properly uninstalled. My user .cassandra directory had some default configs, that must have been for a different version, and prevented cqlsh from starting. rm -Rf ~/.cassandra After that, I could run cqlsh properly. $ bin/cqlsh Connected to Test Cluster at 127.0.0.1:9042. … Read more

Why don’t you start off with a “single & small” Cassandra server as you usually do it with MySQL?

TL;DR; You can even start with a single node, but you loose the highly available factor of c*. Cassandra is built for systems that handle huge volumes of data, terabytes and in some cases petabytes. Many users typically switch from MySQL (and lots of other RDBMS) to Cassandra once they find that their current DB … Read more

Is Cassandra production ready for Ruby on Rails?

Twitter is running rails on most of their front end. Fauna’s client is actually built and released by twitter, so you can be pretty certain that it’s up to date and stable on large workloads. Looking at the history of commits shows that there are frequent improvements being pushed to it, which is great. Most … Read more