[google-appengine] Re: Datastore String length limit of 1,500 bytes when using JDO

2017-03-05 Thread 'Adam (Cloud Platform Support)' via Google App Engine
There's no special JDO extension for Datastore that will automatically treat a String as Text, unfortunately. Even if there was, setting 'unindexed' for a String property wouldn't be a big enough hint to treat it as Text, because there's still a difference in Datastore between an unindexed Stri

[google-appengine] Re: Datastore String length limit of 1,500 bytes when using JDO

2017-03-03 Thread Jim
Nick, When I'm using the Datastore Console to manually update the table it will throw an error related to the index if I have the indexing turned on for the field and try to store a large value. When I turn indexing off I am able to store large strings through the console. In my Java/JDO code

[google-appengine] Re: Datastore String length limit of 1,500 bytes when using JDO

2017-03-02 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Jim, Do I understand correctly that you only see the issue when you attempt to index the field - or what's the same thing - it doesn't occur when you turn the field's indexing off? Cheers, Nick Cloud Platform Community Support On Thursday, March 2, 2017 at 1:26:02 PM UTC-5, Jim wrote: >