Solution:

import_transform: db.Text

On Aug 8, 2:20 am, Matt H <[email protected]> wrote:
> bulkoader.yaml:
> transformers:
>     - kind: ExampleModel
>       connector: csv
>       property_map:
>         - property: __key__
>           external_name: key
>           export_transform: transform.key_id_or_name_as_string
>         - property: data
>           external_name: data
>         - property: type
>           external_name: type
>
> model.py:
> class ExampleModel(db.Model):
>         data = db.TextProperty(required=True)
>         type = db.StringProperty(required=True)
>
> Everything seems to be fine, yet when I upload I get this error:
>
> BadValueError: Property data is 24788 bytes long; it must be 500 or
> less. Consider Text instead, which can store strings of any length.
>
> Help?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to