Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

max size in BlobProperty (appengine)

What is the maximum size of one BlobProperty in appengine? I'm not talking about of the Blobstore API, i'm referring to the property class BlobProperty

Please add a link who support your answers

like image 516
Kristian Damian Avatar asked Jan 15 '10 19:01

Kristian Damian


1 Answers

The limit is 1 megabyte. Docs here.

Like db.Text, a db.Blob value can be as large as 1 megabyte, but is not indexed, and cannot be used in query filters or sort orders. The db.Blob class takes a str value as an argument to its constructor. Blobs are modeled using the BlobProperty class.

like image 154
jbochi Avatar answered Sep 23 '22 23:09

jbochi