[google-appengine] 500 error

2010-06-17 Thread Michael
I'm getting 500 server error on my app right now (and in admin console too). Anyone experience the same problems? app id: sovpad -- 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...@googlegr

[google-appengine] Re: What is a pattern for keeping track of current users in google app engine?

2010-06-23 Thread Michael
I have more then 1000 users online at peak and I'm using datastore for this. Unfortunately, updating last online time costs quite a lot of CPU time. And I'm updating only once per 5 minutes (on each poll I write last online time to memcache and put it into datastore via cron). On Jun 23, 6:45 am,

[google-appengine] Re: Typical monthly costs for running an app

2010-06-24 Thread Michael
I have around 60-70 req/sec at peak times, 5 unique users/day. I have a lot of hits because users are polling for new messages (it's a dating app for social network). Costs me $9/day. I'm not happy with price, i think i'll be able to cut it at least 2-4 times, when running on the rented dedica

[google-appengine] Re: Typical monthly costs for running an app

2010-06-24 Thread Michael
Polling is 10% of all CPU time, according to dashboard. Around 20% of CPU time takes getting profiles (even though i use memcache). Beaconpush looks nice, i will look into it. On Jun 24, 3:37 pm, "Nick Johnson (Google)" wrote: > Hi Michael, > > It sounds like polling is cos

[google-appengine] Re: missing index

2010-07-01 Thread Michael
If the latter query uses recently built index, then you probably hit the same bug as me: http://groups.google.com/group/google-appengine-python/browse_thread/thread/036a2ccae21798f8/89659e76acbd8a54 the only recourse is to re-put all entities of that kind. On Jul 1, 8:27 pm, Philip Tucker wrot

[google-appengine] application size limit

2010-09-19 Thread Michael
Dear All: It looks like there is a certain hard limit in the number of files in appengine applications at around 1000 files. I added an icon library to my application and got this: --- update: [java] Reading application configuration data... [java] Sep 18, 2010 10:43:34 AM com.google.ap

[google-appengine] Help needed with CPU Time

2010-09-29 Thread Michael
I'm using GAE as the backend for a game and I'm looking for some help in optimizing my CPU usage. With my current usage and at the current billable rates, it looks like I will not be able to scale to the hundreds of thousands, let alone millions, of transactions a day without spending a ton of mone

Re: [google-appengine] Help needed with CPU Time

2010-09-29 Thread Michael
For the request you describe here, what modules are you importing? Nothing extra that I know of besides what is necessary for Java/JDO to work with App Engine. What's the best way to figure this out? Are the Gets by keyname or are they filtered queries? The gets are done with keys. Are you do

Re: [google-appengine] Help needed with CPU Time

2010-09-30 Thread Michael
Thanks for the suggestions. We are doing our gets in batches. We'll also look at our memcache options and whether the transaction is costly. I'll report back if I see any significant improvements. You may still not have enough information about our usage to answer this question, but given the abo

Re: [google-appengine] Help needed with CPU Time

2010-09-30 Thread Michael
In case it wasn't obvious, Tommy and I are working on the same project, so his questions above are in regard to our attempts to batch the puts. If we can get that working, we'll definitely report back on any performance changes we see. -- You received this message because you are subscribed to th

[google-appengine] Eclipse deletes my images upon deploying

2010-10-18 Thread Michael
Hi, my application runs just fine locally, but my problem is that when i try to deploy it, eclipse deletes my images and none of them are uploaded. I looked for some time now on how to solving it, but i found no post nor documentation about it. -- You received this message because you are subscri

[google-appengine] Re: Channel API outside browsers

2010-11-06 Thread Michael
I'd like to have a port of Channel API for ActionScript. If it uses XMPP under the hood, then it should be pretty simple to emulate as there are ready to use XMPP libraries. Maybe Google should release the underlying protocol specification? Currently i'm using polling from my flash app, and it eat

[google-appengine] HTTP header length limit bug regression

2011-06-10 Thread Michael
So, if possible, I'd be very grateful for a quick fix. Many thanks, Michael -- 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 fro

[google-appengine] Re: define inheritance relationship between kinds in GAE

2011-06-14 Thread Michael
() person = db.ReferenceProperty(Person) Then the reference would be to teacher.person.name Michael -- 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

[google-appengine] Re: HTTP header length limit bug regression

2011-06-17 Thread Michael
Just bumping this - anyone at Google around to take a look at this bug? It's a little urgent still, I'm afraid. On Jun 9, 7:05 pm, Michael wrote: > Hello! > > Issue 407 (http://code.google.com/p/googleappengine/issues/detail? > id=407) describes a bug from 2008 that drops

[google-appengine] Re: Version 1.5.1 not available on the download page

2011-06-20 Thread Michael
You can get the prerelease zip file at: http://code.google.com/p/googleappengine/downloads/list Though you might wait a bit. See problems at: https://groups.google.com/forum/?fromgroups#!topic/google-appengine/dnpEaiRvxuQ -- You received this message because you are subscribed to the Google Grou

[google-appengine] Re: HTTP header length limit bug regression

2011-06-30 Thread Michael
Is anyone from Google even watching this list? On Jun 17, 1:36 pm, Michael wrote: > Just bumping this - anyone at Google around to take a look at this > bug?  It's a little urgent still, I'm afraid. > > On Jun 9, 7:05 pm, Michael wrote: > > > > >

[google-appengine] Any way to manually construct response and exit?

2011-07-01 Thread Michael
en to standard out (including the HTTP headers) are output as content. Many thanks, Michael -- 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 t

[google-appengine] 500 Server Error trying to view App Engine Dashboard

2011-08-11 Thread michael
occurred for about 3 minutes on 8/11/2011 beginning at 8:50 am central -- 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/-/MUU-5klN2CEJ. To post to th

[google-appengine] Repeating 500 error on incoming mail

2011-08-13 Thread Michael
?i=PG1ziYza), which seems to imply that I don't have control over the issue. When the 500 error occurs, the mail seems to go back into a queue, and repeat the process again, so I'm not sure how to stop this loop. Any suggestions? Cheers, Michael -- You received this message becau

[google-appengine] SMS verification issues

2011-08-19 Thread Michael
further explanation. So, neither the account creation pages works for me nor does the page where I am supposed to submit my issues. Running out of alternatives... Thank you for your help! Regards, Michael -- You received this message because you are subscribed to the Google Groups "Google A

[google-appengine] Re: SMS verification issues

2011-08-21 Thread Michael
ption has without even the most basic form of support? Anyways, thank's Drew! Regards, Michael -- 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 unsubsc

[google-appengine] user.get_current_user() not working if using Android browser

2011-08-30 Thread Michael
Hi There, The following works fine if I use PC browser: user = users.get_current_user() But if I use Android phone to browse to same URL, user is None. (I went to Gmail web site first to make sure I logged in, but still, users.get_current_user() return nothing. ) Thanks, Michael Wen, -- You

Re: [google-appengine] Re: Keep it short: Who is forced to leave GAE?

2011-09-06 Thread michael
purely speculation but I'd be willing to bet... - App Engine was close to going the way of Wave, the free translate API and Labs. - someone/some group pushed back hard for one last chance to make it profitable with the new pricing model - 2011 4th quarter is the make|break

[google-appengine] Unresolved problem on Stack Overflow

2012-04-09 Thread michael
Perhaps someone here has the answer: http://stackoverflow.com/questions/9594162/google-app-engine-url-path-lost-with-www-subdomain -- 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.goo

[google-appengine] NameError: global name 'httplib' is not defined. Wha?

2012-05-03 Thread Michael
there a quick fix that doesn't require spending a bunch of time hunting stuff down? Many thanks, Michael -- 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/

[google-appengine] Re: NameError: global name 'httplib' is not defined. Wha?

2012-05-03 Thread Michael
Incidentally, the GAE docs still seem to advertise httplib as being available: https://developers.google.com/appengine/docs/python/urlfetch/overview ("You can use the Python standard libraries urllib, urllib2 or httplib to make HTTP requests"). On Thursday, 3 May 2012 20:46:22 UTC+

[google-appengine] Re: NameError: global name 'httplib' is not defined. Wha?

2012-05-03 Thread Michael
Ach! I'm terribly sorry. It turns out some other conditions have changed, which have triggered a code path I hadn't tested much before. Dumb operator error - please disregard. On Thursday, 3 May 2012 20:46:22 UTC+2, Michael wrote: > > Hey, > > I've a GAE app that

[google-appengine] datastore id performance

2012-05-03 Thread Michael
Is there any performance differences when searching an entity A and entity B, where entity A uses a String datatype as id and entity uses a Integer datatype as id? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on

[google-appengine] launcher deployment failing consistently

2012-09-15 Thread michael
Sept 15 2012 Using GoogleAppEngine launcher -- consistently fails to complete deployment Remains in a seemingly interminable state of "Checking if deployment succeeded... Will check again in 60 seconds." Happen to notice when this occurs the Versions screen at appengine.google.com/deployment

Re: [google-appengine] exception when writing an image in Google Cloud Store

2015-03-11 Thread Michael
This sort of programming/development question would be better directed to Stack Overflow's App Engine tag . I recommend posting there for more technical issues as it is more likely that you will get a solution to your problem. On Wed

[google-appengine] Re: Could not get response from Google API's via Java servlet in GAE

2015-03-12 Thread Michael
This sort of programming/development question would be better directed to Stack Overflow's App Engine tag . I recommend posting there for more technical issues as it is more likely that you will get a solution to your problem. On Wed

[google-appengine] Can The Development Web Server use remote datastore ?

2008-09-10 Thread Michael
I am working on a project. My PC is getting really slow when I debug it with large amount of data. Can The Development Web Server use remote datastore ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App En

[google-appengine] upgrading to 1.1.3 causes bizarre error in app.yaml

2008-09-17 Thread Michael
gine code to try and find the problem, but wanted to see if anyone else had already found a fix. Thanks! -Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this gr

[google-appengine] Re: "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-17 Thread Michael
I'm having the exact same problem. I'll let you know if I find a fix. I'll also file a bug report on the AppEngine issues list. -Michael On Sep 17, 3:58 pm, kejk <[EMAIL PROTECTED]> wrote: > Hi. > I'm using Win XP with SP2. > After intalling GAE SKD ver 1

[google-appengine] Re: BadRequestError: offset may not be above 1000

2008-09-21 Thread Michael
I have the same problem. I can understand the result limit, but offset ? Simple solution is add a record ID . On Sep 21, 10:15 am, Aral Balkan <[EMAIL PROTECTED]> wrote: > Hi, > > I'm not sure when this changed but it seems that you cannot specify > offsets above 1,000 which kind of kills my back

[google-appengine] Re: "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-24 Thread Michael
dates as the issue is being addressed. Also, there are some suggested fixes on the issue page. I haven't tried them yet, but will this evening. -Michael On Sep 18, 2:02 am, kejk <[EMAIL PROTECTED]> wrote: > That's nice. > I'm waiting for info from you. > Thx!

[google-appengine] Re: "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-26 Thread Michael
V1.1.4 was released tonight with a fix for this bug. I installed it, tested it, and all is well in the universe. My app.yaml parses just fine-and-dandy. -Michael On Sep 24, 12:33 pm, Michael <[EMAIL PROTECTED]> wrote: > This issue has been filed and accepted by Google.  It's is

[google-appengine] Re: Disable weak cipher for Google Cloud App engine custom domain website

2018-05-21 Thread Michael
Hi Fady, We have a similar security requirement for our Java Google App Engine Standard site. Is it possible to disable that cipher for our custom domain? On Tuesday, April 3, 2018 at 4:15:05 PM UTC-5, Fady (Google Cloud Platform) wrote: > > As to update this community thread, working with Nik

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-24 Thread Michael
As far as i can understand, that's not a consistent backup. Can we expect a service for making consistent snapshots of DB? On Dec 16, 1:51 pm, "Nick Johnson (Google)" wrote: > Backup and restore functionality has been present for some time, > see:http://code.google.com/appengine/docs/python/tool

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-03 Thread Michael
I have around 4 million requests per day. The cost is $65 per week. In my opinion, at present App Engine is too expensive for sites with "free" business model. On Jan 3, 8:59 am, dhruvg wrote: > I am just curious. If anyone does, could you please provide some > statistics (number of users, daily

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-05 Thread Michael
Since September GAE had several problems, but most of them were fixed in a timely manner (except slow cold-star time). I'm satisfied with uptime. James, my app is the dating app for Russian social network (like Facebook). If you want the URL, ask me via e-mail. On Jan 3, 10:48 pm, dhruvg wrote:

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-08 Thread Michael
For me it's CPU. But i use GAE only for back end for the flash app, so i don't have large HTML traffic. Payment for storage is minimal, because i started my app only at September. On Jan 6, 10:31 pm, lucrussell wrote: > For those people who mentioned the high cost of GAE, are the main > costs in

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-08 Thread Michael
ratch to test the GAE and to learn python. On Jan 6, 5:01 pm, DAndrea <321go.nullpoin...@gmail.com> wrote: > Hi Michael, > it seems to me the cost is low with a so big traffic > and you don't have to take care of database, operating system, > hardware ... > > Did yo

[google-appengine] app engine down?

2010-02-24 Thread michael
anyone else getting 500 errors for App Engine dashboard and sites? -- 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

[google-appengine] Re: Error with DOS

2010-04-22 Thread Michael
Thanks for reporting this. I expect it will be fixed early tomorrow. On Apr 22, 10:41 am, vivpuri wrote: > I am also getting the same error. This is an urgent issue. I am > getting thousands of hits for few IPs and i need to block them. Please > help.. > > On Apr 21, 10:18 am, Jairo Vasquez wrot

[google-appengine] Re: Error with DOS

2010-04-22 Thread Michael
This should now be fixed. On Apr 22, 5:09 pm, Michael wrote: > Thanks for reporting this. I expect it will be fixed early tomorrow. > > On Apr 22, 10:41 am, vivpuri wrote: > > > > > > > I am also getting the same error. This is an urgent issue. I am > > getti

[google-appengine] Re: 500 error accessing appengine.google.com and in updating app

2010-05-10 Thread Michael
I have the same problem plus my app is not working. App id: sovpad On May 10, 6:42 am, Albert wrote: > I'm getting 500 errors accessing appengine.google.com and in updating > my app. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post

[google-appengine] Re: 500 error accessing appengine.google.com and in updating app

2010-05-10 Thread Michael
According to the first post time, this been for 9 hours? Does your app work or not? My app gives me 500 error after long wait. On May 10, 3:54 pm, Nickolas Daskalou wrote: > System status page currently reports anomalies with the datastore, task > queue and Python runtime: > > http://code.google.

[google-appengine] Re: appengine appears to be down

2010-05-10 Thread Michael
Same problem. Previous thread: http://groups.google.com/group/google-appengine/browse_thread/thread/18f903243bd04663 On May 10, 3:58 pm, Jeff wrote: > can't even access the dashboard. anyone else experiencing this? -- You received this message because you are subscribed to the Google Groups

[google-appengine] 500 Errors while attempting to access admin console

2010-05-11 Thread michael
May 10, 2010 6:06 am pacific - encountering 500 Error while attempting to access admin console -- 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

[google-appengine] Adding members to a class that gets stored in the datastore using JPA

2010-05-12 Thread Michael
I am working on an application that uses JPA to store certain classes to the datastore. I was wondering what happens if I add (or remove) members to the class in a future version of the application. I would already have data stored with the old properties in the datastore. I know that the datast

[google-appengine] model properies as fields

2009-07-14 Thread Michael
o I use it? ¿Someone willing to help :D? Thanks for any insight, Michael --~--~-~--~~~---~--~~ 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

[google-appengine] Inconsistent 404

2009-08-21 Thread Michael
404 on anything that differs from the first pass. If I reverse the above procedure after restarting the developement server the results are reversed. Any thoughts would be greatly appreciated. Michael --~--~-~--~~~---~--~~ You received this message because you are subs

[google-appengine] Re: Inconsistent 404

2009-08-25 Thread Michael
o thank vp, jonathan, and Nick for responding. The problem seems to have been a combination of caching of the main.py file not allowing my variable to change for each pass and my ignorance of the proper structure of the request. vc nailed it, replacing a /

[google-appengine] Re: Poor app performance: periods of very high latency

2009-09-21 Thread Michael
I'm having the same problem (app: sovpad) Except from my logs can be found here: http://groups.google.com/group/google-appengine-python/browse_thread/thread/36c250f488929b1f On Sep 19, 1:05 am, bvelasquez wrote: > I'm experiencing this also (app: jacob-6).  2 Sept. is when I started > noticing

[google-appengine] Re: 4Mb in datastore statistic = 2,4Gb in Stored Data Resource

2009-10-20 Thread Michael
Is it possible to disable automatic indexes (on a single field), without disabling composite indexes? On Oct 20, 3:43 pm, "Nick Johnson (Google)" wrote: > Hi, > The difference you're seeing is due to indexing overhead. Removing composite > indexes and setting fields as indexed=False will substan

[google-appengine] Datastore timeouts

2009-10-20 Thread Michael
Last several minutes my app experiences a lot of datastore timeouts What can be the problem? App id is: sovpad --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send ema

[google-appengine] Re: Datastore timeouts

2009-10-21 Thread Michael
Timeouts were on writes (as far as i could tell looking at logs), the problem lasted for several minutes and i had time to post :) On Oct 21, 11:37 pm, "Jeff S (Google)" wrote: > Hi Michael, > One possible cause could be that a Bigtable tablet which is used by your app > wa

[google-appengine] Re: Datastore timeouts

2009-10-22 Thread Michael
I was seeing this problem again few minutes ago. It's certainly only on writes. (I switched app version to save logs. If you want, you can look at logs of beta19, app id: sovpad). It lasted around 5 minutes (6:32 - 6:37) On Oct 22, 1:47 am, Michael wrote: > Timeouts were on writes (as

[google-appengine] Re: huge latency on all requests

2009-11-03 Thread Michael
I have the same problem right now. Average response time is over 2 seconds. App id: sovpad Looks like a problem from September. On Nov 3, 4:44 pm, peterk wrote: > Yep, seeing this too. Didn't notice yesterday, but noticing now :) > > Seeing very high latency  and cpu usage on requests that yest

[google-appengine] Weird memcached issue

2009-12-02 Thread Michael
I'm seeing a weird issue with memcached right now (app: sovpad) About 1/5 of memcache requests goes to a different memcached server, so I'm getting problems with consistency (probably the same key maps to two different values?). When I'm requesting stats, I'm seeing two distinct stats: That's "o

[google-appengine] Re: Weird memcached issue

2009-12-02 Thread Michael
At the time of the first post it was going for about 10 minutes. It's still happening. On Dec 2, 11:17 pm, "Ikai L (Google)" wrote: > Hi Michael, > > When did this start happening? We're currently doing a phased rollout to > support the upcoming SDK release, s

[google-appengine] Re: Weird memcached issue

2009-12-02 Thread Michael
oing to be fixed soon? On Dec 2, 11:33 pm, Michael wrote: > At the time of the first post it was going for about 10 minutes. > > It's still happening. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this

[google-appengine] OpenID consumer and sessions

2008-11-17 Thread Michael
Cache-Control": "no-cache,max-age=0" and "Pragma": "no-cache")). Looking forward to hearing from you, Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine&q

[google-appengine] Re: OpenID consumer and sessions

2008-11-18 Thread Michael
Hi, It fails in Firefox 3, IE 6 and Chrome 0.3.154. However Chrome seems to handle it slightly better (sometimes the session is immediately up to date). Regards, Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: OpenID consumer and sessions

2008-11-20 Thread Michael
Thanks, I'm looking forward to hearing from you. This however still leaves me with the question: is this the way I am supposed to handle an OpenID logged user? Best, Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[google-appengine] Using OpenID to store encrypted data

2008-12-03 Thread Michael
eem obvious to me whether this is part of the machinery or not :-)) Best regards, Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to g

[google-appengine] Re: Full Text Search Library for google app engine via Goolge Base

2008-12-24 Thread Michael
Sound very interesting. How do you use Google base ? Use Google API ? I need full text search for a shopping site, so all products. On Dec 23, 7:31 am, gops wrote: > I am desperately in need of full text search for google app engine. > The current solution { searchable models are horrible. }.

[google-appengine] memcache.set() and memcache.add() fail silently if time is greater than one month

2009-04-18 Thread michael
eg, memcache.set(key, value, 90 * 24 * 3600) # silently fails to set the cache value Relevant doc show below but WTF is "one month" ? 28 days? or 29? or 30? or 31? Depends on what it month it is? :-p set(key, value, time=0, min_compress_len=0) Sets a key's value, regardless of previous co

[google-appengine] Key values in GWT?

2009-04-19 Thread Michael
I have an object that manages a many-to-many relationship between 2 entities. I do this by having two Key objects. I want to use this object in GWT and in GAE. However, when I try to perform a GWT compile, I get errors. I looked around for an appropriate module to inherit, but haven't found on

[google-appengine] 503 errors from urlfetch.fetch(query)

2009-06-11 Thread michael
this seemed to coincide with the recent maintenance event http://googleappengine.blogspot.com/2009/06/changing-quotas-to-keep-most-apps.html any help? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engi

[google-appengine] GWT Map in App Engine

2010-06-10 Thread Michael W
I download GAE 1.3.3, GWT 2.0.3 and successfully run the example of GWT. Just like to know whether GWT Map can run on App Engine. Thanks --Michael -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, sen

[google-appengine] Cannot enable billing

2010-06-14 Thread Michael Lorton
I need to enable billing so I can use the BlobStore API (bit of a bait- n-switch there not warning me it was only paid-for, but let that be). I pressed the "Enable Billing" button, went through the Google Checkout, I got a receipt in the mail, my status on the Billing Settings page when to "Activa

Re: [google-appengine] You cover me, I cover you!

2010-06-30 Thread rudolf michael
hi can handle that if it was done using GWT+java backend. but i guess that you need to move the whole front end to be implemented using GWT, it will become much much faster and the code maintainable and clearer. Good job and very nice interface :-) i liked it regards, Rudolf Michael On

[google-appengine] "DeadlineExceededError" after the maintenance yesterday

2010-07-09 Thread Michael Shen
Hello.. Can somebody help me ? I found that my app (Application ID: dynamicpathfind) didn't work properly since the maintenance yesterday.It still can't work properly now!!! I didn't change any of my code,but now,when i requset a service, it seems to spend more time to response than

[google-appengine] Re: NeedIndexError: The index for this query is not ready to serve.

2010-07-09 Thread Michael Shen
Hello.. Can somebody help me ? I found that my app (Application ID: dynamicpathfind) didn't work properly since the maintenance yesterday.It still can't work properly now!!! I didn't change any of my code,but now,when i requset a service, it seems to spend more time to response th

[google-appengine] Re: Upcoming maintenance notification

2010-07-09 Thread Michael Shen
ello.. Can somebody help me ? I found that my app (Application ID: dynamicpathfind) didn't work properly since the maintenance yesterday.It still can't work properly now!!! I didn't change any of my code,but now,when i requset a service, it seems to spend more time to response than

Re: [google-appengine] Re: Subcategory Capability with GAE Datastore Models?

2010-07-20 Thread Michael DeLaney
e above objects. > > > > > I've read through the documentation, and the PolyModel datastore model > > > has struck my eye as being potentially helpful. However, it doesn't > > > seem to quite do the job. > > > > > Thanks! > > -

Re: [google-appengine] Google AppEngine Indexing

2010-07-20 Thread Michael DeLaney
oogle 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 this group at > http://groups.goog

[google-appengine] Re: shifts2009.appspot.com - HTTP 404 Not found

2010-08-01 Thread michael kariv
just like you support high availability. Michael On Jul 30, 1:55 pm, Daniel wrote: > i followed the steps... > > but nothing helps > > i dont have netex service, and no hebrew in url > > as i told before , if i set up proxy (some free http proxy i found on > the web)

[google-appengine] Re: shifts2009.appspot.com - HTTP 404 Not found

2010-08-01 Thread michael kariv
By the way someone told me using https solves the problem. If you can live with https calls, it should be ok On Aug 1, 1:58 pm, michael kariv wrote: > All, > I has been having this issue for a while and I spoke with Bezeq > International rep 5 times last week. > It only happens

Re: [google-appengine] Looking For: A “demo” web web-based application that uses web services

2010-08-18 Thread rudolf michael
it on GAE best regards, Rudolf Michael On Wed, Aug 18, 2010 at 7:14 AM, Steve Engle wrote: > Looking For: A “demo” web web-based application that uses web services > > Greetings – I am using GAE to experiment with various software > techniques to capture and analyze the messages being

Re: [google-appengine] Re: Logging Console in Mac Launcher

2010-08-23 Thread Michael Loftis
I think might be asking for a way to disable 'scroll to bottom on new data' maybe? Not intimately familiar with the Mac launcher. --On Thursday, August 19, 2010 11:23 PM -0700 John Skidgel wrote: Hi John, How would pause work? And have any of you tried searching in the logging console ye

[google-appengine] Eclipse Infocenter Hosted in Google Apps

2010-09-06 Thread Michael Kaplan
Is it possible to host an Eclipse Infocenter in the Google Apps. Infrastructure? What is the procedure? An example Eclipse Infocenter is at http://help.eclipse.org -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send

[google-appengine] Re: Problems with App Engine today - Can we get an explanation?

2010-09-14 Thread Michael Robellard
I am seeing thousands of errors(all timeouts of one type or another) on requests that typically have less than 100 errors a day. My CPU usage per second is up 20% since the failure this morning. These are requests that usually take less than a second and they are reaching the 30 second mark. On Se

[google-appengine] Appstats reporting cpu=0ms api=0ms

2010-09-21 Thread Michael Bean
I have Appstats working, but it is reporting 0 cpu and 0 api time, while reporting some nonzero real time. The dashboard logs show nonzero times for all three (real, cpu, api). I am using Java if that matters. Any ideas what could be wrong? This question has been asked before, but I've been sc

Re: [google-appengine] Re: Error 500

2011-05-05 Thread Michael Quartly
I have found the same thing occurred to my app. I have found that turning off "Always On" helps with the instance restarts. So when this happens I turn off "Always On" for a couple of days while I wait for the engineers to fix whatever they broke. I have had this happen a few times on my app this m

Re: [google-appengine] HardDeadlineExceptions after the maintenance

2011-07-17 Thread Michael Quartly
Fast response to production issues has never been my experience. I would be lucky to get a response the same day sometimes. -- 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

[google-appengine] Google+ disabling accounts

2011-07-23 Thread Michael Quartly
I have an App Engine app tied to my personal google account and Googles approach to disabling accounts without warning for TOS violations and the trouble people have gone through to unsuccessfully contact Google about getting their accounts undisabled has got me quite worried about keeping my a

[google-appengine] How to find some to create an app. for me

2011-08-03 Thread michael manning
I am completely apps. illiterate, though I feel I have great ideas for apps. How can I find people who could create the apps. and guide me thru the business for a percentage of the income? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Great ideas

2011-08-03 Thread michael manning
I have great ideas for apps. that could generate a nice income. Looking for a person who could create these apps. as on either a partner for a % of income, straight pay for building the app. for me. I am completely app. illiterate and need someone who not only is technically savy, but knows the ins

[google-appengine] Re: UNBELIEVABLE NEW BILLING!! Google Please respond...

2011-08-31 Thread Michael Robellard
Dear Google, I love Google App Engine, but right now I am at a loss for what to do. My current billing is $4.98/day. Under the new system it is $34.41/ day, and that is with the 50% frontend discount. The effort that would be involved in porting my app to a different architecture is far beyond wha

[google-appengine] need help in uploading data

2011-09-05 Thread Michael Ronny
Dear All, please help me, i'am trying to upload data to app engine (java) using phyton bulkloader, but it give me error after several line, when i remove the line, it keep showing, please help me [ERROR ] Error in data source thread: 'utf8' codec can't decode byte 0xe9 in p osition 0: invalid

Re: [google-appengine] Re: backend vs frontend instances

2011-09-13 Thread Michael Quartly
Will the memory be decreased? Because my app is using JRuby, which is very memory intensive and I sit around 200MB memory utilisation per app. -- 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:

Re: [google-appengine] Re: backend vs frontend instances

2011-09-13 Thread Michael Quartly
my main apps id is xanthus-ms and my test app is xq-remake -- 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/-/WEmz9Ifo-EoJ. To post to this group, sen

Re: [google-appengine] Re: backend vs frontend instances

2011-09-13 Thread Michael Quartly
When is the memory expected to be lowered? -- 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/-/1rgi9mJrnfkJ. To post to this group, send email to googl

Re: [google-appengine] Re: Min Idle Instances available now if you use Always On

2011-09-21 Thread Michael Quartly
When will the max memory change to 128MB come into effect? -- 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/-/qzPm6rEoh2cJ. To post to this group, sen

Re: [google-appengine] Re: Min Idle Instances available now if you use Always On

2011-09-21 Thread Michael Quartly
I am currently using more than that, and have started a rewrite to come under the 128MB. Needed to know how long I have to complete the rewrite. When are you going to contact apps that are beyond that limit? Don't want people getting caught out and not having enough time to fix the problem. --

Re: [google-appengine] Re: Min Idle Instances available now if you use Always On

2011-09-21 Thread Michael Quartly
xanthus-ms -- 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/-/IRHPfkfFO9cJ. To post to this group, send email to google-appengine@googlegroups.com. To

  1   2   3   4   5   >