{question}
How do I fix the error message Cant open file 'blobs' (errno: 24)
?
{question}
{answer}
The Errno 24
is the error code received from the OS by SingleStore. It means the 'blobs' file open failed because there are too many open files for that process/user. Which is most commonly encountered by misconfigured NOFILE limits. If the MemSQL process cannot open a file due to the host already at its file limit maximum, it will not be able to open the file and throw this error. To fix this, permanently increase the open files limit and the max user processes limit for the memsql
user as mentioned in the "Increase File Descriptor and Maximum Process Limits" section of our System Requirements and Recommendations guide.
{answer}