[google-appengine] Error Response: [13] The system encountered a fatal error

2022-01-25 Thread Jose Montoya
Hi App Engine Team, We have been using App Engine normally and just this weekend start to fail the update. We update from a Docker container, so there is no cloud build and the app.yaml file has not changed. After reviewing some suggestions online, we have tried: - Updating the gcloud

[google-appengine] no response headers from Google Frontend (or not paying for them), denial of wallet attacks

2021-06-13 Thread Waltraud Siller
Hi, in LogsExplorer I see by a request (protoPayload): responseSize: "95" cost: 1.0617e-8 I guess it is byte and dollar, from: outgoing bandwidth cost of 0.12$/gb. This request has 0 content length and I tried to remove each and every response headers via Jetty. Still Google Frontend adds

[google-appengine] Error Response: [9] Cloud build

2021-03-03 Thread Jayesh Manani
I am getting same error, as i try to deploy the application, Any one is here, who can help me with this issue? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email

[google-appengine] Error Response: [13] Error processing user code

2018-11-14 Thread Carlson Lau
After not deploying for a month, I tried deploying an update today, however, after the file upload was complete I received the following message: Updating service [default]...failed.

[google-appengine] Error Response: [3] Docker image appengine.gcr.io/gcloud/project_id.version.time was either not found, or you do not have access to it.

2016-08-22 Thread Nao Ito
Hi, I have served one website with GCE(GAE flexible = vm). But suddenly the deployment command got to result in failure. I could deploy successfully with the same command about four months ago. I googled the error code and message, but there is no related post at all. Does anyone face the same

[google-appengine] Re: Response not gzipped specifically for Twitterbot requests?

2015-06-30 Thread Nick (Cloud Platform Support)
Hey Taengoo, Glad to hear that. I've processed the issue and should update that thread shortly with a special number identifying the feature request so that the thread can be updated when progress is made. I also appreciate that it's not always possible to set User-Agent: gzip, so point

[google-appengine] Re: Response not gzipped specifically for Twitterbot requests?

2015-06-29 Thread Taengoo Taengstagram
I've logged it as issue #12104 https://code.google.com/p/googleappengine/issues/detail?id=12104 Thanks for pointing out the presence of a whitelist. This explains why I've seen uncompressed responses in the logs to possibly lesser known mobile useragents such as custom embedded webviews. This

[google-appengine] Re: Response not gzipped specifically for Twitterbot requests?

2015-06-29 Thread Nick (Cloud Platform Support)
Hey Taengoo, It seems as though you may have stumbled on a valid Feature Request in the making. In the docs, it's explained that serving content-encoding: gzip responses is done based on a combination of User-Agent and Accept-Encoding headers

[google-appengine] Average response time went from 400ms to 800ms about 36 hours ago, and is still up there

2012-10-03 Thread Per
Hi GAE team, there might be some issue with recent maintenance you're doing under the covers. We didn't change any code, the load pattern didn't change, and additionally we're seeing a several bugs: An error occurred parsing (locally or remotely) the arguments to DATASTORE_V3.RunQuery(). I

[google-appengine] Request response time

2011-11-19 Thread kiran lonikar
In Dec 2010, I read on one announcement that the earlier limit of 30s has been increased to 10 minutes. But this document http://code.google.com/appengine/docs/whatisgoogleappengine.html mentions the limit as 60s (section Quotas and limits). Has the limit been reduced again? Somewhere else, I

Re: [google-appengine] Request response time

2011-11-19 Thread Timofey Koolin
Yes only task and cron requests have 10 minutes time limit. Before SDK 1.5.5 requests from user has 30-seconds limit, from SDK 1.5.5 and now it have 60 seconds limit. 2011/11/18 kiran lonikar loni...@gmail.com In Dec 2010, I read on one announcement that the earlier limit of 30s has been

Re: [google-appengine] 500 response codes

2011-09-28 Thread Johan Euphrosine
Hi Vik, Thanks for reporting this issue. Please consider filling a Defect on the public issue tracker: http://code.google.com/p/googleappengine/issues/entry?template=Other%20defect Thanks in advance. On Tue, Sep 27, 2011 at 1:15 PM, vik vmgu...@gmail.com wrote: Hello, I got a 500 Internal

[google-appengine] 500 response codes

2011-09-27 Thread vik
Hello, I got a 500 Internal Server Error response code from App Engine with the following description in one of the WARNING prints (I saw this in the myApp/dashboard/logs). Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the

[google-appengine] App response times very poor with high pending_ms time

2011-05-26 Thread Hamish
Hi, We are developing a Java app for Google App Engine. We did some testing today using ab to hit a particular URL. We had 1000 concurrent threads in ab hitting the URL 1 million times. We were surprised by the response times. A lot of the responses were taking well over a second to return with

Re: [google-appengine] App response times very poor with high pending_ms time

2011-05-26 Thread Robert Kluin
Hi, Did you try ramping up your request ratea little more slowly? If your app has a long startup time (and it liekly does since it is Java) and services most requests very fast, then I've sometimes seen the scheduler be a bit too resistent to spin up new instances. In that situation I

[google-appengine] Datastore Response times - this high?

2010-11-18 Thread hyper_w
Latency for Get ops,as seen on Google App Engine stats page, workout around 120ms - about the same as a WAN round-trip across the Atlantic. Does this include App Startup times? Why is this so high? -- -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: Response character encoding

2010-08-06 Thread Paweł Olejnik
Hello, this is my first post to the group! Thanks for help, I have corrected my polish language page coding succesfully. I have practised the above in the python code of a view class: def get(self): template_values = { } path =

[google-appengine] Re: Response character encoding

2010-06-21 Thread Peter
Thx but i allready added response.setContentType(text/html; charset=UTF-8); response.setCharacterEncoding(UTF-8); Local deploy is OK only deploying to app engine is wrong. On jún. 19, 17:56, djidjadji djidja...@gmail.com wrote: You have to set the correct HTTP response header. In Python code

Re: [google-appengine] Re: Response character encoding

2010-06-21 Thread Jaroslav Záruba
Sometimes I do the silly mistake of writing into outputStream instead of writer: response.getOutputStream.print(myCharacterData); // obviously ignores charset response.getWriter().print(myCharacterData); Maybe...? :) Cheers JZ On Mon, Jun 21, 2010 at 10:28 AM, Peter pcsor...@gmail.com wrote:

[google-appengine] Re: Response character encoding

2010-06-21 Thread Peter
Thx JZ writing into outputStream was the problem :) On jún. 21, 13:10, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: Sometimes I do the silly mistake of writing into outputStream instead of writer: response.getOutputStream.print(myCharacterData); // obviously ignores charset

[google-appengine] 500 response while deleting versions

2010-06-15 Thread Stevko
Dear Google, I received a 500 server error response when I try to delete versions 1 and 3 of my application. https://appengine.google.com/deployment/deleteversion?app_id=ninuku-archivistdelete_version=1 Can you please look into these errors? --Stevko -- You received this message because you are

Re: [google-appengine] 500 response while deleting versions

2010-06-15 Thread Ikai L (Google)
There's an issue with version deletion for some versions that end up in a bad state. The version is deleted in the system, but in your UI it shows that it isn't. You can have up to 100 versions, so as a workaround, deploy a new version number and set that as the default. We'll sweep up orphaned

Re: [google-appengine] 500 response while deleting versions

2010-06-15 Thread Brandon Thomson
I think it is only 10 versions per application. I got the error message today. On Tue, Jun 15, 2010 at 7:53 PM, Ikai L (Google) ika...@google.com wrote: There's an issue with version deletion for some versions that end up in a bad state. The version is deleted in the system, but in your UI it

Re: [google-appengine] The response from url was too large

2010-05-07 Thread Jody Belka
The limit is 1 megabyte, as documented at http://code.google.com/appengine/docs/python/urlfetch/overview.html#Quotas_and_Limits and http://code.google.com/appengine/docs/java/urlfetch/overview.html#Quotas_and_Limits On 6 May 2010 21:25, jdlforce jocsan.d...@gmail.com wrote: Hi - Is there a

[google-appengine] send response code 500 with custom message

2010-04-10 Thread deostroll
Hi, It is possible to manually send a response status code 500 (ie server error) with some default message like error due to network connectivity, etc. --deostroll -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Long Response times?

2009-11-23 Thread Magnus O.
Hi, I just started developing with python and google app engine and my first project is to build a small easy proxy server to enable cross domain xml requests from the client. I'm experiencing logn response times in all python handlers. Static files as being served fast but python handlers are

Re: [google-appengine] Long Response times?

2009-11-23 Thread Ikai L (Google)
What part of this application is slow? Is it just slow in development mode? The link you sent out seems to load reasonably fast. What may be happening is that your application may be cycling out. We do this to dynamically adjust the number of instances to match the level of load your application

[google-appengine] Re: Response - Content Type

2009-09-21 Thread nl65
resolved = no problem to use text/javascrip! On Sep 20, 5:18 pm, nl65 hum...@gmail.com wrote: Is there any limitation on the Content-Type response header? It seems that setting it to taxt/javascript blocks the response. Thanks. --~--~-~--~~~---~--~~ You

[google-appengine] Slow response static javascript files on development server

2009-09-04 Thread j...@q42.nl
I have about 10 javascript/css files which are included in my html pages, but it takes 1+ second to load each file on the development server. This is highly anoying. Why isn't my static_dir handler using Last-Modified/If-Modified-Since? - url: /js static_dir: js - url: /css static_dir: css

[google-appengine] Garbled response...

2009-05-27 Thread bvelasquez
On some responses, I receive a garbled page, example below. This began today, as well as an increase in 503 errors. What the?? I'm digging into any changes I may have made to cause this. However, from yesterday to today, there were not many. The logs do not show anything unusual. Anyone have

[google-appengine] how response to a request and make a download for the data in the request

2009-05-18 Thread Lalathecreators
I want to send a jpeg data to a python host and want the web app return the data by downloading I read a code in PHP if (isset($GLOBALS[HTTP_RAW_POST_DATA])){ // get bytearray $jpg = $GLOBALS[HTTP_RAW_POST_DATA]; // add headers for download dialog-box

[google-appengine] Uneven response time between connection to server to first byte sent

2009-05-17 Thread Anders
I don't know if this is related to only the Python version or also to the Java version, but the response time from GAE servers (Python) is very uneven. Sometimes the time from connection with the server to the first byte sent is less than a second, but sometimes the response takes several seconds

[google-appengine] Request/Response objects and WebOb

2009-01-08 Thread Alex Popescu
Is there any particular reason for having the Request class extend the WebOb Request, while the Response is just extending object? As far as I checked the Request class is the single dependency on WebOb framework and I find it quite curious. ./alex

[google-appengine] No response?

2008-10-13 Thread sternr
I've just uploaded my first application, and no matter what request I try, I get error 500, And in the request log (the error log is empty) I get: MY.IP.ADDRESS - - [13/10/2008:03:14:30 -0700] GET / HTTP/1.1 0 0 - - What is http code 0? why am I getting it? HELP?! --sternr