[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-21 Thread Jeff Enderwick

Yeah, just trying to get clarification. Nick's email stated 10MB,
Wikipedia says 1MB with a 10MB response limit. If Wikipedia is right
and I can get 10MB in/out the door, I can always fragment (or wait, or
if Nick says it is now 10MB ... :-).

http://en.wikipedia.org/wiki/Google_App_Engine#Hard_limits

On Mon, Jul 20, 2009 at 4:00 PM, Wooblegeoffsp...@gmail.com wrote:



 On Jul 18, 8:29 pm, Jeff Enderwick jeff.enderw...@gmail.com wrote:
 Is 10MB the current limit, or is it 1MB? I was under the impression
 that the max blob size was 1MB, and max HTTP response size was 10MB.
 Do I have it right?

 API calls are limited to 1MB unless that's been changed without an
 announcement fairly recently; you couldn't get more than 1MB into an
 entity even if the blob itself could hold it.
 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Performance of indexes

2009-07-21 Thread Tonny

Thanks for the reply, I saw the video too. I'm just a bit surprised
that this actually happens a couple of time a day -and though - Im
must be doing something wrong. Guess better starting handling those
exceptions...

On 19 Jul., 01:40, djidjadji djidja...@gmail.com wrote:
 If my memory is correct Bret Slatkin talked about these type of
 queries in a I/O 2009 presentation. You don't need a composite index
 for this type of query. It uses the single property indexes.

 You have to write your code to deal with TimeOut Exceptions.
 You can retry the read when you get a TimeOut.
 This often helps but there are times that even 2 retries fail.
 You have to write code to deal with this situation.
 The TimeOut Exceptions happen for a very small percentage of Bigtable
 operations.

 2009/7/18 Tonny mezz...@gmail.com:





  Hello

  I have a simple query like this: MyEntity.all().filter('prop1 =',
  value1).filter('prop2 =', value2).get()

  Every now and then it times out. To me it looks simply enough, but as
  I started digging into the issue i came to doubt that I had the proper
  indexes in place. In a relational database I would have made a
  composite index for prop1 and prop2, but I can't find anything in the
  app engine documentation about such an index. Rather I think it
  suggests that the default indexes are sufficient for handling fetches
  filtered by two attributes.

  Does anybody know if default indexes are just as efficient as a
  composite index, would the composite index be used at all?

  Cheers
  Tonny
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Jobs Not Running (July 20th)

2009-07-21 Thread Cody

Yep, mine stopped this morning around 8am CST.

On Jul 20, 8:23 pm, Vignesh vignesh.isqu...@gmail.com wrote:
 same problem here ... ny crons on multyple applications have stopped
 running... and it has been around 6 hours...

 On Jul 20, 5:50 pm, Bill Mers bill.w.m...@gmail.com wrote:



  we are having the same problem on all of our production applications.
  existing cron jobs have stopped running, and new cron jobs never
  execute.

  Bill

  On Jul 21, 8:56 am, vivpuri vivpu...@gmail.com wrote:

   cron jobs for one of my application are also not running.

   Vivek

   On Jul 20, 7:00 pm, Brian bsmcconn...@gmail.com wrote:

Is anyone else having a problem with cron today? None of my cron jobs
have run for several hours (task queues are working fine).

Note to Google: you should include information about cron, and task
queues in the status page.

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] writing file

2009-07-21 Thread Hadar

Hi,

I want to be able to write file so I do that on the server code and to
make it works I removed the Engine from the build path.

I am getting error in Eclipse that the project doesn't have any SDK's
on its build path.
I am getting also warnings on that some jars will no be available.

I am able to modify the code and run it just want to know if that OK ?


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-21 Thread theone


 3) Along those lines, has anyone implemented something like multi-blob
 fragmentation/reassembly for storing  serving things greater than
 1MB?

I have implemented a basic app for this.

http://simpleupdown.appspot.com/ allows file upload until 10MB.

You can check codes here: 
http://code.google.com/p/appenginelargefileupload/downloads/list

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-21 Thread theone


 3) Along those lines, has anyone implemented something like multi-blob
 fragmentation/reassembly for storing  serving things greater than
 1MB?


I have implemented a basic app.

You can check from: http://simpleupdown.appspot.com/

and the codes are here: 
http://code.google.com/p/appenginelargefileupload/downloads/list

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Any interest in a Boston-area users group?

2009-07-21 Thread Mahmoud

I'm down. Maybe you can post the first session to Sponty: 
http://www.thesponty.com

On Jun 24, 11:29 am, Adam adam.crossl...@gmail.com wrote:
 Are  there any other AppEngine developers here who are located in the
 greater Boston area who would be interested in starting a Users Group?
 I am willing to organize such a thing if there is sufficient interest.
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: No applications in my admin console?

2009-07-21 Thread Wooble

Assuming the account you're using is the one you're posting from, try
appengine.google.com/a/ninjacamp.com

On Jul 21, 1:29 am, Farina far...@ninjacamp.com wrote:
 I've published the hello world application from the Python tutorial,
 however I can't seem to reach the admin console for it? I can see this
 when I run it locally, and I can hit my application 
 athttp://ninjaengine.appspot.com/...butthere's no administration??

 What could I be doing wrong? I've tried to search...but I really
 haven't been able to find anything. Additionally, I'd want to link the
 app engine account to my domain account in Google apps...but that
 doesn't seem to be working either?

 Thanks in advance!
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: https support for dev_appserver.py?

2009-07-21 Thread Jeff S (Google)
Hi Jeff,

Great suggestion. I looked in the issue tracker and it looks like someone
posted and issue for this and several share this need. Please star it since
you are interested :-)

http://code.google.com/p/googleappengine/issues/detail?id=960

Cheers,

Jeff

On Sun, Jul 19, 2009 at 12:19 AM, Jeff Enderwick
jeff.enderw...@gmail.comwrote:


 Looks like dev_appserver.py doesn't support http (secure in app.yaml).
 Any thoughts about adding that?
 Or did I miss something?

 Thanks!
 Jeff

 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Details about the the GAE Log

2009-07-21 Thread Jeff S (Google)
Hi Neal,

The log is set to a limited size, older records are deleted as space for new
entries is needed. An app running in App Engine cannot currently read its
own logs but this sounds like a good feature request.

Happy coding,

Jeff



On Sun, Jul 19, 2009 at 9:49 AM, NealWalters nealwalt...@nealwalters.comwrote:


 I thought all the info available on logging was here:
 http://code.google.com/appengine/articles/logging.html

 So the page you gave, says I can download it.

 Doesn't say if I can read the log via Python running online.  Doesn't
 say how long the log is kept (forever, or purge after x days or
 months).

 Thanks,
 Neal

 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need index quota reset

2009-07-21 Thread Jeff S (Google)
Hi Ben,

Sure! I've reset your quota and it looks like some of your indices were
stuck building (probably because of the over-quota issue) so I've nudged
those into the error state. Unfortunately they'll need to be vacuumed and
re-uploaded.

Cheers,

Jeff

On Sun, Jul 19, 2009 at 9:36 PM, Ben bhym...@gmail.com wrote:


 Hi i'm running into the Your application is exceeding a quota:
 Datastore Indices Count error.  I had over 100 indexes, but have
 since cleaned them up to be under the limit. I have run a
 vacuum_indexes, but several of my indexes seem to be stuck in building
 status.

 Can i get a quota reset?

 App ID: orangeVsBlack
 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Error registering: phone number has been sent too many messages or has already been used to confirm an account.

2009-07-21 Thread Jeff S (Google)
Hi JJ,

At this point we do not support removing an already used cell phone number,
but you can request whitelisting without SMS verification using the
following form:

http://appengine.google.com/waitlist/sms_issues

(This is from the following FAQ
http://code.google.com/appengine/kb/sms.html#error )

Once you fill out this form, you should receive access within a day or two.

Happy coding,

Jeff

On Thu, Jul 16, 2009 at 11:30 AM, jj...@appsanywhere.net 
jj...@appsanywhere.net wrote:


 Good afternoon,

 I have created a new domain to test a couple of applications under.
 However, when I go to activate my Google App Engine account, it
 complains that my cell phone has already been used to activate a
 Google App Engine account.

 I know that! I used my cell phone to activate an account under my
 personal account but decided to use a separate domain for development
 rather than my personal.

 I was unable to find how to remove my cell phone from the personal
 account.

 Thoughts?

 JJ Lay
 jj...@appsanywhere.net

 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Is this Entity limit is per row?

2009-07-21 Thread jcalfee

At the bottom of the Datastore Overview page, there is a limit set on
the entity size.  I just want clarify, is this a single entity (object
instance), or does this apply to all 'rows' for this entity?

I would think it applies to a single entity given the generous quote
on the Datastore.  I want to be sure before basing a design on this
though.

http://code.google.com/appengine/docs/java/datastore/overview.html

Limit   Amount
maximum entity size 1 megabyte

thanks,
jc

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: writing file

2009-07-21 Thread Adam

I'm not entirely sure that understand your question, but I can tell
you that AppEngine does not allow file system access. Your server-side
code can not write a file.


On Jul 21, 12:46 am, Hadar eden...@netvision.net.il wrote:
 Hi,

 I want to be able to write file so I do that on the server code and to
 make it works I removed the Engine from the build path.

 I am getting error in Eclipse that the project doesn't have any SDK's
 on its build path.
 I am getting also warnings on that some jars will no be available.

 I am able to modify the code and run it just want to know if that OK ?
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Is this Entity limit is per row?

2009-07-21 Thread Barry Hunter

Yes an 'entity' is a single 'row'. The 1Mb is per entity, not per
entity model (equivilent to a 'table'). You can use up all your data
store quote with just one model.

On 21/07/2009, jcalfee jslim...@gmail.com wrote:

  At the bottom of the Datastore Overview page, there is a limit set on
  the entity size.  I just want clarify, is this a single entity (object
  instance), or does this apply to all 'rows' for this entity?

  I would think it applies to a single entity given the generous quote
  on the Datastore.  I want to be sure before basing a design on this
  though.

  http://code.google.com/appengine/docs/java/datastore/overview.html

  Limit   Amount
  maximum entity size 1 megabyte

  thanks,
  jc

  


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Pushing data from a Google spreadsheet to an external app

2009-07-21 Thread Jeff S (Google)
Hi Murray,

I think the discussion group for the Google Docs and Google Spreadsheets
APIs would be a better place for this question.

http://groups.google.com/group/Google-Docs-Data-APIs

What you describe sounds a bit like web hooks, you want to updates to a
spreadsheet to trigger notifications to other end points on the web.

I don't think that the Spreadsheets API has this yet (it would be good to
ask just to make sure). If not yet supported, you could implement something
like this on App Engine using a design similar to that in PubSubHubbub
http://code.google.com/p/pubsubhubbub/. The app engine hub could be
responsible for polling the Spreadsheets API for changes and pushing
notifications to other endpoints (cron for polling, urlfetch for pushing
notifications downstream).

Thank you,

Jeff

On Mon, Jul 20, 2009 at 3:38 PM, Murray Spork murray.sp...@gmail.comwrote:


 Hi,

 Not sure if this is the right group to ask this - sorry in advance if
 not (and maybe you can point me to the right group to ask).

 I want to push data from a Google Spreadsheet to some external web app
 - something like what the Coda folks show in this blog:


 http://blog.coda2go.com/2008/05/30/google-apps-integration-brings-spreadsheet-joy-to-accountants-2/

 I can of course have my external app poll the spreadsheet atom feed -
 but I want it to be triggered from the spreadsheet.

 Is this possible? If so what is the easiest way to do this?

 I've seen google scripts - I imagine it will support this - but of
 course I do not have access to that.

 I've thought of other possibilities - but they all seem a bit hacky:

 * Embedded Gadget that is just a publish button
 * use something like Greasemonkey to inject custom javascript logic

 Maybe an iGoogle widget would help?

 Any ideas/ pointers would be appreciated.

 Cheers,
 Murray

 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Strange App Name Conflict - Google?

2009-07-21 Thread Devel63

I tried to register an app today, and got an error message that An
App or Google Account already exists with that name.

But, there is no email address appn...@gmail.com, there is no app
active at the requested appname, it's my company's name, and FWIW,
we've had the domain.com for years.

We do use Google Apps for our internal email.   Does that constitute
an illegal conflict?  If we have everything on appname.com, can we not
register an app named appname?

Normally, this wouldn't matter, but since you actually need to use
appname.appspot.com when doing anything over https, I guess the name
does sometimes matter.

Is there any way to track this down and see what's going on?
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too Many Versions (403)

2009-07-21 Thread Jeremy Truax

Crap I just got that, it's been working fine before that today.

I did notice they changed some quota stuff as of tomorrow, I think but
it doesn't say anything about a limited number of versions.

On Jul 19, 2:33 am, j...@zenkraft.com ja...@zenkraft.com wrote:
 Yes, I just hit this too:

 Error 403:  begin server output ---

 Too Many Versions (403)
 The application already has the maximum number of versions.
 --- end server output ---

 On Jul 19, 6:33 am, TaoGOGO yuntaotian...@gmail.com wrote:

  have you solve the problems?it happened to me the same?:(
  can you help me?

  On 6月26日, 下午3时04分, dannyr danny...@gmail.com wrote:

   I'm getting the following error. I only have 1 version of the app.
   According to Quota Details, my Deployments are only 28 of 250 (11%).
   My application name is 'launchset'.

   Deploying new version.
   2009-06-25 23:50:52,071 ERROR appcfg.py:1241 An unexpected error
   occurred. Abort
   ing.
   Traceback (most recent call last):
 File C:\Program Files\Google\google_appengine\google\appengine\tools
   \appcfg.p
   y, line 1234, in DoUpload
   self.Commit()
 File C:\Program Files\Google\google_appengine\google\appengine\tools
   \appcfg.p
   y, line 1106, in Commit
   self.Deploy()
 File C:\Program Files\Google\google_appengine\google\appengine\tools
   \appcfg.p
   y, line 1134, in Deploy
   version=self.version)
 File C:\Program Files\Google\google_appengine\google\appengine\tools
   \appengin
   e_rpc.py, line 344, in Send
   f = self.opener.open(req)
 File C:\Python25\lib\urllib2.py, line 387, in open
   response = meth(req, response)
 File C:\Python25\lib\urllib2.py, line 498, in http_response
   'http', request, response, code, msg, hdrs)
 File C:\Python25\lib\urllib2.py, line 425, in error
   return self._call_chain(*args)
 File C:\Python25\lib\urllib2.py, line 360, in _call_chain
   result = func(*args)
 File C:\Python25\lib\urllib2.py, line 506, in http_error_default
   raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
   HTTPError: HTTP Error 403: Forbidden
   Rolling back the update.
   Error 403: --- begin server output ---

   Too ManyVersions(403)
   The application already has themaximumnumberofversions.
   --- end server output ---
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too many Versions (403)

2009-07-21 Thread Jeremy Truax

I'm having the same problem. Only one version and my Daily quota of
Deployments is at a mere 12% utilization for the day. =/

On Jul 20, 11:05 am, Paul webtab...@gmail.com wrote:
 X-No-Archive: yes

 After ~100 updates without changing the version string AppEngine
 suddenly
 tells me:

  The application already has the maximum number of versions.

 Rollback or upload with other version-string did not help, the only
 version
 cant be deleted, no quote messages, after 3 days still the same.

 App-ID: w e b t a b l e t

 thanks
 Paul
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too Many Versions (403)

2009-07-21 Thread Jeremy Truax

Note It seems to be an old issue but not resolved:

http://code.google.com/p/googleappengine/issues/detail?id=690

On Jul 21, 2:44 pm, Jeremy Truax trup...@gmail.com wrote:
 Crap I just got that, it's been working fine before that today.

 I did notice they changed some quota stuff as of tomorrow, I think but
 it doesn't say anything about a limited number ofversions.

 On Jul 19, 2:33 am, j...@zenkraft.com ja...@zenkraft.com wrote:

  Yes, I just hit thistoo:

  Error 403:  begin server output ---

 TooManyVersions(403)
  The application already has the maximum number ofversions.
  --- end server output ---

  On Jul 19, 6:33 am, TaoGOGO yuntaotian...@gmail.com wrote:

   have you solve the problems?it happened to me the same?:(
   can you help me?

   On 6月26日, 下午3时04分, dannyr danny...@gmail.com wrote:

I'm getting the following error. I only have 1 version of the app.
According to Quota Details, my Deployments are only 28 of 250 (11%).
My application name is 'launchset'.

Deploying new version.
2009-06-25 23:50:52,071 ERROR appcfg.py:1241 An unexpected error
occurred. Abort
ing.
Traceback (most recent call last):
  File C:\Program Files\Google\google_appengine\google\appengine\tools
\appcfg.p
y, line 1234, in DoUpload
self.Commit()
  File C:\Program Files\Google\google_appengine\google\appengine\tools
\appcfg.p
y, line 1106, in Commit
self.Deploy()
  File C:\Program Files\Google\google_appengine\google\appengine\tools
\appcfg.p
y, line 1134, in Deploy
version=self.version)
  File C:\Program Files\Google\google_appengine\google\appengine\tools
\appengin
e_rpc.py, line 344, in Send
f = self.opener.open(req)
  File C:\Python25\lib\urllib2.py, line 387, in open
response = meth(req, response)
  File C:\Python25\lib\urllib2.py, line 498, in http_response
'http', request, response, code, msg, hdrs)
  File C:\Python25\lib\urllib2.py, line 425, in error
return self._call_chain(*args)
  File C:\Python25\lib\urllib2.py, line 360, in _call_chain
result = func(*args)
  File C:\Python25\lib\urllib2.py, line 506, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 403: Forbidden
Rolling back the update.
Error 403: --- begin server output ---

   TooManyVersions(403)
The application already has themaximumnumberofversions.
--- end server output ---
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 403 Error

2009-07-21 Thread Jeremy Truax

I'm having it too, seems to be an old issue but unresolved:

http://code.google.com/p/googleappengine/issues/detail?id=690

On Jul 12, 1:44 am, Atrus atr...@gmail.com wrote:
 I keep getting a 403 Error stating that there aretoomanyversions.
 I only have one version (and therefore unable to delete that, and
 using the rollback command does nothing.

 How can i fix this?
 Thanks in advance,
 Tim
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 403 Error

2009-07-21 Thread Rodrigo Moraes

On Tue, Jul 21, 2009 at 7:03 PM, Jeremy Truax wrote:

 I'm having it too, seems to be an old issue but unresolved:

 http://code.google.com/p/googleappengine/issues/detail?id=690

I just had this problem too some minutes ago, for the first time. I
have only 2 versions, and in quota details it shows 24 of 250
deployments today - it's far under the allowed quota.

I tried deleting version 2, and upload a new version 2 - got a 403.
I tried creating a version 3 - got a 403.

I'm blocked now by this.

Can anybody help, please?

-- rodrigo

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too many Versions (403)

2009-07-21 Thread Jeremy Truax

Here's the issue about it: 
http://code.google.com/p/googleappengine/issues/detail?id=744

I still am unable to get this working even with the workarounds people
have mentioned =/

On Jul 21, 2:49 pm, Jeremy Truax trup...@gmail.com wrote:
 I'm having the same problem. Only one version and my Daily quota of
 Deployments is at a mere 12% utilization for the day. =/

 On Jul 20, 11:05 am, Paul webtab...@gmail.com wrote:

  X-No-Archive: yes

  After ~100 updates without changing the version string AppEngine
  suddenly
  tells me:

   The application already has the maximum number of versions.

  Rollback or upload with other version-string did not help, the only
  version
  cant be deleted, no quote messages, after 3 days still the same.

  App-ID: w e b t a b l e t

  thanks
  Paul
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too many Versions (403)

2009-07-21 Thread Jeremy Truax

The issue for this is here: 
http://code.google.com/p/googleappengine/issues/detail?id=744

I'm having the same issue. I get an error Too Many Versions when I
try to appcfg.py update.

I've tried rollback as well as incrementing the version number in my
app.yaml with no resolution.

I'm on version 1 still. My daily upload quota is still at 30 of 250
for the day so it's not like that's even maxed.


On Jul 13, 5:52 pm, Jeff S (Google) j...@google.com wrote:
 Hi Tim,

 I'd be happy to look into this case more closely if you wouldn't mind
 providing your app ID. A workaround which often helps in cases like these is
 to upload a new version with a different version ID. It might be the case
 that you were over the number of uploads quotas, if that was the issue then
 it should be possible to upload today.

 Thank you,

 Jeff

 On Sat, Jul 11, 2009 at 10:31 PM, Atrus atr...@gmail.com wrote:

  I am currently unable to update anymore due to an error stating that I
  have too many versions.  In the versions section of the dashboard, I
  only have 1 version (Version 1).

  I tried the command appcfg.py rollback, but to no avail.

  Additionally, in the versions tab, the one and only version is NOT the
  default, and if I were to attempt to set it as the default (clicking
  the radio button, and click Make Default) I get a server error.
  Additionally, I cannot delete that version, as I get an error message
  stating that I am not permitted to delete the Default (which it states
  that it isn't)

  How can I fix this?
  Thanks in advance,
  Tim
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too Many Versions (403)

2009-07-21 Thread Jeremy Truax

The issue for this is here: 
http://code.google.com/p/googleappengine/issues/detail?id=744

I'm having the same issue. I get an error Too Many Versions when I
try to appcfg.py update.

I've tried rollback as well as incrementing the version number in my
app.yaml with no resolution.

I'm on version 1 still. My daily upload quota is still at 30 of 250
for the day so it's not like that's even maxed.


On Jul 18, 10:38 pm, TaoGOGO yuntaotian...@gmail.com wrote:
 have you solve the problems?it happened to me the same?:(
 can you help me?

 On 6月13日, 下午3时00分, Philippe philippe.cr...@gmail.com wrote:

  Hi,

  I got this error for 1 hours now :TooManyVersions(403)
  My quota stuff is green.
  I have only 1 version of my app.
  I tried making a new version, but it did not upload anything.

  I hope someone can help.
  here is the full error message:

  Deploying new version.
  2009-06-13 08:44:11,328 ERROR appcfg.py:1241 An unexpected error
  occurred. Aborting.
  Traceback (most recent call last):
  File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.py, line 1234, in DoUpload self.Commit()
  File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.py, line 1106, in Commit self.Deploy()
  File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.py, line 1134, in Deploy version=self.version)
  File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appengine_rpc.py, line 344, in Send f = self.opener.open(req)
  File C:\python25\lib\urllib2.py, line 387, in open response = meth
  (req, response)
  File C:\python25\lib\urllib2.py, line 498, in http_response 'http',
  request, response, code, msg, hdrs)
  File C:\python25\lib\urllib2.py, line 425, in error return
  self._call_chain(*args)
  File C:\python25\lib\urllib2.py, line 360, in _call_chain result =
  func(*args)
  File C:\python25\lib\urllib2.py, line 506, in http_error_default
  raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
  HTTPError: HTTP Error 403: Forbidden
  Rolling back the update.
  Error 403: --- begin server output ---

 TooManyVersions(403)
  The application already has themaximumnumberofversions.
  --- end server output ---

  Thank you !
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Too Many Versions

2009-07-21 Thread Jeremy Truax

The issue for this is here: 
http://code.google.com/p/googleappengine/issues/detail?id=744

I'm having the same issue. I get an error Too Many Versions when I
try to appcfg.py update.

I've tried rollback as well as incrementing the version number in my
app.yaml with no resolution.

I'm on version 1 still so I don't have the option of changing to
another version to try it as the default version is 1 and you cannot
delete the default version.

My daily upload quota is still at 30 of 250 for the day so it's not
like that's even maxed.


On Jul 13, 10:35 am, Matthew Blain matthew.bl...@google.com wrote:
 Typically this means an internal error occurred at some point when you
 deployed your application, and the fix is usually to go to the
 'Versions' section of the admin console and set the default version to
 something/something else, then upload again.

 --Matthew

 On Jul 13, 7:31 am, Ilya i...@labpixies.com wrote:

  Hi!

  I'm trying to update my app, but get TooManyVersions(403) error.
  My deployments quota is 125 (out of 250).
  I tried to change the version in app.yaml - same result
  My app id: labpixiesfacebook

  Please help.

  Thanks.
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Implemented Keyword Search

2009-07-21 Thread Jeremy Truax

Hey all, just successfully implemented a keyword search. Some of you
might have already done something like this but I thought I'd post it
for those that haven't and/or are struggling with something like it.

http://blog.zillinz.com/2009/07/keyword-search-on-google-app-engine.html


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need index quota reset

2009-07-21 Thread Ben

Thank you Jeff, i ran a vacuum_indexes about an hour ago but the
indexes are still showing in Error status not Deleting or deleted.
Should i wait for the error indexes to actually delete before re-
uploading?

On Jul 21, 12:49 pm, Jeff S (Google) j...@google.com wrote:
 Hi Ben,

 Sure! I've reset your quota and it looks like some of your indices were
 stuck building (probably because of the over-quota issue) so I've nudged
 those into the error state. Unfortunately they'll need to be vacuumed and
 re-uploaded.

 Cheers,

 Jeff

 On Sun, Jul 19, 2009 at 9:36 PM, Ben bhym...@gmail.com wrote:

  Hi i'm running into the Your application is exceeding a quota:
  Datastore Indices Count error.  I had over 100 indexes, but have
  since cleaned them up to be under the limit. I have run a
  vacuum_indexes, but several of my indexes seem to be stuck in building
  status.

  Can i get a quota reset?

  App ID: orangeVsBlack
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need index quota reset

2009-07-21 Thread Jeff S (Google)
Hi Ben,

Yes, please wait until the indexes have been deleted before uploading new
ones.

Thank you,

Jeff

On Tue, Jul 21, 2009 at 4:47 PM, Ben bhym...@gmail.com wrote:


 Thank you Jeff, i ran a vacuum_indexes about an hour ago but the
 indexes are still showing in Error status not Deleting or deleted.
 Should i wait for the error indexes to actually delete before re-
 uploading?

 On Jul 21, 12:49 pm, Jeff S (Google) j...@google.com wrote:
  Hi Ben,
 
  Sure! I've reset your quota and it looks like some of your indices were
  stuck building (probably because of the over-quota issue) so I've nudged
  those into the error state. Unfortunately they'll need to be vacuumed and
  re-uploaded.
 
  Cheers,
 
  Jeff
 
  On Sun, Jul 19, 2009 at 9:36 PM, Ben bhym...@gmail.com wrote:
 
   Hi i'm running into the Your application is exceeding a quota:
   Datastore Indices Count error.  I had over 100 indexes, but have
   since cleaned them up to be under the limit. I have run a
   vacuum_indexes, but several of my indexes seem to be stuck in building
   status.
 
   Can i get a quota reset?
 
   App ID: orangeVsBlack
 


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 403 Error

2009-07-21 Thread Rodrigo Moraes

On Tue, Jul 21, 2009 at 7:10 PM, Rodrigo Moraeswrote:
 On Tue, Jul 21, 2009 at 7:03 PM, Jeremy Truax wrote:

 I'm having it too, seems to be an old issue but unresolved:

 http://code.google.com/p/googleappengine/issues/detail?id=690

 I just had this problem too some minutes ago, for the first time. I
 have only 2 versions, and in quota details it shows 24 of 250
 deployments today - it's far under the allowed quota.

 I tried deleting version 2, and upload a new version 2 - got a 403.
 I tried creating a version 3 - got a 403.

just an update. it fixed by itself after some time. or it was because
of what I did: i deleted the version 2 in the admin panel, ran
appcfg.py rollback and then deployed a new version number 3.

not sure what is happening here or why i got the 403 previously, but well.

-- rodrigo

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] 502 Bad Gateway

2009-07-21 Thread Takashi Matsuo

Hi list,

Out of the blue, all my apps and admin console started to throw 502 Bad Gateway.
Is there anyone experiences the same issue?

-- 
Takashi Matsuo

--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 502 Bad Gateway

2009-07-21 Thread Takashi Matsuo

Its back to normal now. As far as I concerned, not quite a few people
in Japan experienced the same issue. The root cause of this issue
might be an excessive network traffic because of a solar eclipse in
Japan.

Just my 2 Yen.

The App Engine status page still gives me 502 server error.

-- 
Takashi Matsuo

On Wed, Jul 22, 2009 at 10:27 AM, Takashi
Matsuomatsuo.taka...@gmail.com wrote:
 Hi list,

 Out of the blue, all my apps and admin console started to throw 502 Bad 
 Gateway.
 Is there anyone experiences the same issue?

 --
 Takashi Matsuo


--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need index quota reset

2009-07-21 Thread Ben

Jeff, it has been about 4 hours since I ran the first vacuum_indexes
(I ran it twice more since then just to make sure) and the indexes are
still showing error status.  Does this indicate some other problem or
is it normal for Error indexes to take this long to delete?

On Jul 21, 7:05 pm, Jeff S (Google) j...@google.com wrote:
 Hi Ben,

 Yes, please wait until the indexes have been deleted before uploading new
 ones.

 Thank you,

 Jeff

 On Tue, Jul 21, 2009 at 4:47 PM, Ben bhym...@gmail.com wrote:

  Thank you Jeff, i ran a vacuum_indexes about an hour ago but the
  indexes are still showing in Error status not Deleting or deleted.
  Should i wait for the error indexes to actually delete before re-
  uploading?

  On Jul 21, 12:49 pm, Jeff S (Google) j...@google.com wrote:
   Hi Ben,

   Sure! I've reset your quota and it looks like some of your indices were
   stuck building (probably because of the over-quota issue) so I've nudged
   those into the error state. Unfortunately they'll need to be vacuumed and
   re-uploaded.

   Cheers,

   Jeff

   On Sun, Jul 19, 2009 at 9:36 PM, Ben bhym...@gmail.com wrote:

Hi i'm running into the Your application is exceeding a quota:
Datastore Indices Count error.  I had over 100 indexes, but have
since cleaned them up to be under the limit. I have run a
vacuum_indexes, but several of my indexes seem to be stuck in building
status.

Can i get a quota reset?

App ID: orangeVsBlack
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Pushing data from a Google spreadsheet to an external app

2009-07-21 Thread Murray Spork

Thanks Jeff - not quite what I'm looking for - but that gives me some
ideas. I'll follow up on the Google Spreadsheets API group.

Murray

On Jul 21, 12:58 pm, Jeff S (Google) j...@google.com wrote:
 Hi Murray,

 I think the discussion group for the Google Docs and Google Spreadsheets
 APIs would be a better place for this question.

 http://groups.google.com/group/Google-Docs-Data-APIs

 What you describe sounds a bit like web hooks, you want to updates to a
 spreadsheet to trigger notifications to other end points on the web.

 I don't think that the Spreadsheets API has this yet (it would be good to
 ask just to make sure). If not yet supported, you could implement something
 like this on App Engine using a design similar to that in 
 PubSubHubbubhttp://code.google.com/p/pubsubhubbub/. The app engine hub could 
 be
 responsible for polling the Spreadsheets API for changes and pushing
 notifications to other endpoints (cron for polling, urlfetch for pushing
 notifications downstream).

 Thank you,

 Jeff

 On Mon, Jul 20, 2009 at 3:38 PM, Murray Spork murray.sp...@gmail.comwrote:



  Hi,

  Not sure if this is the right group to ask this - sorry in advance if
  not (and maybe you can point me to the right group to ask).

  I want to push data from a Google Spreadsheet to some external web app
  - something like what the Coda folks show in this blog:

 http://blog.coda2go.com/2008/05/30/google-apps-integration-brings-spr...

  I can of course have my external app poll the spreadsheet atom feed -
  but I want it to be triggered from the spreadsheet.

  Is this possible? If so what is the easiest way to do this?

  I've seen google scripts - I imagine it will support this - but of
  course I do not have access to that.

  I've thought of other possibilities - but they all seem a bit hacky:

  * Embedded Gadget that is just a publish button
  * use something like Greasemonkey to inject custom javascript logic

  Maybe an iGoogle widget would help?

  Any ideas/ pointers would be appreciated.

  Cheers,
  Murray
--~--~-~--~~~---~--~~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---