[appengine-java] Απ: ANN: BatchFB 2.1, a Java Facebook library with automatic batching

2011-07-15 Thread George Moschovitis
Thanks for the release, but why don't you use Future? -g. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/3i3R-OpLvjAJ. To post to

[appengine-java] download detailed loga

2011-07-15 Thread andrew
Is there anyway to download logs that include the full log entry and not just the summary line? I'd like to every night down load warnings and exceptions from the previous day, and send detail by email. If there is not already an enhancement request, do others have this need also? I would post

Re: [appengine-java] Re: [google-appengine] Re: 1.5.2 SDK Prerelease

2011-07-15 Thread Alexandru Farcaş
Hi Alfred, Thanks for clarification. I also have 2 questions: 1. For this query: SELECT * FROM Model WHERE list = :1 AND list =:2 AND list=:3 AND string :=4 ORDER BY date DESC will be enough this index? - kind: Model properties: - name: list - name: string - name: date direction:

[appengine-java] Re: Unauthorized Sender Error when trying to send an email (User logged in with Google Account)

2011-07-15 Thread Zbój
I'm having the same problem. The sender of the email is the user who's currently signed in and I'm getting this exception too. Sending emails from admin accounts works without problems. On Jul 13, 8:33 am, kghate kgh...@gmail.com wrote: The

Re: [appengine-java] Απ: ANN: BatchFB 2.1, a Java Facebook library with automatic batching

2011-07-15 Thread Jeff Schnitzer
On Thu, Jul 14, 2011 at 10:59 PM, George Moschovitis george.moschovi...@gmail.com wrote: Thanks for the release, but why don't you use Future? The Future? interface is fundamentally defective because it uses checked exceptions. Checked exceptions are one of the handful of gross design flaws

[appengine-java] Put fails with The request to API call datastore_v3.Put() was too large when Entity with Blob of 58618 bytes is put in the datastore

2011-07-15 Thread Miroslav Genov
Put fails with The request to API call datastore_v3.Put() was too large when Entity with Blob of 58618 bytes is put in the datastore com.google.code.twig.standard.BaseObjectDatastore servicePut: Problem during try 0 com.google.apphosting.api.ApiProxy$RequestTooLargeException: The request to

Re: [appengine-java] Re: Unauthorized Sender Error when trying to send an email (User logged in with Google Account)

2011-07-15 Thread jMotta
I don't think you'll be able to do this, and wait for an answer of any Googler about it is to wait a no. So far as I know, this kind of feature isn't pretty common and could lead to something undesired, try another approach or to use something outside appengine. :P *Jayr Motta* Software Developer

Re: [appengine-java] Apache Shiro on Google App Engine

2011-07-15 Thread objectuser
As far as I know, there's nothing that prevents the conditionals throughout the code. Fortunately, with GWT, you're basically coding in Java, so all of the patterns you're used to for reducing the number of conditionals in your code should apply in the same way (basically, polymorphism through

[appengine-java] Frequent DeadlineExceeededExceptions on warm up requests

2011-07-15 Thread David
I am paying for 3 reserved server instances and have a Spring based web app that isn’t doing anything fancy, initializing about 15 beans at startup. My logs show that the app can be initialized in less than 3 seconds and consumes around 4 seconds of cpu time on successful warm ups. However the

Re: [appengine-java] Re: [google-appengine] Re: 1.5.2 SDK Prerelease

2011-07-15 Thread Alfred Fuller
On Fri, Jul 15, 2011 at 12:25 AM, Alexandru Farcaş alex.far...@expert-group.biz wrote: Hi Alfred, Thanks for clarification. I also have 2 questions: 1. For this query: SELECT * FROM Model WHERE list = :1 AND list =:2 AND list=:3 AND string :=4 ORDER BY date DESC will be enough this

[appengine-java] Re: Is Google planning to offer HR datastore migration feature

2011-07-15 Thread philburk
I would also like to switch to the HR datastore. I am just in development and do not have any data that I need to keep. Can I clear out my test data and switch my current app? Or can I delete my app and then recreate it with the same name but using the HR datastore? -- You received this

Re: [appengine-python] Re: [appengine-java] Re: [google-appengine] Re: 1.5.2 SDK Prerelease

2011-07-15 Thread Alfred Fuller
Yes, you are correct and those indexes will work. It's a trade of, composite indexes 'pre-intersect' (at write time) properties while zigzag merge join 'post-intersects' properties (at read time). I left the ancestor in because it is probably very 'selective' which has the potential to greatly

[appengine-java] Higher than expected latencies, 2011 Jul 14 9-11pm PDT/GMT-7

2011-07-15 Thread Wesley C (Google)
From 9-11pm PDT/GMT-7, a set of Java applications experienced higher than normal latencies. This issue is resolved, but we are currently conducting an investigation and will follow up with more details shortly. - The Google App Engine team -- You received this message because you are subscribed

[appengine-java] URLFetch Setting User Agent

2011-07-15 Thread ANithian
Hi all, Apologies if I am missing something fundamental but I am not having any luck setting the user agent string of my URL connection to a web site I am trying to invoke. Here is my code: URL u = new URL(http://hokiesuns.appspot.com/echorequest;); HttpURLConnection uConn =

[appengine-java] Severe task queue delays after the 7/14 maintenance.

2011-07-15 Thread Jason Cahill
My app is only able to queue at about 2/3rds it's normal rate since the 7/14 maintenance. The System Status is showing green across the board, but I think there's an issue with Task Queues still! -- You received this message because you are subscribed to the Google Groups Google App Engine

[appengine-java] Re: The page isn't redirecting properly

2011-07-15 Thread fblack61
This the rest of the message. Firefox has detected that the server is redirecting the request for this address in a way that will never complete. How can I get into my account? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

Re: [appengine-java] Axis2 soap client implementation doesn't work

2011-07-15 Thread Chris Merrill
When I was researching WS clients for GAE, I found that Axis attempts to open network sockets directly, rather than using HttpUrlConnection. That was a while ago, perhaps a work-around has been found. The AccessControlException you are getting could be a result of that. Chris On 7/14/2011

Re: [appengine-java] Re: [google-appengine] Re: 1.5.2 SDK Prerelease

2011-07-15 Thread Matija
OMG... finally... zigzag merge join... Any info on query performance SELECT * FROM Model WHERE list = :1 AND list = :2 AND list = :3 ORDER BY date DESC with index - kind: Model properties: - name: list - name: date or is it highly dependent on data distribution?

Re: [appengine-python] Re: [appengine-java] Re: [google-appengine] Re: 1.5.2 SDK Prerelease

2011-07-15 Thread Alfred Fuller
:-) performance is data dependent. Here is convoluted explanation of performance: Sx = set of entities where list = :x smallest_set = min(S1.size(), S2.size(), ...) It works best when the intersection(S1, S2, S3,...) is large compared to the smallest_set. The pathological case is

[appengine-java] Re: Higher than expected latencies, 2011 Jul 14 9-11pm PDT/GMT-7

2011-07-15 Thread culov
The issue is NOT resolved -- im still getting way more 500 errors than i should be. And I'm experiencing 10 minutes or so at a time where EVERY request results in a deadline limit exceeded. On Jul 15, 10:58 am, Wesley C (Google) wesc+...@google.com wrote: From 9-11pm PDT/GMT-7, a set of Java

[appengine-java] DataStore Statistics not updated for at least 2 days

2011-07-15 Thread lp
hi all the database stats have NOT been updated for at least 2 days. it says last updated 19:10:27 but clear what day it happened. what can be done to get them updated? -lp -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view

[appengine-java] bulkloader - namespace -errors

2011-07-15 Thread Aswath Satrasala
Hello, I was trying to download the data for a particular namespace using the bulkloader tool. Following command is issued. C:\backup\vs-accounting\asterix\Program Files\Google\google_appengine\appcfg.py download_data --filename=aswath.sql3 --url=http://vs-accounting.appspot.com/r emote_api

[appengine-java] Re: GAE Eclipse Plugin for Indigo (3.7)

2011-07-15 Thread Akash Mohan
Hi David Does GPE have an option of manual install? Thanks Akash On Jul 13, 7:17 pm, David Chandler drfibona...@google.com wrote: Hi Akash, Sorry you're having problems. I just tried a fresh install of Eclipse 3.7 for Java EE Developers on Mac and I'm unable to reproduce this. If you try a