Operations Errors
On this page
ERROR 1218 (08S01): Error connecting to master: master is running an incompatible version of MemSQL
Issue
This issue can be caused when trying to replicate between a v5.
Solution
You need to upgrade both clusters to 6.
ERROR 1832 (HY000): Restoring partitions on %s
. Couldn’t find backup file for partition # of database X
(there are ### partitions without backup files).
Issue
This error means that there is not enough available disk in the backup directory.
Solution
Make sure that you have sufficient disk space in the designated backup directory and retry the operation.
ERROR 2523 UNKNOWN_ ERR_ CODE: Invalid path '. . . ' for point-in-time attach:
Issue:
ERROR 2523 UNKNOWN_
If multiple bottomless databases are created on S3 in the same folder, detaching and then attaching any one of the databases leads to this error.
Solution:
Use the STORAGEID
clause in the ATTACH DATABASE command.
ERROR 2625: Operation 'BACKUP DATABASE' can't be executed on internal database('') utilized by SingleStore.
Issue
This error occurs when you attempt to backup the cluster
or memsql
databases.
Solution
These databases are internal system databases, and as such, they cannot and do not need to be backed up.
ERROR: Partition’s table metadata are out of sync for table
Issue
The most common cause for this error is an ALTER TABLE
query on a sharded table which ran partially but didn’t complete successfully.
Solutions
If the cause of the issue was a failed ALTER TABLE
as described above, possible solutions are:
-
Recreate the table.
This can be done by insert-selecting the data into a newly created table or reloading the data. For example: sql CREATE TABLE t_
copy AS SELECT * FROM t; DROP TABLE t; ALTER TABLE t_ copy RENAME AS t; -
Find the partition(s) with inconsistent table metadata, and manually run
ALTER
on the leaf partitions to correct them.
Transform for pipeline <pipeline_ name>
exited with FAILURE
. Truncated stderr:
Issue
This is a general error code; however, this error can occur when your pipeline tries to execute your transform while loading your data into SingleStore.
Solution
Place a shebang at the top of your transform file to invoke the correct interpreter.#!/usr/bin/env python3
for Python 3 or #!/usr/bin/env ruby
for Ruby).
Last modified: August 28, 2023