Re: [google-appengine] Update about the App Engine issues tracker

2011-01-12 Thread 风笑雪
Hi Ikai, I'm glad to see this change. Some issues that reported by me almost a year ago still remains in new status, so I just thought your team had no much time to take care of our issues. When I got something need to be fixed immediately, I also found it was hard to contact any of your guys. I

[google-appengine] Re: Index Issue

2011-01-12 Thread Bala
Hi, Sorry I forget to mention about the Application details, Application-Name :- saravanasleaveapplication Application App spot URL : - http://saravanasleaveapplication.appspot.com Datastore Index url : - https://appengine.google.com/dat

[google-appengine] Re: Index Issue

2011-01-12 Thread Bala
On Jan 12, 1:20 pm, Bala wrote: > There are 58 indexes required for my  application.  In Data store > Indexes there are around 198 indexes of which 92 are in building state > they have not yet  out  and 109 are in Serving mode.I want indexes in > building state to be listed as errors state. > >

[google-appengine] Re: Index Issue

2011-01-12 Thread Bala
On Jan 12, 1:20 pm, Bala wrote: > There are 58 indexes required for my  application.  In Data store > Indexes there are around 198 indexes of which 92 are in building state > they have not yet error'd out  and 109 are in Serving mode.I want indexes in > building state to be listed as errors stat

Re: [google-appengine] NeedIndexError: no matching index found - but index.yaml has the necessary definitions

2011-01-12 Thread Robert Kluin
The index sate should be serving. If you're still having this issue, what index does the error say you need and what does your index.yaml have in it? Robert On Mon, Jan 10, 2011 at 14:27, Gaba wrote: > hi there > > i still get this error. in the admin view everything is build and the >

Re: [google-appengine] Unable to update

2011-01-12 Thread Robert Kluin
Did you authenticate? I'm not sure where the Java SDK stores its cookies, but the Python version stores them in a file in your home directory called .appcfg_cookies. You might try deleting your .appcfg_cookies file then try deploying your app again. Robert On Tue, Jan 11, 2011 at 23:24,

Re: [google-appengine] Unable to send mail

2011-01-12 Thread Robert Kluin
Hi, If you want help you'll need to include an error message, and maybe some code. Maybe you also want to mention useful info such as whether or not your code works on production. Robert On Wed, Jan 12, 2011 at 00:08, Jeevan wrote: > Hello all, > I have a application which uses googl

Re: [google-appengine] Is there any way to change the IP address of a GAE application when getting url from other site?

2011-01-12 Thread Robert Kluin
Hi Qiwei, No, you can not control that, URLFetches come from a pool of IP addresses. Perhaps you can work with the service provider, or use some other machines as proxies for your request? Robert On Tue, Jan 11, 2011 at 21:53, Qiwei Ye wrote: > Hi, >  I am developing a GAE applicatio

Re: [google-appengine] Can i influence the number of instances?

2011-01-12 Thread Robert Kluin
Well, provided you keep your latencies at a 'reasonable' level. The lower your latency the better. Robert On Wed, Jan 12, 2011 at 17:15, djidjadji wrote: > They will be created automatic when the request counts goes up. > > 2011/1/12 willtenner : >> Hey, >> >> can i increase the number

[google-appengine] Re: Alfred Fuller - "... So we've done that ..." : ZigZag merge join += Sort

2011-01-12 Thread speedplane
Thanks for the update... very much looking forward to next gen queries and fixing the exploding index problem. Will allow my code to be much cleaner. On Jan 12, 12:22 am, Alfred Fuller wrote: > Short answer: Working on it, it will be available soon (isn't everything > always coming out soon? :-))

[google-appengine] Channel API functionality breaks in production

2011-01-12 Thread Michael Lieberman
Hi, This is my first foray into web application development so I apologize if there's something major I screwed up to begin with. My code works fine using the app engine launcher and the dev_appserver.py test server. However when I deploy the code to appspot I get an error saying that line 80 of _

[google-appengine] Re: Hourly bursts of deadline exceeded errors

2011-01-12 Thread Dan
I am experiencing the same problems on my app (id mind-well). kamens I think the issue is 4376 http://code.google.com/p/googleappengine/issues/detail?id=4376 Dan On Jan 12, 3:03 pm, kamens wrote: > Is there an Issue open for this so we can track when the change has > been made? Same problem on

Re: [google-appengine] Re: Hourly bursts of deadline exceeded errors

2011-01-12 Thread Raymond C.
Thanks so much for the reply. Now at least we know Google knows it and are trying to fix it! Thanks so much! Looking for the fix from Google as my app is having 1-2% error for the past few months due to this (all requests timeout within a the same minute very hour). -- You received this mes

[google-appengine] Update about the App Engine issues tracker

2011-01-12 Thread Ikai Lan (Google)
Hey everyone, Most if not all of you should be aware of the App Engine issues tracker: http://code.google.com/p/googleappengine/issues/list Looking back at 2010, we realized that we really could have been doing a much better job managing the

[google-appengine] How to get the email address in a MailHandlerServlet

2011-01-12 Thread nacho
I need to get the email address a...@b.c but when I do: Address[] senders = message.getFrom(); for (int i = 0; i < senders.length; i++) { fromEmails.add(senders[i].toString()); } I get (for example): "Firstname Lastname "; I there any method that I can use

Re: [google-appengine] Can i influence the number of instances?

2011-01-12 Thread djidjadji
They will be created automatic when the request counts goes up. 2011/1/12 willtenner : > Hey, > > can i increase the number of instances? The more the better :/ > > At the moment my app uses no more than 9 instances. > > -- > You received this message because you are subscribed to the Google Group

[google-appengine] Advice for a user-defined model

2011-01-12 Thread someone1
Hello All, I've been reading up on a lot for AppEngine over the past couple months. I think I'm ready to start on my project, however, I have a few questions before I start (I want to make sure my planned design will scale well). The idea isn't too hard. First, I'm going to use the multitenant fe

[google-appengine] Can i influence the number of instances?

2011-01-12 Thread willtenner
Hey, can i increase the number of instances? The more the better :/ At the moment my app uses no more than 9 instances. -- 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-appeng...@googlegroups.com

Re: [google-appengine] Re: Suggestions for Exploding Index Problem

2011-01-12 Thread Eli Jones
Hmm.. well, to explicitly support a query like this as is.. you'll have to wait for Alfred's next gen zigzag-sort query to come out. Naturally, there are all sorts of convoluted solutions... that may or may not be helpful.. depending on your specific situation. If Entries is not "too large", you

Re: [google-appengine] Twitter API Limit on High Replication Apps

2011-01-12 Thread C?sar de Tassis Filho
No, I didn't. But we, as I know, endusers (and Twitter) do not know all the IP addresses GAE uses when URLFetch API is called. So, how can we request this increase without knowing all the IP addresses? In fact, all (or, at least, most of them) IP addresses used by URLFetch in "old datacente

[google-appengine] Re: Hourly bursts of deadline exceeded errors

2011-01-12 Thread kamens
Is there an Issue open for this so we can track when the change has been made? Same problem on our app (id: khanexercises). On Jan 12, 2:54 pm, "Ikai Lan (Google)" wrote: > Hey guys, sorry about the delay getting back to you on this, but I wanted to > get the answer before posting. > > There was

Re: [google-appengine] Twitter API Limit on High Replication Apps

2011-01-12 Thread Ikai Lan (Google)
Have you raised this issue on the Twitter forums? We make a best effort to make sure that we aren't throttled by other sites, but ultimately it's their choice how they want to control traffic to their APIs. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine

Re: [google-appengine] Re: Hourly bursts of deadline exceeded errors

2011-01-12 Thread Ikai Lan (Google)
Hey guys, sorry about the delay getting back to you on this, but I wanted to get the answer before posting. There was a push made to an hour job that computes quotas. The push inadvertently locks blocks of data so they cannot be written. In the short term, we've changed the job to lock far less f

Re: [google-appengine] Problem login with google account in IE

2011-01-12 Thread Robert Kluin
Hi Tom, I've not got a copy of IE9 anywhere, but if I remember right there are similar issues with other versions if you're missing a root cert update on Windows. You sure you're fully up-to-date? Robert On Mon, Jan 10, 2011 at 01:25, Tom Wu wrote: > > Problem login with google accoun

[google-appengine] Re: Suggestions for Exploding Index Problem

2011-01-12 Thread Bill Edwards
Hi Eli, Thanks for your input. This is a clever solution to the case I brought up. However, this actually won't work for me, because I actually need to accomodate for three different queries, each with a different sort order. On Jan 12, 8:05 am, Eli Jones wrote: > If the key_name for Entries

Re: [google-appengine] Help making query faster

2011-01-12 Thread Robert Kluin
Hi Ben, How many records are you fetching at a time? Perhaps you want to limit the results you present at one time to 20 (or some other reasonable number), then use cursors to facilitate paging? Robert On Tue, Jan 11, 2011 at 13:15, Benjamin wrote: > Hi Everyone, > > A little challenge

[google-appengine] Re: How do I bulk send the same mail to multiple recipients?

2011-01-12 Thread pdknsk
I found out the answer to my second question. OverQuotaError: The API call mail.Send() required more quota than is available. -- 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-appeng...@googlegroup

[google-appengine] Re: Deployment failing

2011-01-12 Thread gg
On Jan 12, 10:07 am, Stephen Johnson wrote: > +1 > > > > > > > > On Wed, Jan 12, 2011 at 10:53 AM, vivpuri wrote: > > +1 > > > -- > > 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-appe

Re: [google-appengine] Re: Deployment failing

2011-01-12 Thread Stephen Johnson
+1 On Wed, Jan 12, 2011 at 10:53 AM, vivpuri wrote: > +1 > > -- > 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-appeng...@googlegroups.com. > To unsubscribe from this group, send email to > goo

[google-appengine] Result of a query in Datastore

2011-01-12 Thread William_SO
Hello everybody, Since I am new to GWT and GAME, I'm having some difficulties. The main one is how I show a search result in the Datastore screen. I select the Datastore and return the result on the screen to the user. Thank you in advance for the help everyone. Hugs, William Santos de Oliveira

[google-appengine] Re: Deployment failing

2011-01-12 Thread vivpuri
+1 -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit

[google-appengine] Re: Deployment failing

2011-01-12 Thread Palani
+1 On Jan 12, 9:49 pm, Ryan Goldstein wrote: > Spoke too soon; deployment is failing again. > > -Ryan > -- 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-appeng...@googlegroups.com. To unsubscribe

[google-appengine] Mail API timeout on Send

2011-01-12 Thread Ryan Baldwin
We're receiving quite a few timeouts when attempting to send mail using the Mail API. Anybody else experiencing this? File "/base/data/home/apps/daily-deal/21563.347566837950502806/app/ domain/notification.py", line 75, in send mail.send_mail(sender, text_renderer.deal_tx.email, subject, body,

[google-appengine] Re: Deployment failing

2011-01-12 Thread bFlood
+1 On Jan 12, 11:50 am, Felippe Bueno wrote: > +1 > > > > > > > > On Wed, Jan 12, 2011 at 2:49 PM, Ryan Goldstein wrote: > > Spoke too soon; deployment is failing again. > > > -Ryan > > > On Jan 12, 11:16 am, Ryan Goldstein wrote: > >> ... and now it's working again. Problem solved! > > >> -Rya

[google-appengine] Google App Engine Java and GWT Application Development book now available at Amazon

2011-01-12 Thread supercobra
Hello there, I just wanted to inform the community that our book Google App Engine Java and GWT Application Development is now also available at Amazon which is great for US programmers. - http://www.amazon.com/gp/product/1849690448 You can get the advanced datastore chapter for free here: http:

Re: [google-appengine] Re: Deployment failing

2011-01-12 Thread Felippe Bueno
+1 On Wed, Jan 12, 2011 at 2:49 PM, Ryan Goldstein wrote: > Spoke too soon; deployment is failing again. > > -Ryan > > > > On Jan 12, 11:16 am, Ryan Goldstein wrote: >> ... and now it's working again. Problem solved! >> >> -Ryan >> >> On Jan 12, 11:14 am, Ryan Goldstein wrote: >> >> >> >> >> >>

[google-appengine] Re: Deployment failing

2011-01-12 Thread Ryan Goldstein
Spoke too soon; deployment is failing again. -Ryan On Jan 12, 11:16 am, Ryan Goldstein wrote: > ... and now it's working again. Problem solved! > > -Ryan > > On Jan 12, 11:14 am, Ryan Goldstein wrote: > > > > > > > > > Update: On my subsequent attempt, the console showed the following > > aft

[google-appengine] Re: Deployment failing

2011-01-12 Thread Ryan Goldstein
... and now it's working again. Problem solved! -Ryan On Jan 12, 11:14 am, Ryan Goldstein wrote: > Update: On my subsequent attempt, the console showed the following > after "Initiating update." > > -- > javax.net.ssl.SSLHandshakeException: Remote host closed connection > during handshake > --

[google-appengine] Re: Deployment failing

2011-01-12 Thread Ryan Goldstein
Update: On my subsequent attempt, the console showed the following after "Initiating update." -- javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake -- -Ryan On Jan 12, 11:06 am, Ryan Goldstein wrote: > I've been updating and redeploying my app today (appid: >

[google-appengine] Re: Deployment failing

2011-01-12 Thread johnP
+1 on the deployments failing. On Jan 12, 8:06 am, Ryan Goldstein wrote: > I've been updating and redeploying my app today (appid: > mobergdrmserver). It took progressively longer to deploy, and my most > recent attempt failed. > > From my Eclipse console during my most recent deployment attemp

[google-appengine] Deployment failing

2011-01-12 Thread Ryan Goldstein
I've been updating and redeploying my app today (appid: mobergdrmserver). It took progressively longer to deploy, and my most recent attempt failed. >From my Eclipse console during my most recent deployment attempt: ... Creating staging directory Scanning for jsp files. Scanning files on local di

Re: [google-appengine] Suggestions for Exploding Index Problem

2011-01-12 Thread Eli Jones
If the key_name for Entries doesn't need to be static.. and the stat1 value does not change "very often".. and you don't depend on .get_by_key_name().. I believe you could just prepend a zero padded version of stat1 to the Entries key_name like so: new_key_name = stat1.rjust(10,'0') + '_' + old_ke

[google-appengine] Re: Advice for database model

2011-01-12 Thread Jay
I would just add one short comment to this and that is there are other good reasons to use an entity group besides the transaction support. First, the parent child relationship can be a powerful construct from a design perspective. Second, queries "within" an entity group will tend to be fast as I

[google-appengine] Re: geo-targeted websites on app engine

2011-01-12 Thread l.denardo
See http://groups.google.com/group/google-appengine/browse_thread/thread/3b8dccfe496550fc/3f4f1ae7d390af78?lnk=gst&q=north+american+data+centers#3f4f1ae7d390af78 Regards Lorenzo On Jan 12, 11:16 am, Maxim Veksler wrote: > Can you please provide reference to this very important claim? > > On Tue,

[google-appengine] VOTE Casting

2011-01-12 Thread Sudheendra Chilappagari
I am developing an Android Application In which we can also vote for diff questions 1 For that you have to provide the url from where the vote procedure details are to be retrieved and by default it is http://androvote.appspot.com ! So now I want to make my own app engine in which users can pos

[google-appengine] Re: __scatter__ property

2011-01-12 Thread C?sar de Tassis Filho
Hi. I can see __scatter__ property when I go to Datastore Statistics too in most of my applications. In addition, the same day I started seeing that property in stats GAE started showing Datastore Statistics in apps that had, in the past, data stored but doesn't have anymore (like "ctassisf"

Re: [google-appengine] Re: geo-targeted websites on app engine

2011-01-12 Thread Maxim Veksler
Can you please provide reference to this very important claim? On Tue, Jan 11, 2011 at 11:19 PM, Geoffrey Spear wrote: > Appengine is entirely hosted in North American datacenters at the > moment. > > On Jan 10, 4:56 pm, brady wrote: > > I'm under development of a simple web app which will be ta

[google-appengine] Index Issue

2011-01-12 Thread Bala
There are 58 indexes required for my application. In Data store Indexes there are around 198 indexes of which 92 are in building state they have not yet out and 109 are in Serving mode.I want indexes in building state to be listed as errors state. Please help me along. Regrads Baalaaji --