[google-appengine] Re: Latency spike for all requests from 11 UTC

2016-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hello Peter, Are you still experiencing this latency? If so I ask that you private message me your project ID along with the service (aka module) that is experiencing the latency, and I will be able to investigate this further. -- You received this message because you are subscribed to the Go

[google-appengine] Re: Latency spike for all requests from 11 UTC

2016-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hello Peter, Are you still experiencing this latency? If so I ask that you private message me your project ID along with the service (aka module) that is experiencing the latency I will be able to investigate this further. -- You received this message because you are subscribed to the Google

Re: [google-appengine] Re: Channel API alternatives

2016-11-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hello Alexey, You are correct that Pub/Sub is not a complete replacement to the Channel API, and was recommended as a simple lightweight callback communication alternative. The intended replacement is indeed Firebase. As you mentioned, Pub/Sub is designed for pre-defined Topic/Subscriptions,

[google-appengine] Re: Getting class not found exception in POST method

2016-11-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Sucheta, It seems like you are missing the actual Jackson library . If you experience any further issues after performing this recommendation, you can provide details about your setup and stack trace to Stack Overflow

Re: [google-appengine] Channel API alternatives

2016-11-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Zachary, You are correct that we always try to offer a Free Quota for our services, along with the Free Trial credit. In depth pricing information and estimates for each of our products and services can be seen using our Pricing Guide . Information on Sock

Re: [google-appengine] Re: Channel API alternatives

2016-11-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Cloud Pub/Sub makes use of Topics and Subscribers. Publishers post messages to a Topic, and the message is either Pushed or Pulled to/by the Subscribers w

[google-appengine] Re: Channel API alternatives

2016-11-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Our goal is to continue to do a better job of delivering reliable, performant, and full featured services. This means deprecating those APIs that have little to zero usage on our system to free up resources for newer, better performing products. The Channel API

Re: [google-appengine] Re: Why resident instances in auto scaling are idle?

2016-10-28 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Vidya. You are correct that the instance start time is greatly based on your code, as each time a new instance is created it must load and prepare a fresh copy of your code to serve. As for the reason why you are seeing a single instance handling the bulk of your requests, this comes down

Re: [google-appengine] Re: Why resident instances in auto scaling are idle?

2016-10-27 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are correct, executing a URL Fetch request during the initiation of your code will cause a large amount of latency as your instance must wait for the requesting server to respond. As previously mentioned you can use the Stackdriver Trace tool on a specific

[google-appengine] Re: Why resident instances in auto scaling are idle?

2016-10-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Resident Instances turning into Dynamic Instances to handle requests does not effect the time required to start an instance (it is actually designed to help it). When a new Idle Resident Instance is required, an '/_ah/warmup' will be sent to your application. This will trigger the creation of a

[google-appengine] Re: Why resident instances in auto scaling are idle?

2016-10-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Idle Resident Instances are instances waiting with your application code pre-loaded and warmed up, but never actually accept requests. When an Idle Resident instance is needed by your application due to high traffic or CPU intensive operations, your Resident instance will turn into a Dynamic in

[google-appengine] Re: Does Google App Engine support Spring @RestController

2016-10-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As explained in the Spring documentation , @RestController is shorthand for @Controller and @ResponseBody rolled together. Since both @Controller and @ResponseBody are su

[google-appengine] Re: Unable to stage: java.lang.IllegalArgumentException: Class file is Java 8 but max supported is Java 7

2016-10-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The App Engine Standard Environment only supports Java 7. Therefore if any of your libraries are built for Java 8 you will see this warning. The solution is to either remove any reference to Java 8 in your code, or to deploy your code to the App Engine F

[google-appengine] Re: Compute Engine fail at launch (Activate for billing)

2016-10-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since you have just activated the Free Trial for your Google Cloud project, it will take some time for your credit card to be verified for your billing account to be opened. As of the 12th I am seeing your Billing Account is no

[google-appengine] Re: Dedicated memcache keeps flushing

2016-10-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As Memcache is not persistent long-term storage, keys are not expected to live long and can be evicted for reason explained in our documentation . As noted

[google-appengine] Re: Delays in cron tasks

2016-10-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hi Taengoo, The Task Queue executes tasks the same way as a normal client would when attempting to access your App Engine service; by sending an HTTP GET request to your service's URL endpoint. Task Queues are therefore affected by the same conditions as any normal request to your app would, su

<    1   2   3   4