Max size in MariaDB is like 107340000 something characters, and when I try to create a string with longer than 100000 it errors like this
TypeScript
Operation failed: AppwriteException [Error]: Invalid document structure: Attribute "data" has invalid type. Value must be a valid string and no longer than 100000 chars
{
code: 400,
type: 'document_invalid_structure',
response: {
message: 'Invalid document structure: Attribute "data" has invalid type. Value must be a valid string and no longer than 100000 chars',
code: 400,
type: 'document_invalid_structure',
version: '1.5.3'
}
}
TL;DR
Developers are trying to create a string larger than 100,000 characters in MariaDB but getting an error due to the max size limit being around 107,340,000 characters. The error message states that the attribute "data" must be a valid string no longer than 100,000 characters.to clarify, the max size is 1073741824
Recommended threads
- Empty listRows() response
Hi there, I'm shehryar, I'm new to react native and appwrite as well, I'm following a tutorial, what's surprising is the listRows({databaseId, tableId, queries}...
- Failed function deployments
I am using appwrite 1.8.0 (self hosted) and trying to manually deploy a python function. I am using appwrite from 0.x and went through multiple migrations. So ...
- Skip total counts crash the query
Hello, When adding the total parameter (either true, the default, or false) to the listRows function, it raises the following error: `type 'bool' is not a sub...