[appengine-java] Request-URI Too Large

2011-03-02 Thread Lucian Baciu
I just started getting Request-URI Too Large messages when authenticating with Openid using the Users Service. It seems there is a new followup parameter added to the OpenId URL request (which is exactly the same as the continue parameter) making the request too large. Thanks, Lucian -- You

[appengine-java] Specify fields in select queries

2010-10-13 Thread Lucian Baciu
Are there any plans to add to AppEngine the possibility to specifying entity fields in select queries? For example: Select name from Person. It would be nice to have this feature to avoid the serialization overhead for entities that have list properties that do not need to be retrieved. Thanks,

Re: [appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-29 Thread Lucian Baciu
Hi Martin, Yes, I used RequestDispatcher.forward to redirect to the blobstore URL. Yes, I had to rewrite the request using HttpServletRequestWrapper to set the Content-Type header to multipart-form-data and set the body data. Unfortunately, this only worked on the development server, when

[appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-15 Thread Lucian Baciu
, Lucian Baciu lucianba...@gmail.com wrote: What I meant is actually send POST requests using the URL Fetch API to the blobstore. I've done a test and the request limit does apply :( so I can't send files larger then 1MB in size. My app has a dropbox servlet (i.e. users send emails

Re: [appengine-java] 1MB URL Fetch limit and blobstore service

2010-09-13 Thread Lucian Baciu
(Google) ikai.l+gro...@google.comikai.l%2bgro...@google.com wrote: No. You will be able to upload large files to the blobstore. On Mon, Sep 13, 2010 at 6:54 AM, Lucian Baciu lucianba...@gmail.comwrote: Does the 1MB request limit listed here: http://code.google.com/appengine/docs/java

Re: [appengine-java] Re: Reindex unindexed properties

2010-07-31 Thread Lucian Baciu
: UPDATE MyEntity SET myproperty=myproperty Vaclav On 30 čnc, 21:06, Lucian Baciu lucianba...@gmail.com wrote: I just did: incremented a property with 1 (other than the unindexed property which is a Key), then put the entity back to the datastore but still unindexed On Fri, Jul 30, 2010

[appengine-java] Reindex unindexed properties

2010-07-30 Thread Lucian Baciu
I have an entity with an unindexed property that I now need to index. So, I've iterated over all entities retrieved each one and then updated back to the datastore (touch each one (fetch it then put it). However, the unindexed property is still unindexed, if I run a query on that specific property

Re: [appengine-java] Reindex unindexed properties

2010-07-30 Thread Lucian Baciu
it. On Fri, Jul 30, 2010 at 11:35 AM, Lucian Baciu lucianba...@gmail.comwrote: I have an entity with an unindexed property that I now need to index. So, I've iterated over all entities retrieved each one and then updated back to the datastore (touch each one (fetch it then put it). However

[appengine-java] Re: GAE 1.3.1 java.io.IOException: Truncated quoted printable data when processing a Hotmail email

2010-03-23 Thread Lucian Baciu
();  } catch (e) {    return FixedQuotedPrintableParser.parse(msg.getNativeStream)  } } I'll post the real code when i get a chance. On Mar 21, 3:48 pm, Lucian Baciu lucianba...@gmail.com wrote: The mail processing API doesn't seem to work when processing a Hotmail email message. I get

[appengine-java] Google Accounts Java API and Google Apps

2010-01-27 Thread Lucian Baciu
1. The UserService createLoginURL method accepts a authDomain String parameter, documented as authentication domain to use. What does this mean, what domain? Can I set it to any Google Apps domain so that a user from that domain can sign in? And what does For trusted apps only from the method's

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Lucian Baciu
also want to look at inserting entities asynchronously via the Task Queue. It won't reduce the insert time, but it will reduce the amount of time your application spends serving a response to a user. On Mon, Jan 18, 2010 at 11:30 AM, Lucian Baciu lucianba...@gmail.comwrote: That's a great

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Lucian Baciu
, Jan 20, 2010 at 1:59 PM, Lucian Baciu lucianba...@gmail.com wrote: In total my model has about 4000 entities. The shape of my model is like this: a root entity that has many owned one to many relationships (about 10), and each children collection can have hundreds or thousands of child

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Lucian Baciu
Sorry, I have 4000 entities in the entity group (child entities). On Jan 21, 12:21 am, Ikai L (Google) ika...@google.com wrote: Do you have 4000 entities total? Or 4000 child entities for the model? On Wed, Jan 20, 2010 at 2:04 PM, Lucian Baciu lucianba...@gmail.com wrote: This is what

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-18 Thread Lucian Baciu
://code.google.com/events/io/2009/sessions/BuildingScalableComple...How are your models current set up? On Fri, Jan 15, 2010 at 1:10 AM, Lucian Baciu lucianba...@gmail.com wrote: I have a root User entity and a child Note entity. Each User can have many Note entities. The Note entity has

[appengine-java] Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-15 Thread Lucian Baciu
I have a root User entity and a child Note entity. Each User can have many Note entities. The Note entity has four indices. I've noticed that as the number of Note entities for a User increases so does the request time/latency and CPU used on Note insert operations. When the number on Note

[appengine-java] Query by grandparent

2009-11-10 Thread Lucian Baciu
Is there a way to query for entities based on their grandparent? For example, suppose we have a root A entity, a B entity having A as parent, and a C entity having B as parent (A - B - C). Is is possible to query for all C entities in the database that have A entity as grand parent? Thanks