[appengine-java] Framworks

2011-08-09 Thread Islam Farouk Bahnasy
Is it possible to use Struts and Hibernate with appengine? -- 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/-/D44giYK645sJ. To post to

Re: [appengine-java] Framworks

2011-08-09 Thread Hariharan Anantharaman
Struts--yes( i have used 1.3 version, but i think 2.x is also possible) Hibernate--No Thanks Hari 2011/8/9 Islam Farouk Bahnasy ifar...@gmail.com Is it possible to use Struts and Hibernate with appengine? -- You received this message because you are subscribed to the Google Groups Google

Re: [appengine-java] Framworks

2011-08-09 Thread Amrendra Tripathi
Hi Plz Any one tell, How to change the browse button style in struts. I want to change it italic. Thanks in Advance On 9 August 2011 13:17, Hariharan Anantharaman hariharan.ananthara...@gmail.com wrote: Struts--yes( i have used 1.3 version, but i think 2.x is also possible) Hibernate--No

[appengine-java] DatastoretimeExceptions

2011-08-09 Thread Aswath Satrasala
Hello All, Recently for the past 2-3 days, I see the logs with DatastoreTimeoutExceptions. Anyone experiencing the same... -Aswath www.AccountingGuru.in. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Re: Full Text Feature - Google I/O 2011

2011-08-09 Thread Pavel Kaplin
This does not work on more or less large index. Actually, it works only on lab-size data. On Aug 9, 12:52 am, gk goran.kar...@googlemail.com wrote: Search functionality in Your GAE application? I recommend Kimchy's incredibly simple and good screencast:

[appengine-java] Re: ArrayIndexOutOfBoundsException when trying to persist an ArrayList of Objects which utilise inheritence

2011-08-09 Thread Rolf Aden
The only supported inheritance mapping strategy for polymorphic relationships is currently for JDO) new-table for the base class and superclass-table for all subclasses JPA) SingleTable. This means, everything in the inheritance hierarchy ends up in one entity kind, as you have noticed. Since we

Re: [appengine-java] Framworks

2011-08-09 Thread JT
Hibernate might work with in memory database like hsql or derby but I will let ikai or google folks to confirm it. On Aug 9, 2011 3:50 AM, Amrendra Tripathi java.amren...@gmail.com wrote: Hi Plz Any one tell, How to change the browse button style in struts. I want to change it italic. Thanks

[appengine-java] Re: Query issue

2011-08-09 Thread Ronoaldo José de Lana Pereira
Hi vikceo, Googling your error message descriptionhttp://www.google.com/search?q=Unexpected+expression+type+while+parsing+query%3A+org.datanucleus.query.expression.ParameterExpression, I guess that your JDOQL syntax is incorrect. Can you check this

[appengine-java] Re: Full Text Feature - Google I/O 2011

2011-08-09 Thread gk
Pavel, are you referring to Kimchy's solution using Compass? What is Your expirience with larger indexes? Thanks! On Aug 9, 1:44 pm, Pavel Kaplin pavel.kap...@gmail.com wrote: This does not work on more or less large index. Actually, it works only on lab-size data. On Aug 9, 12:52 am, gk

[appengine-java] date comparison fails

2011-08-09 Thread Vik
Hie I am trying to execute following query: Query query = pm.newQuery(AdUsage.class, smsUseDate == :smsUseDate + vendorSeq == :vendorSeq); ListAdUsage usageList = (ListAdUsage)query.execute(today, chosenVendorSeq); the vendorSeq is matching and the passed date is: Tue Aug 09 00:00:00

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-09 Thread gk
Dimitry, that's a nice mystery... final on PMF doesn't seem to make a difference here. static members are implicitly final too, by the way (static and static final is equivalent). Class type inititialization (and thus static field initialization) is implicitly synchronized, so no worry there

[appengine-java] Re: Entity modelling

2011-08-09 Thread gk
Recommended beginner's reading: http://en.wikipedia.org/wiki/Database_normalization On Aug 7, 11:49 pm, MK Z v5s12.msc...@gmail.com wrote: Hello. I need some help. Assuming I have three tables/objects: forum, forum category, forum group. Forum - stores all topics posted by user. This

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-09 Thread Simon Knott
Whilst I don't know what could cause this error, what makes you believe that static and static final are equivalent? Static variables are in no way implicitly final. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this

[appengine-java] Re: Entity modelling

2011-08-09 Thread Simon Knott
Given that the target GAE datastore should be optimised for reads, since writes are expensive, normalization of data is by no means the way to go. Are Categories and Groups joined in any way? i.e. Has a specific Category got a set of groups, or the other way around? If not, then storing the

[appengine-java] Delay for later request

2011-08-09 Thread WillSpecht
I am have created a search bar similar to facebook that shows you names and pictures as you type into a search bar. e.g. typing jo would bring up a drop down of John Smith and Michael Jordan. This works really well on the development server, and even works really well in production, when the

[appengine-java] Re: Federated Login redirecting to Google OpenID and not /_ah/login_required on Java GAE

2011-08-09 Thread Vishal
I'm still blocked on this! Does anyone have any thoughts or pointers? Thanks! Vishal On Aug 6, 12:32 am, Vishal Arora vishalar...@gmail.com wrote: Hello Wise Java AppEngineers, I need your help to figure out what I'm doing wrong. I've enabled Federated Login for my Java app, but whenever I

Re: [appengine-java] Re: Federated Login redirecting to Google OpenID and not /_ah/login_required on Java GAE

2011-08-09 Thread JT
Are you sure documentation says you can use your own login servlet? As far as I know it always redirect to google for authentication, I hope I am wrong. On Aug 9, 2011 1:09 PM, Vishal vishalar...@gmail.com wrote: I'm still blocked on this! Does anyone have any thoughts or pointers? Thanks!

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-09 Thread dimi
gk and Simon, Thanks for you reply. After reading my own post again, I noticed I copied the wrong PMF code. I'm using this example (the mix up happened when I changed my code to the code above because I though the pmfInstance == null-check could be the problem :D) import

[appengine-java] Re: Federated Login redirecting to Google OpenID and not /_ah/login_required on Java GAE

2011-08-09 Thread Vishal
According to http://code.google.com/appengine/articles/openid.html, if you've configured your application to use Federated Login instead of Google Accounts (the default), then it should always redirect to / _ah/login_required for authentication. The only possible exception I see is the dev

[appengine-java] Re: Getting a grip on startup

2011-08-09 Thread Jose Montes de Oca
Hi John, If you have a large number of files in your WEB-INF/classes directory, that could possible be the significant factor in the slowness. Its not good to compare loading time on your development server and on production, mostly because accessing files on production take much longer than

Re: Отг: Re: Отг: Re: [appengine-java] Data is saved in the datastore when transaction is rolled back

2011-08-09 Thread Jose Montes de Oca
Does this means that If I migrate my app use the High Replication Datastore, the issue with the DatastoreTimeoutException will go away? If the DatastoreTimeoutException is related due to a M/S issue at the moment, then yes. Cheers, Jose -- You received this message because you are

[appengine-java] Re: date comparison fails

2011-08-09 Thread Vik
any advise on this plz? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Tue, Aug 9, 2011 at 8:51 PM, Vik vik@gmail.com wrote: Hie I am trying to execute following query: Query query = pm.newQuery(AdUsage.class, smsUseDate == :smsUseDate +

[google-appengine] Re: how can i delete a google apps for business account?

2011-08-09 Thread saintthor
yes. they tell me wait. i do not need apps at all. only for domain. it causes so much trouble. On Aug 9, 12:48 pm, Robert Kluin robert.kl...@gmail.com wrote: Have you checked the Apps support forums?http://www.google.com/support/a/bin/static.py?hl=enpage=contacting_s... On Mon, Aug 8,

[google-appengine] Re: there should be a better way to set domain to gae than apps

2011-08-09 Thread saintthor
yes. i made a mistake. the apps homepage is for business, hide the free apps in menu. and put a button texts free trail. i regard it free apps, registered,and fall into trouble. On Aug 9, 12:47 pm, Robert Kluin robert.kl...@gmail.com wrote: You only need to register the domain with apps.  It is

Re: [google-appengine] Increaded DeadlineExceeded / Timeout exceptions

2011-08-09 Thread Waleed Abdulla
Happening again right now and it's much worse. Even the dashboard fails 50% of the time. Most of the requests I tested are failing 90% of the time!! On Mon, Aug 8, 2011 at 8:43 AM, Will vocalster@gmail.com wrote: Same here. Console shows ~ 3% failure rate, sharply increased volumn of end

Re: [google-appengine] GWT application on GAE for a small shopping site ?

2011-08-09 Thread Pascal Voitot Dev
Hi, GAE+GWT works quite well! If you find GWT a bit too heavy for your needs, you can also have a look at the great lightweight Java framework Play! (http://www.playframework.org) which brings a very nice efficient experience in developing web sites in RAILS/iterative mode. It's really a huge

[google-appengine] Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Sandeep Koduri
there are some kind of errors showing up sudden unexpected error ::: but the system status is not showing up any changes in status. any others facing similar problems please post/reply so that this will taken into consideration and fixed soon one kind is at django extends where django is trying

[google-appengine] Re: Any suggestions for migrating an application from Google Apps Script to Google App Engine?

2011-08-09 Thread Mani Doraisamy
Joshua, You might want to take a look at http://www.orangescape.com, if you are interested in visual basic kind of application development on app engine. thanks, mani On Aug 3, 5:33 pm, Joshua Mulloy jmul...@sau4.org wrote: Hello, I have been creating an application in Google Apps Script but

[google-appengine] Host appengine.google.com returned an invalid certificate

2011-08-09 Thread 刘梁
I meet this exception when updating totally don't know why this error occurs. could anybody help me please. Here's the exceptions stack. 2011-08-08 23:43:33,706 ERROR appcfg.py:1840 An unexpected error occurred. Aborting. Traceback (most recent call last): File

[google-appengine] App was down from 2011-08-08 17:28 (EDT) to 2011-08-08 17:51 (EDT). How do I find out what happened?

2011-08-09 Thread Aaron Shepherd
My application was down for 23 minutes this afternoon. When going to the app it just stated / not found on this server. There were no instances showing in the dashboard. Now my always on instances are missing. And my monitoring is showing extremely high latency (like 15second response time).

[google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Mike Johnston
We're also experiencing a complete outage right now. On Aug 8, 11:54 pm, Sandeep Koduri sandeep.kod...@gmail.com wrote: there are some kind of errors showing up sudden unexpected error ::: but the system status is not showing up any changes in status. any others facing similar problems please

[google-appengine] Blobstore list index out of range

2011-08-09 Thread misteff25
I am trying updload a picture from a Phonegap application to my Python App Engine project. The phone app trys to upload the file but App engine returns a list index out of range error. Most of this code is very similar to some of the sample projects. I have the following code on the App Engine

Re: RE: RE: [google-appengine] Is an APP ENGINE Application Attacking websites? - DOTS user agent / browser

2011-08-09 Thread Chris Wage
I have been seeing this crap too.. around 1300 hits (~7MB of traffic) to the same URL so far today I've just blocked it via user-agent in .htaccess for now.. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Johan Euphrosine
Please open a production issue with your appid: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue Thanks in advance. On Tue, Aug 9, 2011 at 8:59 AM, Mike Johnston m...@simperium.com wrote: We're also experiencing a complete outage right now. On Aug 8, 11:54 pm,

Re: [google-appengine] Increaded DeadlineExceeded / Timeout exceptions

2011-08-09 Thread Johan Euphrosine
Can you open a production isse with your appid: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue Thanks in advance. On Tue, Aug 9, 2011 at 8:20 AM, Waleed Abdulla wal...@ninua.com wrote: Happening again right now and it's much worse. Even the dashboard fails 50%

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Waleed Abdulla
I also experienced an outage on two of my apps about an hour ago. It started with a considerable slowing down of requests, and then it went completely down, including the app engine dashboard. 15 minutes later it came back online, and it's still okay so far. During that outage period, the app

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Waleed Abdulla
Johan, It's back to normal now. My app ids are networkedblogs and networkedhub. I'm attaching my errors/second graph during the outage period. Waleed On Tue, Aug 9, 2011 at 12:22 AM, Johan Euphrosine pro...@google.com wrote: Please open a production issue with your appid:

Re: [google-appengine] Re: High CPU usage and how to improve performance

2011-08-09 Thread Johan Euphrosine
Sorry for the late followup, Your issue has already been escalated internally on July 28 2011 but single application failure usually take more time to get diagnosed than problems affecting more than one application. I just updated the production ticket with more detail on the ongoing

Re: [google-appengine] Re: High CPU usage and how to improve performance

2011-08-09 Thread Johan Euphrosine
Hi, FYI, stats I computed for the weekly community update shows that since 3 weeks, all productions issues have been escalated in less than 48 hours, so hopefully this is getting better. Also as part of the new pricing model going out later this year, we will provide SLA and Paid support, see

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Johan Euphrosine
Thanks for sharing the details, Feel free to create a production if you want more details about what happened. On Tue, Aug 9, 2011 at 9:33 AM, Waleed Abdulla wal...@ninua.com wrote: Johan,     It's back to normal now. My app ids are networkedblogs and networkedhub. I'm attaching my

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Johan Euphrosine
After taking a closer look it seems that only networkedblogs has been impacted. Do you confirm this ? FYI, I'm tracking this on the following production issue: http://code.google.com/p/googleappengine/issues/detail?id=5533 Feel free to start or comment it if you want to get notified about

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Waleed Abdulla
Johan, Yes, the logs confirm what you said, that only networkedblogs was impacted. But, during the outage, I tried to open the dashboard of the other app, networkedhub, and it failed as well and I couldn't access it so I thought it's the same issue. Maybe it was just a coincidence that I

[google-appengine] Re: Channels API

2011-08-09 Thread Hariprasath Mohankumar
Hi Robert, Thanks for the reply. Let me make this simple, How do i disconnect the channel manually so that it triggers the post to /_ah/channel/ disconnected? Is there any way to do that? -Hariprasath On Aug 9, 10:37 am, Robert Kluin robert.kl...@gmail.com wrote:

[google-appengine] Disconnect the channels manually

2011-08-09 Thread Hariprasath Mohankumar
Hi, Is there any way so that i can disconnect the channel manually and trigger the post to /_ah/channel/ disconnected? thanks, Hariprasath Mohankumar -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this

Tr.lời: Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Nguyễn Kim Kha
http://code.google.com/status/appengine/ = that's why... -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/E--zHby8J2gJ. To post to this group, send

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Johan Euphrosine
Yes, that's because the admin-console powering the dashboard was also affected by this outage. FYI, there is still ongoing issue with M/S being tracked there: http://code.google.com/p/googleappengine/issues/detail?id=5499 On Tue, Aug 9, 2011 at 10:07 AM, Waleed Abdulla wal...@ninua.com wrote:

[google-appengine] Second try: AppEngine validation needed although already validated

2011-08-09 Thread meiaestro
As my first posting has not been shown, this is my second try. Hope it does not become a redundant posting: 8 - Although I have validated my account already successfully (I already have created a GAE application) I am asked to validate my account again when I

[google-appengine] Error at Train City

2011-08-09 Thread Genaro Noach
I've facing difficulty in running the games, smoothly for a long time. And right now it is completely cannot run. Please repair it ASAP. Thanks. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] AppEngine validation needed although already validated

2011-08-09 Thread meiaestro
Although I have validated my account already successfully (I already have created a GAE application) I am asked to validate my account when I try to create a second application. Unfortunately I can not use my mobile number, as it is already in use since the first validation!? Any Ideas?

[google-appengine] Re: On backend null. 500 Internal Server Error

2011-08-09 Thread Rob B.
We're seeing this quite a bit in the past few weeks. Various percentages then on backend null. and failure. Is the GAE team aware of this issue? Here's an example... [java] Beginning server interaction for XXX... [java] 0% Created staging directory at: '/tmp/

Re: [google-appengine] Error at Train City

2011-08-09 Thread Johan Euphrosine
There is an ongoing issue affecting application running on M/S (HRD apps are fine). This is being tracked here: http://code.google.com/p/googleappengine/issues/detail?id=5499 Feel free to comment on this bug with your application id or star it if you want to be notified about updates. Thanks in

Re: [google-appengine] Re: On backend null. 500 Internal Server Error

2011-08-09 Thread Johan Euphrosine
Yes, There was a problem with deploy between 22:34 and 01:05 PST. This is being tracked here: http://code.google.com/p/googleappengine/issues/detail?id=5474 On Tue, Aug 9, 2011 at 9:30 AM, Rob B. r...@sproutbuilder.com wrote: We're seeing this quite a bit in the past few weeks. Various

[google-appengine] Re: Assigning datastore IDs based on UUIDs from an external DB

2011-08-09 Thread Murph
After a little testing, I discovered a flaw in my previously posted technique, namely that it was generating uint64 IDs, when the datastore will only accept non-zero uint63s. I'd also forgotten to include my UUIDProperty class. Here's the updated version. The question remains whether there's

[google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread tempy
Just to add my two cents, my app seems to be doing ok now, but overnight (I'm in Berlin) it seems to have experienced an outage with lots of different errors. It seems to have lost all of its instances and then new instances failed to start on warmup with this: A serious problem was encountered

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Johan Euphrosine
Sounds like a different problem, feel free to open a new production issue for this: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue On Tue, Aug 9, 2011 at 1:06 PM, tempy fay...@gmail.com wrote: Just to add my two cents, my app seems to be doing ok now, but

[google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread tempy
Johan, I assumed that production issues shouldn't be filed for problems that have been resolved. I posted here instead of filing an issue because by the time I woke up, the outage had already come and gone, the app is working fine now. On Aug 9, 1:20 pm, Johan Euphrosine pro...@google.com wrote:

[google-appengine] Re: Assigning datastore IDs based on UUIDs from an external DB

2011-08-09 Thread Tim Hoffman
A couple of questions. Why don't you use them as key_names rather than id's. Then you know you will never get a clash ? Also random keys/ids are supposedly better than monotonically increasing id's as I understand it. There's been a bit written about not using an incrementing time to create

Re: [google-appengine] App was down from 2011-08-08 17:28 (EDT) to 2011-08-08 17:51 (EDT). How do I find out what happened?

2011-08-09 Thread Johan Euphrosine
HI Aaron, The recommended way to report this kind of failure is to fill a production issue here: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue And to also provide application id. Hope that helps. On Tue, Aug 9, 2011 at 12:12 AM, Aaron Shepherd

[google-appengine] Re: Assigning datastore IDs based on UUIDs from an external DB

2011-08-09 Thread Tim Hoffman
Here is the article by Ikai http://ikaisays.com/2011/01/25/app-engine-datastore-tip-monotonically-increasing-values-are-bad/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] Re: Assigning datastore IDs based on UUIDs from an external DB

2011-08-09 Thread tempy
Murph I've been doing exactly what you're doing, creating GAE entities with UUIDs corresponding to UUID keys from an external DB. I just stick the UUID into the key's name property, and it works just fine. I think you're overcomplicating things - GAE storage is dirt cheap, its cpu time you have to

[google-appengine] URL DECODE PROBLEM

2011-08-09 Thread Chathum Henegama
Hi I am trying to get values sent in the url string , using self.request.get('fname') if the name contains any special characters like ö or í the function will only give me the 1st part of it eg . if the expected fname is like Schröder , i only get Schr part of it. I know the reason

Re: [google-appengine] App Engine 1.5.3 Pre-release SDKs are out

2011-08-09 Thread Joshua Smith
Does this mean there is no limit at all? (We've bumped into Amazon S3's 5GB limit now and then, so having an alternative which was unlimited would be HUGE for us!) On Aug 9, 2011, at 1:00 AM, Marzia Niccolai wrote: - We've removed the limit on the size of blob uploads using the Blobstore API.

Re: [google-appengine] get_original_metadata working?

2011-08-09 Thread Ed Estes
Any updates on this? With App Engine 1.5.3 Pre-releasehttps://groups.google.com/forum/#!topic/google-appengine/gi8F8lWzRJUbeing announced, I was hoping someone would acknowledge *get_original_metadata* was broken and was being addressed in the next release. --Ed -- You received this

Re: [google-appengine] get_original_metadata working?

2011-08-09 Thread Martin Ceperley
Hi Ed, I've been discussing this with Jose, and have made a little progress but still have not successfully lat/long exif data out of JPG's. He told me that in order to get a value other than None, execute_transforms() must be called on the image object. So, if you have no transformations, you

Re: [google-appengine] Re: Is there any outage at appengine.. please respond if you feel the same

2011-08-09 Thread Robert Kluin
I saw all instances get killed restarted around the same time. I observed this on both MS and HR applications. Seemed to be roughly correlated with the pre-release announcement. Robert On Tue, Aug 9, 2011 at 07:06, tempy fay...@gmail.com wrote: Just to add my two cents, my app seems

Re: [google-appengine] Re: there should be a better way to set domain to gae than apps

2011-08-09 Thread Robert Kluin
Yeah, Google sort of hid the free version. At least they've put it in he menu now. I think for a while they just had it as a little link in the bottom somewhere. On Tue, Aug 9, 2011 at 02:14, saintthor saintt...@gmail.com wrote: yes. i made a mistake. the apps homepage is for business,

Re: [google-appengine] get_original_metadata working?

2011-08-09 Thread Ed Estes
Thanks for the pointer Martin. By adding the lines of code before calling * get_original_metadata*: orgImg.rotate(0) orgImg.execute_transforms() orgImg.get_original_metadata() I am able to get the following data EXIF data now: {u'ImageLength': 480, u'ImageWidth': 640} but that really doesn't

Re: [google-appengine] GWT + GAE pom?

2011-08-09 Thread vehdra music
Ok, thanks :) I will try there. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/sADL13IX0ZcJ. To post to this group, send email to

[google-appengine] app engine home list High Replication apps with wrong url

2011-08-09 Thread Tapir
https://appengine.google.com/dashboard?app_id=s~appid What is the s~? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to

Re: [google-appengine] App Engine 1.5.3 Pre-release SDKs are out

2011-08-09 Thread Roberto Saccon
what does this mean: - The Java OAuth API now allows you to specify a custom OAuth scope. Don't we need to use thirdparty jars for signing oauth requests ??? If you integrate with Google Apps marketplace and/or Google webstore (and follow the google sample apps), then you and up with dozens

[google-appengine] Re: Increaded DeadlineExceeded / Timeout exceptions

2011-08-09 Thread johnP
Tons more deadline errors... It's been bad for a couple of weeks, but even worse in the past few days. On Aug 9, 12:23 am, Johan Euphrosine pro...@google.com wrote: Can you open a production isse with your appid:http://code.google.com/p/googleappengine/issues/entry?template=Produc...

Re: [google-appengine] Re: Increaded DeadlineExceeded / Timeout exceptions

2011-08-09 Thread Vinuth Madinur
This has been a very frustrating experience. Even application deploys throw a generic 500 error with no extra details. Too many Deadline Exceeded errors. However, it's not faced by all applications. One of my other apps works just fine. But my main app that I do for bread and butter is screwed up

[google-appengine] Re: App was down from 2011-08-08 17:28 (EDT) to 2011-08-08 17:51 (EDT). How do I find out what happened?

2011-08-09 Thread Jose Montes de Oca
Hi Aaron, I will also recommend you subscribe to the App Engine Downtime notify group: https://groups.google.com/forum/#!forum/google-appengine-downtime-notify You can also check App Engine status here: http://code.google.com/status/appengine Hope this helps, Best, Jose Montes de Oca --

Re: [google-appengine] Re: App was down from 2011-08-08 17:28 (EDT) to 2011-08-08 17:51 (EDT). How do I find out what happened?

2011-08-09 Thread Vinuth Madinur
App Engine status page has never reflected what has been happening with my app. Although it shows some Investigating symbols for a short duration, it's all green again.. as if nothing has ever happened. On Wed, Aug 10, 2011 at 2:50 AM, Jose Montes de Oca jfmontesde...@google.com wrote: Hi

Re: [google-appengine] Re: App was down from 2011-08-08 17:28 (EDT) to 2011-08-08 17:51 (EDT). How do I find out what happened?

2011-08-09 Thread Vinuth Madinur
App Engine status page has never reflected what has been happening with my app. Although it shows some Investigating symbols for a short duration, it's all green again.. as if nothing has ever happened. On Wed, Aug 10, 2011 at 2:50 AM, Jose Montes de Oca jfmontesde...@google.com wrote: Hi

Re: [google-appengine] App Engine 1.5.3 Pre-release SDKs are out

2011-08-09 Thread James Broberg
Amazon's limit is 5TB, not 5GB - although you can only upload it in up to 5GB parts for a single PUT. On 10 August 2011 02:51, Joshua Smith joshuaesm...@charter.net wrote: Does this mean there is no limit at all? (We've bumped into Amazon S3's 5GB limit now and then, so having an alternative

Re: [google-appengine] App Engine 1.5.3 Pre-release SDKs are out

2011-08-09 Thread Joshua Smith
Oh, that must have changed at some point (it used to be that the maximum size of a file in a bucket was 5GB). Good news, indeed! On Aug 9, 2011, at 5:56 PM, James Broberg wrote: Amazon's limit is 5TB, not 5GB - although you can only upload it in up to 5GB parts for a single PUT. On 10

Re: [google-appengine] AppEngine validation needed although already validated

2011-08-09 Thread Robert Kluin
Perhaps you created the first app using a different account? You can always request manual verification: https://appengine.google.com/waitlist/sms_issues Robert On Tue, Aug 9, 2011 at 04:11, meiaestro timplserv...@googlemail.com wrote: Although I have validated my account already

Re: [google-appengine] app engine home list High Replication apps with wrong url

2011-08-09 Thread Robert Kluin
Search the groups, there is much discussion about it. It indicates that an app is an HR app. On Tue, Aug 9, 2011 at 16:08, Tapir tapir@gmail.com wrote: https://appengine.google.com/dashboard?app_id=s~appid What is the s~? -- You received this message because you are subscribed to

Re: [google-appengine] Newbie GAE questions on pricing

2011-08-09 Thread Robert Kluin
It is impossible for anyone to give you any estimates without knowing some very specific details about your app. You can easily calculate it using a spreadsheet and some best-guesses though. Right now I see apps serving (well) under 1 qps per instance (even with sub 100ms latency). An instance

[google-appengine] Re: App was down from 2011-08-08 17:28 (EDT) to 2011-08-08 17:51 (EDT). How do I find out what happened?

2011-08-09 Thread MANISH DHIMAN
Yes AppEngine is also getting down since last two days in India also. It got down in after noon for both of the days and situation continued for around 15 minutes. On Aug 10, 2:32 am, Vinuth Madinur vinuth.madi...@gmail.com wrote: App Engine status page has never reflected what has been

Re: [google-appengine] Blobstore list index out of range

2011-08-09 Thread Robert Kluin
Hi, Are you correctly generating an upload url? http://code.google.com/appengine/docs/python/blobstore/overview.html#Uploading_a_Blob Robert On Mon, Aug 8, 2011 at 16:37, misteff25 mistef...@gmail.com wrote: I am trying updload a picture from a Phonegap application to my Python

[google-appengine] Re: Newbie GAE questions on pricing

2011-08-09 Thread Albert Kam
Hello Steuke, I just wanted to share my simple calculation and ask for opinions based on their experiences. Thanks for your insight. Best regards, Albert Kam -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the

Re: [google-appengine] Newbie GAE questions on pricing

2011-08-09 Thread Albert Kam
Hello Robert, Im so happy that i finally get to see some numbers based on experience ! If it's not too much for you, do you mind sharing a little about your app, like : - how many hits or bandwidths daily or monthly, - and storage usage approximation daily or monthly, - and how much

Re: [google-appengine] Re: Assigning datastore IDs based on UUIDs from an external DB

2011-08-09 Thread Robert Kluin
I tend to agree. I'm not sure how many records you're expecting, but it sure seems like a lot of complicated overhead to avoid some storage cost. Obviously if you're expecting a large number of entities or you've got a lot of indexes and/or reference properties it might save some storage space,

Re: [google-appengine] Newbie GAE questions on pricing

2011-08-09 Thread Robert Kluin
Hey Albert, I work with and maintain a variety of apps with varying loads. They are each pretty different, so I doubt me sharing my numbers with you will help much. Robert On Wed, Aug 10, 2011 at 01:32, Albert Kam moonblade.w...@gmail.com wrote: Hello Robert, Im so happy that i