OleksiienkoMykyta commented on issue #1596: URL: https://github.com/apache/cassandra-gocql-driver/issues/1596#issuecomment-2693663621
Maybe it's because the ``` aio-max-nr ``` value is too low, and you have issues with your server, you can check it with ``` cat /proc/sys/fs/aio-max-nr ```, usually it's set to 65536 by default. You can try to increase it ``` echo 1048576 | sudo tee /proc/sys/fs/aio-max-nr ```. ScyllaDB is a highly optimized database that relies on direct asynchronous I/O to achieve low-latency and high-throughput performance. If the AIO limit ``` fs.aio-max-nr ``` is too low, ScyllaDB cannot efficiently handle disk operations, leading to startup failures or performance degradation. Mainly you can face it when trying to start a Scylla multinode cluster locally, see the issue(https://github.com/scylladb/scylladb/issues/15010). I would start from that. Unfortunately, the issue reporter doesn't respond and few details are provided to recreate it and test. Candidate to be closed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
