mirror of
https://github.com/juspay/services-flake.git
synced 2024-11-20 14:45:35 +03:00
6aeb0eafe6
* cassandra: init service * cassandra: add cassandra/conf files * cassandra_test: change package to cassandra_4 * update readiness_probe * update cassandra_test * cassandra: add doc * cassandra_4 doesn't require python-2 --------- Co-authored-by: shivaraj-bh <sbh69840@gmail.com>
715 B
715 B
Cassandra
Cassandra is a free and open-source, distributed, wide-column store, NoSQL database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure.
Getting Started
# In `perSystem.process-compose.<name>`
{
services.cassandra."cass1".enable = true;
}
{#tips}
Tips & Tricks
{#change-port}
Change the default port
By default, the Cassandra server is started on port 9042
. To change the port, we can use the following config:
{
services.cassandra."cass1" = {
enable = true;
nativeTransportPort = 9043;
};
}