[google-appengine] Re: Directx or Hyper-V In google Cloud?

2018-09-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Cloud's Compute Engine service would be more catered towards running game servers as seen in our Gaming Solutions , rather than for running actual games. Note that Google Groups is reserved for general product discussions and is not for

[google-appengine] Re: Api Engine Free Trial

2018-09-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can directly disable your billing account by following the Disable billing for a project steps. If you simply wish to keep your billing account but remove the free trial credits, you can file your

[google-appengine] Re: Googlers don't use the Dashboard

2018-09-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is reserved for general discussions and is not for reporting Google-end issues. For reporting a Cloud Console specific issue, you can click the 'Send Feedback' button in the top right of the console to directly notify the Cloud Console

[google-appengine] Re: How to config Cloud Armor for GAE?

2018-09-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Currently Cloud Armor does not support App Engine. The App Engine engineering team is working on a solution for App Engine but there is no ETA. You can star and follow this existing Public Issue Tracker for App Engine to support Google Cloud Load

[google-appengine] Re: Migation from standard datastore to Firebase native

2018-08-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can find all of the answers to your questions in the Automatic Upgrade to Cloud Firestore documentation and provided video . As noted in blue on that page: "You

[google-appengine] Re: Root Domain 403ing, but other domains working

2018-08-15 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Looking at your CNAME and A record configuration for your domains, they do indeed look to be correct as you originally mentioned. The domain length or the top-level domain '.us' should not be an issue since your 'www.' subdomain is working. http://w34.us is always returning a 404 for me and

[google-appengine] Re: Root Domain 403ing, but other domains working

2018-08-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I am seeing a 404 Not Found for a GET request to your domain. This means that your App Engine service that is serving your custom domain does not have a handler configured to serve that exact

[google-appengine] Re: Oracle Database in an App Engine Application

2018-08-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can setup an advanced network configuration in your App Engine Flexible app.yaml configuration file to access your Oracle database within your network. - Note that Google Groups is

[google-appengine] Re: Java 9, 10 and forward on App Engine Standard

2018-08-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
For clarification, the article you are referencing pertains to future Java 8 updates and support requiring an Oracle Java SE Advanced Desktop or Oracle Java SE Suite subscription starting in 2019. Therefore yes Java will continue to be free on App Engine Standard, but supported versions of Java

[google-appengine] Re: Using App Engine to Create Endpoints for Google Cloud SQL (MySQL) Database

2018-07-23 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
In general you would create your own App Engine endpoint APIs via Google Cloud Endpoints . Your API can have individual URL endpoints for each of your tables (or a single URL endpoint that can accept a table

Re: [google-appengine] Re: high resource usage than expected

2018-07-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As you mentioned, your App Engine resource usage is a combination of all of your services and versions. Mainly your 'api' and 'cron-backend' services, as they have the most instance usage due to URLFetch requests and Datastore/Memcahce interactions. Your 'api' service also saw a spike in

Re: [google-appengine] Re: AppEngine down? - 502 errors

2018-07-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I have notified the team responsible for this specific post-mortem of the valid feedback provided here in order to ensure that the questions raised will be addressed in the incident report. The team is very aware of your concerns and is working very very hard to thoroughly investigate and

[google-appengine] Re: high resource usage than expected

2018-07-17 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you do not want to use more than the free App Engine quotas , it is recommended to set 'max_instances' = 1 for basic scaling , as you currently have two instances running

[google-appengine] Re: Autoscaling with Flex

2018-07-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As Jeff mentioned, when you are already receiving traffic, App Engine will perform automatic scaling to meet the requirements of your traffic to reduce user-facing cold starts. So setting up an automated system to change your instance count would be competing with automatic scaling, and it is

[google-appengine] Re: Autoscaling with Flex

2018-07-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Yannick was referring to the old method in App Engine Standard where you would use a Cron job to ensure App Engine never scaled to 0, causing initial incoming requests to see delays due to cold starts. This is the same method Patrick mentioned in his original message that he attempted to use

[google-appengine] Re: NDB Query hangs for one set of criteria

2018-07-03 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This may be due to your repeated property. Depending on your query on this property, you may not have the required indexes for a fast result. Therefore the Datastore would attempt a zigzag merge join on existing indexes in attempts to satisfy the query. As per the documentation, this could

[google-appengine] Re: Decline requests to the one GAE instance to use for them a other GAE instance

2018-07-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It is not recommended to change the code that is currently running on a single App Engine instance. Since App Engine scales its instances of your application, that single instance may turn down due to low

[google-appengine] Re: gcloud enhacement ?

2018-06-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are correct. There is currently no API implementation or gcloud command for disabling/enabling Datastore writes (and this can only currently be done via the Cloud Console ). Since

Re: [google-appengine] Re: Stackdriver Structured Logging from App Engine Flex

2018-06-28 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
For clarity, the fluentd logging agent running as a side-car container in the Flexible environment tails log files in /var/log/app_engine/app and sends them to Stackdriver via the same Stackdriver Logging API. Using the API directly in your application's container would be faster than if your

Re: [google-appengine] Re: Connecting Cloud SQL from App Engine with TCP.

2018-06-28 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
For reference, this is an existing Feature Request in the Public Issue Tracker for this App Engine limitation. Since App Engine Standard runs on containers, its current architecture implementation

[google-appengine] Re: Can a Flex application be completely private?

2018-06-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can restrict the access to your App Engine application via Firewall rules . Note the way to allow other App Engine services

[google-appengine] Re: Sudden and ongoing spike in memory and CPU utilization

2018-06-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The App Engine engineering team is aware of this issue and they are currently investigating it. There looks to be an initial correlation with the latest Python update . All further communications should continue in the

[google-appengine] Re: wordpress multiple site custom domain not working on App engine

2018-06-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
App Engine is used for building your own scalable backend and APIs, and is not really for hosting a static website like Wordpress. We generally recommend using our click-to-deploy Wordpress solution on Compute Engine

[google-appengine] Re: Stackdriver Structured Logging from App Engine Flex

2018-06-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you are having issues with your stdout and stderr messages not appearing in Stackdriver Logs Viewer, you can directly log to Stackdriver Logging via the Google Cloud Java Client for Logging

[google-appengine] Re: Connecting Cloud SQL from App Engine with TCP.

2018-06-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
In-bound socket connections are not supported in App Engine (some runtimes support outbound connections with limitations). Therefore, the correct way to connect to your SQL instance from App Engine is via a UNIX socket

[google-appengine] Re: Cloud endpoints are running slow in App Engine Standard Environment

2018-06-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The best way to investigate the latency of your own application is to directly apply logging throughout your code. Log the timestamps of when your application receives a request, before and after it performs any logic, before and

[google-appengine] Re: Deploy hapi.js v17 on app engine but always return 502

2018-06-19 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It is required to listen on port 8080 as App Engine will route all 'appspot.com' requests to this port. If your application does not listen on port 8080, the nginx webserver in front of your

[google-appengine] Re: WhiteList to Java 7 depracation

2018-06-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
All the whitelist does is allow for your specific project to continue to serve Java 7 App Engine Standard applications up until the shutdown date . If you do not use

[google-appengine] Re: Too many redirects

2018-06-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The App Engine engineering team is aware of this issue have already begun applying a fix. All further updates and communications about this issue should continue in the Public Issue Tracker report . -- You received this message because you are

[google-appengine] Re: error on local deployment

2018-06-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is reserved for general product discussions and not for reporting Google-end issues. All further communications about this issue should occur in your open public issue report . -- You received this message because you are subscribed to

[google-appengine] Re: Protection to Man-In-The-Middle attack in android client via SSL pinning

2018-06-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since the appspot.com domain is already signed by Google, you may be able to simply pin that public key; but there if no guarantee that Google will not change it without warning. Therefore using your own SSL certificate (self-signed should work, as the App Engine Managed SSL

[google-appengine] Re: Preloading in CloudDataStore

2018-05-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since the 'documents ' are JSON objects and not raw binary, they cannot be saved into Google Cloud Storage. I think they use to be persisted to BigTable , but I

[google-appengine] Re: Preloading in CloudDataStore

2018-05-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As previously mentioned, that is the Search API , and is not related to the Datastore. The Search API allows you to store document objects and query for these objects based on their contents. It uses ranking and indexing to find

[google-appengine] Re: Preloading in CloudDataStore

2018-05-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You seem to be confusing the Search API document indexes with Datastore indexes . Datastore has its own tab in the Pricing Calculator , and

[google-appengine] Re: Preloading in CloudDataStore

2018-05-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since Google Cloud Datastore is a non-relational, NoSQL, highly-scalable database, you must create a script in the supported language of your choice that reads your CSV, converts your data into Datastore Entities

[google-appengine] Re: gRPC on Google App Engine

2018-05-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Correct, HTTP/2 requires a different routing infrastructure than App Engine Standard currently uses. As previously mentioned, the engineering team is working very hard on release a gRPC solution. You can follow this existing Public Issue Tracker for

[google-appengine] Re: gRPC on Google App Engine

2018-05-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Currently App Engine does not support incoming gRPC connections (also listed here as a limitation for App Engine endpoints communications). The engineering team is aware of this and are working hard on providing a solution

[google-appengine] Re: google app engine slow and timing out

2018-05-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
502 errors are often caused due to your application code being too busy to respond to nginx (the webserver that sits in front of your app that accepts and routes requests to and from your app). Nginx will return a 502 back to the load balancer which is returned back to the client if it is not

[google-appengine] Re: App Engine IAP Authentication failing on AJAX requests to my deployed server

2018-05-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You should indeed be able to reuse the user token provided in order to make subsequent requests to IAP from your own app. Note that when that token expires you would need to follow the suggested 'Managing Cloud IAP sessions ' guide to refresh

[google-appengine] Re: TypeTags error in Java JDK10

2018-05-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is reserved for general product discussions, and not for technical support. For support in getting your code to work, it is recommended to continue conversations with Google Support via your existing Stack Overflow post.

Re: [google-appengine] Re: did App Engine change instance scheduler algorithm in the past month?

2018-05-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I believe "target_throughput_utilization" is defaulted to the value of '0.6'. But as Steren mentioned, all of this information will be made available in the official documentation once the release has completed (as these options might not even be available currently). -- You received this

[google-appengine] Re: App Engine IAP Authentication failing on AJAX requests to my deployed server

2018-05-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The claim set (found under the 'HTTP/REST' tab) of the Service Account JWT is identical to that of the claim set required by Cloud IAP Signed Headers

[google-appengine] Re: App Engine IAP Authentication failing on AJAX requests to my deployed server

2018-05-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As described in the documentation , Cloud IAP is used for securing your applications with Google OAuth from all incoming requests (this includes external clients, and your own application as Attila mentioned). Since your

Re: [google-appengine] Re: did App Engine change instance scheduler algorithm in the past month?

2018-05-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As previously mentioned, Google Groups is reserved for general product discussions and not for billing support. It is therefore recommended to open a free Billing Support case for any billing related inquiries. -- You

[google-appengine] Re: GAE Versioned Application Access Behind Identity Aware Proxy

2018-05-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
There is currently no way to turn Cloud Identity-Aware Proxy (IAP) on/off for individual App Engine versions. This would be a good feature to request on the Public Issue Tracker. - A workaround would be to deploy your new versions to a

Re: [google-appengine] Re: did App Engine change instance scheduler algorithm in the past month?

2018-05-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Randee it looks as though you are attempting to seek support for a separate issue. For free technical support you can use the supported Cloud tags on Stack Exchange . For all other support options you can view the Google Cloud Support page

[google-appengine] Re: did App Engine change instance scheduler algorithm in the past month?

2018-05-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You should investigate how many instances each of your applications used in March and compare that with the amount in April. If you changed your applications' scaling settings it would have directly affected instance count, and in turn the amount of instance hours you use. It is also

[google-appengine] Re: Cannot access my application on flex env for golang

2018-04-27 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This is a duplicate post of your other thread located here . Since you have already received a response in your other thread, all further communications should continue there. - Note: Google Groups is reserved for general

[google-appengine] Re: FIREBASE INSERT INTO MYSQL

2018-04-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since Firebase Realtime Database is a non-relational database, and MySQL is a relational database, there are no auto-migration tools and you will need to manually read your data from Firebase and then convert it into your custom MySQL schema and write it to your MySQL database. You will need

[google-appengine] Re: How to Check if NodeJs IO loop is doing too much heavy task or not on Google App Engine?

2018-04-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can use the Stackdriver Profiler tool to gain insights into the different processes under the main event loop that are consuming the most runtime resources. You can also simply profile the event loop

[google-appengine] Re: How to use Loadtest module to test load on my server on Google App Engine?

2018-04-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Loadtest is a third-party library and is not supported by Google; therefore any issues/feature requests should be submitted to their Issue Tracker. That being said the tool simply runs locally on

[google-appengine] Re: Node standard environment?

2018-04-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
We are indeed working on providing Node.js language support for App Engine Standard. It is still in the early access stage and you can try it by filling out the Early Access request form which

[google-appengine] Re: Google Cloud Profiling how to optimize my code by analyzing it?

2018-04-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The _tickCallback frame you see in the graph was called by the main root service you profiled. By clicking on that frame you will reveal the full name and file that defines this frame's process. It looks like this is the Node.js Event Loop

Re: [google-appengine] Re: GAE Intermittently showing '502 Server Error'

2018-03-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can opt-out of the automatic system updates and restarts by placing your single instance in debugging mode . Just note that if you choose to take it out of debugging mode that the instance will be turned down and

[google-appengine] Re: Endpoint not visible on apis-explorer after google-api-services-drive

2018-03-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Make sure you are correctly using the proper dependencies for Endpoints to work, and you perform a 'mvn clean' before deploying. Also make sure your new service

[google-appengine] Re: How to migrate App Engine from engine to Flexible

2018-03-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The migration guide can be found in our documentation . The main difference is that instances are now Compute Engine VMs , which means the old App Engine API

Re: [google-appengine] Why Domain is Loading very slowly but when opening directly through App Engine Url it is opening very fastly?

2018-03-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This looks to be a different issue specific to this project (since you are seeing actual 502s). I recommend that you open a Public Issue Tracker report with your project number and the domain that you have configured, and the support team

Re: [google-appengine] Re: Bug in Cloud Console

2018-03-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I completely agree and the engineering team is working hard on providing better Stackdriver metrics to report container level resource usage (currently no ETA for the release). For clarity, currently it is the ' bytes_used '

Re: [google-appengine] Re: GAE Intermittently showing '502 Server Error'

2018-03-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Thank you for the further details. This issue is being tracked in this Public Issue Tracker . As stated in the last comment, only having one instance in the Flexible Environment will often cause this issue (as I see you have 'max_num_instances' set to

[google-appengine] Re: GAE Intermittently showing '502 Server Error'

2018-03-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This occurs when your actual application becomes too busy to respond to the nginx server Docker container that sits in front of your application Docker container within the instance. Nginx will send health checks

[google-appengine] Re: Google App Engine 503 Error

2018-03-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are seeing these errors because your requests are timing out. You can see from the picture that your requests are taking over 20 seconds to respond. If you click those errors in the Log Viewer you will most likely see the error "Request was aborted after waiting too long to attempt to

[google-appengine] Re: GOOGLE CLOUD RDP INTERNET USAGE LIMIT

2018-03-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Internet usage pricing for a Compute Engine instance can be seen in the Network Pricing documentation . App Engine instances are billing per hour depending on the App Engine Standard environment instance class type or App Engine Flexible

Re: [google-appengine] Re: Bug in Cloud Console

2018-03-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are correct, that is indeed the memory usage of the entire instance. As previously mentioned, the best way to confirm what exactly is using all of that memory is to SSH into the instance and list the stats of each process. If it is Docker that is consuming the memory (which it most likely

[google-appengine] Re: Websocket support for Golang?

2018-03-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As per the documentation for the Go Flexible environment , websockets in App Engine Flex are not yet supported. The early access form

[google-appengine] Re: Bug in Cloud Console

2018-03-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Instead of checking the memory usage of your application's runtime (aka the Docker container that is running your application) you should log into your GAE instance (via ssh) and check the memory usage of the

[google-appengine] Re: Accessing BigQuery table using Java client library.

2018-03-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
When you use the Client Libraries to access a Google Cloud project's BigTable resources it will count as Network usage and will be priced accordingly towards the project you are making requests to. The quotas are also specific to the project

[google-appengine] Re: Websocket support for Golang?

2018-03-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As per the documentation the Go standard environment supports outbound sockets only. There is an early access form for full

[google-appengine] Re: 500 error during deployment

2018-03-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The new GCloud SDK is the preferred method of deploying over appcfg , specifically the GCloud SDK based Maven

[google-appengine] Re: Shutdown hook for Node JS flex env?

2018-03-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As per the documentation App Engine sends a SIGTERM signal to your application container running within the instance to notify your application that it is about to be shutdown. You can read from the

[google-appengine] Re: Lost gcsfuse functionality since March 16 -- not sure what changed

2018-03-19 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If your custom image does not pull from an App Engine base image than it is recommended to try running your docker image outside of App Engine in a local Docker test environment. If gcsfuse still does not work locally, than the issue is with gcsfuse and it should be reported to their

[google-appengine] Re: Lost gcsfuse functionality since March 16 -- not sure what changed

2018-03-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can view the appropriate Github page for the base App Engine Flexible Docker image that you are building on to find out what changes have been made to your specific image since you last deployed. I see that gcsfuse

[google-appengine] Re: AppEngine standard with Java spring-boot and spring-boot-devtools

2018-03-17 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As per the Issue Tracker for the Google Cloud getting-started-java tutorial, it seem this is a known issue . The solution as per the Spring Boot Issue Tracker is

[google-appengine] Re: Hey Guys just upgrade from Endpoint V1 to V2 and works

2018-03-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you are still under the Free Trial you should be eligible for Free Trial Technical Support . If not, your best option is to clearly explain where in the migration

[google-appengine] Re: ImportError: No module named googleads

2018-03-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Make sure you are doing the 'pip install -r requirements.txt' as shown in the documentation in a fresh virtualenv. Also make sure that you didn't already install this library outside of the virtualenv as

[google-appengine] Re: Cpanel domain Setup

2018-03-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
cPanel is not a Google Cloud product and therefore we have no visibility into it. Google Groups is reserved for general discussions about Google Cloud Platform products and services and is not for technical support. It is recommended to seek cPanel specific

[google-appengine] Re: Hey Guys can't deploy app engine after update to endpoints V2.

2018-03-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This looks like an Android Studio specific error. As a workaround you can simply deploy using the 'gcloud app deploy ' command in the path location of your module's (now called 'service') app.yaml or appengine-web.xml file. If the

[google-appengine] Re: ERROR: (gcloud.app.deploy) Error Response: [4] Timed out waiting for the flex deployment to become network provisioned.

2018-03-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
For any Google-end issues it is recommended to report this to the engineering team by opening a Public Issue Tracker report . Before you file the report, ensure you are running the latest GCloud by performing a "gcloud components update

[google-appengine] Re: Request every 5 seconds

2018-03-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This sounds like it's simply the HTTP request deadline of the actual client request, and not your application code returning deadline exception errors. The client requests have a default deadline (specific to the library performing the HTTP request) that it will wait for your application to

[google-appengine] Re: What does the 20 cron job per day limit mean in Google App engine?

2018-03-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
To clarify this is a limit on the total amount of created Cron jobs for a project. This is not a daily quota, and I have requested the documentation team to correct the wording. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Re: Appengine: dramatic performance deterioration after java 8 migration

2018-02-16 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I completely agree with you; and to clarify my redirect to the PIT, the engineering team is currently performing an internal investigation for this issue and by opening a Public Issue Tracker report we are able to link the internal investigations to the Public report (which is not possible in

[google-appengine] Re: Code editor

2018-02-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Eclipse Orion editor has moved to the pencil icon in the Cloud Shell. This is the best solution for editing code in the Google Cloud Shell VM. You can of course deploy your own distribution of Eclipse Orion

[google-appengine] Re: Appengine: dramatic performance deterioration after java 8 migration

2018-02-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is for general product discussions and is not for reporting Google-end issues. It is recommended to report your issue in the Public Issue Tracker with additional details such as your project number to inform the engineering

[google-appengine] Re: How to deploy a java microservice to an existing python-default standard environment app?

2018-02-09 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As previously described, you need to have an appengine-web.xml in the root directory of your Java service (this is the Java version of the app.yaml). You then set the actual *service_name *property in the appengine-web.xml

[google-appengine] Re: How to deploy a java microservice to an existing python-default standard environment app?

2018-02-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can think of services like completely different applications (which can be written in different languages), with each their own versions. Your main App Engine project

[google-appengine] Re: Google Cloud Libraries for Appengine Standard

2018-02-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Other than the fact that the new Google Cloud Client Libraries are mostly currently in Beta, it is actually recommended to use the new Client Libraries (as it is also now

[google-appengine] Re: PCI compliance

2018-02-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
All information about Google Cloud's PCI compliance can be found within the Security and Compliance documentations . Note that Google Cloud products and services are PCI compliant (e.g App Engine), but your own use of these services

[google-appengine] Re: Does GAE support Asynchronous Servlet now?

2018-02-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Async servlets are not yet supported in App Engine. The engineering team is aware of this feature request and are working on implementing it. You can follow the progress in the Public Issue Report . All further updates and communications will occur

[google-appengine] Re: AppEngine Standar Enviroment PHP - La codificación de caracteres del documento HTML no ha sido declarada

2018-02-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This is an HTML issue with your code , and that error message is returned by your Browser. This is not an issue with Google. It is recommended to ensure you are correctly setting your

[google-appengine] Re: Webapp2 - future clarity

2018-02-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Webapp2 is now an Open Source project maintained on Github . The community has already added support for Python 3 as per the git report here . The Google Cloud App Engine Standard team is

[google-appengine] Re: I want to upload my code,but meet a problem.........

2018-02-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It is recommended to use the new Gcloud SDK to deploy your App Engine applications as per the documentations . Just ensure that your app.yaml configuration file

[google-appengine] Re: Can someone please make a new video tutorial on how to get course builder set up on you computer and cloud?

2018-02-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Course Builder is now an Open Source project hosted on Github. For any feature requests or issue reports you can file them in their Issue Tracker.

[google-appengine] Re: Migrating from Google App Engine to Kubernetes cluster

2018-01-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
app.yaml is specific to App Engine only and is not used in Kubernetes. Kubernetes uses its own yaml configuration files to create Services . It is therefore recommended to follow the documentation to Migrate

[google-appengine] Re: Migrate from GAE to Kubernetes

2018-01-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I noticed that you have posted a duplicate thread concerning this topic. For organization, all further communications will occur in your duplicate thread

[google-appengine] Re: Configuring nginx-app.conf to find the /index.php files

2018-01-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
For files such as HTML, CSS, and Javascript you would use the static document root. For PHP specific scripts you can follow the documented recommendations . This configuration will fallback to serving your

[google-appengine] Re: Configuring nginx-app.conf to find the /index.php files

2018-01-23 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can serve static files by specifying the 'document_root' in your app.yaml, and App Engine will take care of configuring Nginx for you as described in the Serving Static Files documentation. - Note: Google Groups

[google-appengine] Re: Taskqueue stub slower than needed in dev_appserver

2018-01-23 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I have notified the engineering team of this and they are working on a fix. All further communications should occur in the Public Issue Tracker. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

[google-appengine] Re: Will Python 2 End-of-life result in Python in AE Standard being turned down?

2018-01-22 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Python isn't going anywhere and will continue to be supported on the Google Cloud Platform. There are many plans underway for continued Python support in the form of Python 3. Currently there are no public release dates, but you may be able to contact Sales

[google-appengine] Re: Request help with enabling SSL for custom domain on Google App Engine

2018-01-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It normally takes 24 hours or more for the changes to your domain to propagate throughout DNS servers and become reachable. It is recommended to wait this amount of time after any changes to your configuration to take affect. I see as per your Stack Overflow post that it is now working for

[google-appengine] Re: Server Availability in Singapore for Google App Engine and Cloud SQL

2018-01-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can check the current status of supported services in each region via the Products Available by Region page. If you are requesting for details about future geo expansion, it is recommended to contact Sales

[google-appengine] Re: 502 Issue with @ComponentScan in java8 standard jetty environment and flexible

2018-01-17 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I would recommend starting with a base Spring application that works on App Engine. Once you have Spring working with all of the configurations in place for App

  1   2   3   4   >