[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

[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: 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: 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: 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: 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: 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

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

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

[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: 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

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

[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] 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: 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

[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: My Go module has run with 1 instance and served a simple dataset for the last year. Since 6pm EST it now takes 15 secs and has 5 instances.

2016-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hello Richard, Looking into your application I do see the latency spike in your 'client-go' service's graphs. I also see that the latency corrected itself as of last night and is now back to normal. Can you confirm that this is indeed the case and that you are no longer experiencing latency?

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

2016-11-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Peter, Looking at your project, I do indeed see the latency spike in your App Engine graphs. This has proven to be transient as App Engine was able to recover back to its normal latency levels as you pointed out. There are multiple reasons why latency could occur, such as networking issues

[google-appengine] Re: The quota details is broken

2016-11-28 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Tatsuyuki, I was not able to reproduce the issue in my Console. Is this still happening for you, or are you now able to see your quota usage within the Quota Page ? I would recommend attempting to open the Quota Page

[google-appengine] Re: The quota details is broken

2016-11-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Thank you Tatsuyuki. I will set the Issue Tracker as private for the time being so that we may work with your HAR. All further progress will occur in your created PIT. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from

[google-appengine] Re: How to configure useragent in curl php google app engine production environment?

2016-11-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hello Vivekanand, I was able to reproduce your described issue from the Google Cloud Shell . The 403 you are seeing is due to the actual configuration of https://www.nseindia.com blocking the Google Cloud IP range. There are multiple ways the https://www.nsein

[google-appengine] Re: How to configure useragent in curl php google app engine production environment?

2016-11-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As an additional thought, the https://www.nseindia.com server could also be blocking CURL requests. So if the above does not turn out to be the solution, I would recommended looking into this as well. -- You received this message because you are subscribed to the Google Groups "Google App Eng

[google-appengine] Re: Datastore get_or_insert in Java

2016-12-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can achieve the same 'fetch or create' entity functionality in Java using a simple 'try/catch' block . This is essentially the same way th

[google-appengine] Re: External subdomain is not routed to service with the same name but to default service

2016-12-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As noted in the same documentation you referenced, you are indeed able to route specific URLs to different App Engine services with the use of a Dispatch file . Firstly ensure that your sub-do

[google-appengine] Re: How to Edit Extensible Service Proxy configuration file

2016-12-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Extensible Service Proxy will communicate with the Google Service Control API to enforce the 'securityDefinitions ' specified in your 'swagger.yaml' Open API c

[google-appengine] Re: External subdomain is not routed to service with the same name but to default service

2016-12-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Whenever you associate a new custom domain to your App Engine project, it will always route to your Default service and version. Even if you associate a subdomain to the project as you did, it will still route to the default as the CNAME and A records are all the same. The way to reach a diffe

[google-appengine] Re: External subdomain is not routed to service with the same name but to default service

2016-12-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Thank you for your feedback Fred. I have forwarded the recommended documentation clarification to our backend team. Note, there is no eta for the implementation of this document change. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. T

[google-appengine] Re: Background Threads Prevent Shutting Down of Basic Scaling Modules

2016-12-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
App Engine Basic scaling makes use of Dynamic Instances. Dynamic instances turn off when they are not being used At All.

[google-appengine] Re: Background Threads Prevent Shutting Down of Basic Scaling Modules

2016-12-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The idea of PULL queues is to have a worker always alive to continuously check the PULL queue to see if there are any new tasks for it. This design relies on you always having an instance running your worker's 'while' loop to continuously poll the PULL queue at time intervals. Since you instead

[google-appengine] Re: Over Quota - This application is temporarily over its serving quota. Please try again later.

2016-12-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Even though your billing is enabled for your project, you may still need to increase your daily Spending Limit to allow your project to use more than the free quotas. You should also ensure that your billing account is in

[google-appengine] Re: Alternative to Objectify: Catatumbo?

2016-12-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Thomas, As neither Objectify or Catatumbo are Google supported products, and are third-party, the best place to get a migration guide is from the creators of these frameworks. Specifically I'd recommend contacting Catatumbo Support to add a easy migration guide

Re: [google-appengine] Re: Alternative to Objectify: Catatumbo?

2016-12-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Jeff, There is currently a Client Library for PULL Task Queue , but not for PUSH or CRON tasks. You can sign up for the Alpha release of Cloud Tasks

Re: [google-appengine] Re: Alternative to Objectify: Catatumbo?

2016-12-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Thomas, I currently do not have any information to provide about the GAE SDK roadmap, but I have made an inquiry into the team that may, and they will post a reply here if they have the answers to your questions. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: App Engine - How to create project in region us-central

2016-12-14 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Before when you would create a new project, the console would automatically default to an App Engine region and make an App Engine app for you in that region. This has caused a lot of issues where customers did not want their app in the defaul

Re: [google-appengine] Re: Alternative to Objectify: Catatumbo?

2016-12-15 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Thomas, I have confirmation from engineering that validates PK's post. Concerning Alpha enrollment, these requests are still being processed, and based on usage patterns and other criteria users are selected. Also, there is a lot of work being done to make a good migration path to the Flex e

Re: [google-appengine] Re: Alternative to Objectify: Catatumbo?

2016-12-15 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Thomas, I have confirmation from engineering that validates PK's post. Concerning Alpha enrollment, these requests are still being processed, and based on usage patterns and other criteria users are selected. Also, there is a lot of work being done to make a good migration path to the Flex e

[google-appengine] Re: Datastore query

2017-01-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
To allow external clients to perform a read operation on your Google Cloud project's Datastore, you will need to expose an App Engine Endpoint . Simply create an App Engine method that performs the Datastore query

[google-appengine] Re: Which php framework would be best suited to integrate with Google NoSql database?

2017-01-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
We offer the Google Cloud Client Library for PHP which allows access to the Google Cloud Datastore (our NoSQL solution). You can therefore directly use the Client Library APIs to make calls to the

[google-appengine] Re: Datastore query

2017-01-03 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Yair, The less secure way to allow your Android client to query your Datastore would be to directly allow the client access using the Datastore Client Library . By using the Client Library directly

[google-appengine] Re: Move data from datastore to Android app

2017-01-03 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As this is a duplicate post of your original question , I recommend you take a look at the answers provided to you there. To reiterate, your Android client app should only be treated as a Frontend, A frontend sim

[google-appengine] Re: Move data from datastore to Android app

2017-01-03 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can definitely continue to use Servlets instead of Endpoints. You can think of Endpoints as a REST optimized layer that takes care of a lot of the manual setup for you using simple annotations . With

[google-appengine] Re: GMail signature "too long"

2017-01-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Hey Martin, Unfortunately this Google Discussion Group is for general Google Cloud App Engine product discussions only, and you will therefore not be able to find any Gmail experts on here that would be able to answer your question. I recommended looking t

[google-appengine] Re: Memory leak with ndb.put_multi

2017-01-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Thank you for reporting this issue. All further progress will occur within the PIT . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Re: GAE : fatal: empty ident name (for < ---- >) not allowed.

2017-01-10 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Without your actual git config settings it is hard to investigate what the actual configuration issue is that is causing this error. As this is a Git command specific issue, and not a Google Cloud issue, you may be able to find help for this error on Git specific forums

[google-appengine] Re: OverQuotaError(The API call datastore_v3.RunQuery() required more quota than is available WITH billing enabled

2017-01-18 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Even though Billing is enabled, you can still have a low 'Spending Limit ' set that prevents your quota from using up a set budget. I recommend you set your spending limit

[google-appengine] Re: Can't create cron job in Google App Engine app that has multiple services

2017-01-23 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
As Google Groups is meant for high level product discussions, I recommend you continue troubleshooting via your original Stack Overflow post. Note, in order to have your cron.yaml uploaded, you need to run the proper 'gcloud app deploy cron.yaml

[google-appengine] Re: Trying to see logs in a GAE app.

2017-02-02 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
This sounds like it would be better posted to Stack Overflow, as Google Groups is for general product discussions. Check out our community support page for the list of tags we monitor, along with the guide on how to post on Stack Overflow

[google-appengine] Re: Java Maven deployment fails on flexible environment most of the time.

2017-02-02 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
The error can be seen in the line: "Failed to execute goal com.google.cloud.tools:appengine-maven-plugin:1.1.0-beta:deploy". This simply means that the Maven goal 'appengine:deploy' does not work for the Maven plugin you are using. The command you are using is for the 'com.google.appengine

[google-appengine] Re: Java Maven deployment fails on flexible environment most of the time.

2017-02-02 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I am seeing existing issues [1][2][3] filed for this in the app-maven-plugin Github repository. I suggest you review these existing issues to see if they match your configuration and runtime and follow up there. If not it is recommended you open a new issue directly to the engineers working on

[google-appengine] Re: Image API for Flexible Environment

2017-02-03 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Since the new Google Cloud Client Libraries are made to run in the App Engine Flexible Environment, you can submit a feature request to have the Image API supported t

[google-appengine] Re: Authenticating Users on App Engine Using Firebase

2017-02-06 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You can use the Firebase Server SDK for Java with the Authentication Admin API as seen in the Android app example . Additi

[google-appengine] Re: Cloud Platform Console. Dashboard is empty for one project

2017-02-08 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
This issue report would be better handled in a Public Issue Tracker , as Google Groups is meant for general product discussions. I recommend you open a new issue report in

[google-appengine] Re: GAE - python - standard - out of the box / open source CMS solutions

2017-02-17 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You might want to consider hosting your site on Compute Engine . With Google Compute Engine (GCE), you can quickly deploy a wide range of Content Management System apps via the Cloud Launcher

[google-appengine] Re: Sharing dedicated memcache across different modules of an app engine app

2017-02-20 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Since Google Groups is meant for general product discussions, your coding question would be best posted on Stack Overflow . I recommend you also supply your actual code for both services, as using Namespaces

[google-appengine] Re: App Engine stuck at two instances at idle?

2017-02-21 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Since you are using the Node.js runtime, you are deploying your application to the App Engine Flexible environment. By default, the minimum number of instances

[google-appengine] Re: 1366, "Incorrect string value"

2017-02-22 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions. You are correct to have filed the issue report on the Git repository, and @waprin is looking into it there. As he gave an ETA of ~24 hours (meaning you can expect

[google-appengine] Re: Trouble deleting an entity from it's key (believed to be a unicode issue)

2017-02-23 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions. Coding questions are best asked on Stack Overflow . I see that you have already posted this exact question

[google-appengine] Re: Where to host a Perforce server?

2017-02-24 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Could you clarify what you mean by "better team access" as this will help identify the best Cloud product to host your Perforce depot. The current entire purpose of Perforce is to allow easy team accessibility

Re: [google-appengine] Re: Appengine Endpoints Api Explorer 'time to execute'

2017-03-01 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Cloud Support cases are created and access by those who have a Support package . For more information about accessing support, you can talk to a Sales representative . Google Groups is meant for gen

[google-appengine] Re: Composite index - ZigZag Merge

2017-03-07 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
As Google Groups is meant for general product discussions, this type of technical question is best suited for Stack Overflow . As noted before on Stack Overflow,

[google-appengine] Re: Scheduling Tasks with User params

2017-03-10 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You can update the schedule of any CRON job by changing your cron.yaml and redeploying it . You

[google-appengine] Re: Reading polygon coordinates

2017-03-13 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical coding questions. Since this is a Google Maps API coding issue (and not an App Engine product issue), it is recommended you post your question to the Maps Stack Overflow

[google-appengine] Re: Parameterized type com.googlecode.objectify.Key not supported.

2017-03-15 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I am happy to hear that you were able to solve your issue in this groups thread. Note that Google Groups is meant for general product discussions and not for technical support. Technical questions are to be posted on Stack Overflow with the Google Cloud supported tags

[google-appengine] Re: !!!URGENT!!! CloudSQL Suspended after disable and re-enabling Billing

2017-03-16 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Hey Lawrence, Google Groups is meant for general product discussions and not for technical support. I highly recommend you contact Billing Support so that they can resolve the issue for you. For all other issue reports or feature

[google-appengine] Re: Google App Engine went GA

2017-03-16 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Hey Lawrence, When you deploy your code to any Cloud it is run on virtual machines (VMs). It is the capabilities of these optimized VMs, and how they can scale to handle any traffic load to your app that makes App Engine stand out. App Engine Standard use

[google-appengine] Re: !!!URGENT!!! CloudSQL Suspended after disable and re-enabling Billing

2017-03-16 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Hey Lawrence, Could you provide the case number for the Billing Case you opened so that I can see your project information. As previously noted Google Groups is not for technical support and if they needed to route you (because your billing account is ok) it should have been either directly to

[google-appengine] Re: !!!URGENT!!! CloudSQL Suspended after disable and re-enabling Billing

2017-03-16 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Thank you for providing the case, I do see that your Cloud SQL instance is in the suspended state. I also see that you have correctly opened this Issue Tracker to have your instance restarted. I direct you to your preexisting Issue Tracker

[google-appengine] Re: How manage FacetOptions discovery_value_limit with more than 20 values?

2017-03-17 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You may be able to open a Feature Request for the Search API to increase the 'discovery_value_limit'. As there is no limit to an actual in

[google-appengine] Re: How to access Google Cloud SQL Proxy from App Engine from DotNet App

2017-03-21 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
It is actually much easier to connect to your Cloud SQL instance from App Engine. Instead of using a proxy to connect, you can directly connect from your App Engine app securely with SSL using the IP, username, and passwo

[google-appengine] Re: Plans for Node.js on App Engine Standard?

2017-03-23 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
There are currently no plans for Node.js on App Engine Standard that I am aware of. I highly recommend you file this feature request on the Issue Tracker, as it will be properly routed to the engineering team there. Note

[google-appengine] Re: How to access Google Cloud SQL Proxy from App Engine from DotNet App

2017-03-24 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
As noted in the documentation , connections that are made using the Cloud SQL Proxy or from App Engine are already encrypted by default whether you configure SSL for the instance or not. So you do not require an SSL cert in these c

[google-appengine] Re: Sharing common code between services with Appengine Flex

2017-03-24 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Your web application is the combination of all of your individual services. Each service is its own separate application that has its own resources and code. Services can communicate to each other via API Endpoints . You can also

[google-appengine] Re: git clone -b phase0-helloworld https://github.com/GoogleCloudPlatform/appengine-php-guestbook.git helloworld

2017-03-24 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
When you supply the Git command option '-b' it is telling Git to clone a specific branch of the code (in your case the 'phase0-helloworld' branch) and not the HEAD main branch code. You can see the different branches of a Git repository in the branches tab.

Re: [google-appengine] Re: Plans for Node.js on App Engine Standard?

2017-03-27 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Transactional Tasks are coming to the new Cloud Tasks API which will be accessible via App Engine Flex and other Google Cloud products. You can sign up for the Alpha release of

[google-appengine] Re: Mapping Custom Domain to Specific URL

2017-03-27 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I would recommended moving your URL handler code into separate Services (e.g 'shoes.amazon.appspot.com'). Then you can upload a Dispatch

[google-appengine] Re: How to access Google Cloud SQL Proxy from App Engine from DotNet App

2017-03-28 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You are correct, the easiest way to connect to your Cloud SQL instance from App Engine, as previously recommended, is to directly connect to it using the Cloud SQL instance's IP address. It i

[google-appengine] Re: Delivery Rate in App Engine

2017-03-29 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You are correct, the only insights available with the App Engine Main API is the actual usage of the API as seen in the Quotas page . If you want to receive more analytics and insights for the emails you send, you can use third-party serv

[google-appengine] Re: Differences in generated endpoint Java client libraries (1.9.48 -> 1.9.50)

2017-03-30 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. I recommend you report this issue in the Google Issue Tracker . Just be sure to add more information like the actual error stack traces

[google-appengine] Re: Deployment Errors

2017-03-31 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. I recommend you file a public Issue Tracker report with more information. First run 'gcloud components update', then copy the actual full command output

[google-appengine] Re: how to use paho.mqtt library in google app engine to publish as well as subscribe for messages

2017-04-03 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Note, Google Groups is meant for general product discussions and not for technical support. It is recommended you post technical questions on Stack Overflow using the Google Cloud tags. The Google Cloud service that is recommended

[google-appengine] Re: High latency trace requests to non-existent versions

2017-04-04 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. I highly recommend you report this in a Google Issue Tracker . Just make sure you provide more information such as your project ID, and the timestamps (wit

[google-appengine] Re: Invalid stream header in GAE Standard

2017-04-05 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. If you believe this is a bug you can report this in an Issue Tracker . If you are looking for technical support I recommend you post your question on Stack

[google-appengine] Re: Downloading Logs

2017-04-07 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions an not for technical support. I recommend you star the Public Issue Tracker for this issue so that you may receive email updates on any progress. - Note the workaround is to use the newer '*gclo

[google-appengine] Re: What is the s~ prefix?

2017-04-10 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
To add onto pdknsk's answer, App Engine project names that have the "s~" prefix mean that you selected to have your application hosted in America during project creation time. Alternatively you could also see the "e~" prefix if you selected

[google-appengine] Re: latency more 100 s

2017-04-12 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. It is recommended you open a Public Issue Tracker report with more information such as your project-id, app.yaml/appengine-web.xml configuration file, in

[google-appengine] Re: Unknown project: Firebase Demo Project

2017-04-18 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
The Firebase Demo Project is a project owned by Google and is under a Google Billing Account. Therefore it is not your billing account that is charged for its usage and is instead Google that is charged. By default, you are granted ac

[google-appengine] Re: Behaviour of NDB put

2017-04-19 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Currently, when updating a Datastore Entity you use the 'put' method. A 'put' in the Datastore is a blind write that saves the whole entity back to the Datastore without first looking at any

[google-appengine] Re: App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Is there a specific reason why you require the need to perform writes to your 'public/app' folder? Scalable applications in the cloud should normally never perform writes to the local filesystem, as data written in an App Engine instance is released with the instance when it is no longer needed

[google-appengine] Re: Gmail Pop-up window: An application is requesting permission to access your Google Account

2017-04-25 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
To clarify, the 'https://appengine.google.com/_ah/loginform ' URL seen in the source is just the actual Google log in consent popup you took a picture of, and not the actual application that is attempting to access your email. The actual applicatio

[google-appengine] Re: Windows VPN

2017-04-26 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
It looks as though you have created a Compute Engine VM and not an App Engine application and are attempting to connect to the GCE (Compute Engine) instance via VPN

[google-appengine] Re: Google Cloud PHP connection

2017-05-01 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. If you require technical support for connecting to your Cloud SQL instance from App Engine , you can submit your question on Stack Overflow <

[google-appengine] Re: Using Cloud SQL database with Laravel

2017-05-02 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. If you require technical aid in connecting to your Cloud SQL instance from App Engine , you can post your setup and stacktrace on Stack Ov

Re: [google-appengine] Cloud shell Java version older than app engine

2017-05-04 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You are correct, since the App Engine Flexible environment is capable of hosting any runtime via Docker, the Java image offered in the documentation uses the newer Java 8 (just as Les stated). To reiterate Les' comment, the App Engine Standard Ja

[google-appengine] Re: Querying on attributes of related kind in ndb

2017-05-11 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You first perform a keys_only query to retrieve the list of all Professors whose 'name' = "Snape". Then query for all Students

[google-appengine] Re: Unable to deploy nodejs application on appengine flexible environment

2017-05-15 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. It is recommended to file an Issue Tracker report for all feature requests and issues. For technical support, you may ask questions on Stack Exchange

[google-appengine] Re: Architecting entity groups, is this the correct approach?

2017-05-15 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
An Entity Group consists of a root ancestor Entity , and all of its descendants. There is a write throughput of one transaction per second per Entity Group, where transactions on a given entity gro

[google-appengine] Re: Google cloudstorage returns 404 Not Found when trying to delete from bucket (localhost)

2017-05-16 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Ideally, performing local testing should never affect your production environment. By limiting the local devserver access to a single test bucket, it helps prevent potential harm to all of your Google Cloud Storage buckets and objects. This test bucket should also be just that, a 'test' bucket

[google-appengine] Re: ISSUE with the all the URL's while creating XML Sitemap Generation

2017-05-17 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. You can post your technical questions on Stack Exchange using one of the Google Cloud tags, as our community support team is active there. Note that Googl

Re: [google-appengine] Re: Architecting entity groups, is this the correct approach?

2017-05-17 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. I recommend posting your code along with the stacktrace you are getting to Stack Overflow using one of the support Google Cloud tags. Our technical commu

[google-appengine] Re: Instance spinning for a user facing request - Standard Java Appengine

2017-05-18 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is meant for general product discussions and not for technical support. - I suggest you first investigate your requests using Stackdriver Trace to find out where the latency is occurring (as it is often code related). - If the latency is seen bef

  1   2   3   4   >