[google-appengine] Re: I can't get data from Datastore in App Engine but can add and delete

2018-01-16 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you are not seeing any results for your specific query this is usually an indication that you are missing an index (or the index has yet to be populated, which takes time if it is new). Ensure that you have correctly configured an index for your specific query in your index.yaml

[google-appengine] Re: Error: Password not accepted from server!

2018-01-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support. If you require technical support for Google Cloud specific products and services it is recommended to post your detail questions on Stack Overflow

[google-appengine] Re: App engine instances increasing irrespective of app.yaml configuration

2018-01-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Just quickly looking at your projects I am only seeing a single version serving with 'max_num_instances: 1' and it does indeed only have one instance. Google Groups is meant for general product discussions and not for reporting Google-end issues. If you see this issue in the future it is reco

[google-appengine] Re: 502 errors on multiple projects - Nothing in Log

2018-01-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I see that you have correctly reported this in a Public Issue Tracker. Since Google Groups is for general product discussions and not for reporting issues, all further communications will occur in your Public Issue Tracker.

[google-appengine] Re: Will wildcard certificates be supported after Feb 27?

2018-01-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The engineering team is investigating solutions for wildcard support in App Engine. You can follow the progress in the public feature request . All further communications about this feature will occur there. -- You received this message because you ar

[google-appengine] Re: Running Django in the App Engine Flexible Environment

2018-01-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Make sure that you have setup the Python Development Environment first before attempting to run the application locally. You should also try following the entire tutorial via the Google Cloud Shell instead of your local ma

[google-appengine] Re: SDK installation

2017-12-14 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This error is not an issue with GCloud but is an error returned by your operating system as it is not able to find the location of the 'gcloud.cmd' file (e.g if using Windows). You must add the directory path of the gcloud script (e.g C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bi

[google-appengine] Re: App Engine Python SSL version 2.7 shut down

2017-12-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
According to the Python release notes it looks as though this was implemented on November 15th for the Python SDK. Likewise, on November 15h this was updated in GCloud as per the release notes

[google-appengine] Re: App Engine Python SSL version 2.7 shut down

2017-12-12 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It is always better to perform updates yourself in order to have full control over migrating to the new updated service, which also allows for monitoring for potential issues. If you let it auto-update, it may result in un-foreseen issues with your code dependencies that could cause downtime f

[google-appengine] Re: configure gunicorn worker class for python2.7 google app engine Flex

2017-12-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As long as you are following the documentations for the recommended app.yaml entrypoint , your actual gunicorn.conf.py configuration is not Google-end and is a third-party project. As per the Gu

[google-appengine] Re: cloud.google vs google.golang?

2017-12-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It depends which App Engine environment you choose (Flexible or Standard)! The App Engine Standard environment uses the older App Engine specific APIs , where as the Flexible environment uses

[google-appengine] Re: Word Press with app engine

2017-12-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You would deploy multiple services . You would deploy your WordPress site to a PHP service by following the Google Cloud WordPress Guide

[google-appengine] Re: Application went down - serving issues

2017-12-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. It is recommended to provide full details such as your project number, log traces, and exact timestamps (with time zones) of the issue in a Public Issue Tracker report

[google-appengine] Re: Deploying to App Engine stopped working overnight

2017-12-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
There is currently a known issue where deployments may take longer than normal or fail. The engineering team has identified the issue and have been applying fixes to each deployment cell. All further communications will occur in your Public Issue Tracker.

[google-appengine] Re: NDB: Querying for a value of None on a repeated property

2017-12-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
So you are physically setting the 'None' object to your 'field_abc'. As per the documentation, this is indeed working as intended as you have provided it with a value. If you were to instead just perform* 'field_abc = ndb.IntegerProperty()' *where it is optional for this Entity property to have

[google-appengine] Re: NDB: Querying for a value of None on a repeated property

2017-11-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It comes down to how the Datastore distinguishes if an Entity property has a value or not. If a property has no value (aka it is never set and is None) than the Datastore is unable to filter on that specific property (since it doesn't have it) and will not return that Entity in a query. This is

[google-appengine] Re: Unable to bulk create entities in cloud datastore

2017-11-22 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The documentation you are following is for exporting existing Datastore entities and importing existing Datastore entities using the '.overall_export_metadata' Datastore specific backup files. If you do not have any entities, or if the exported entities match the imported entities, there will

[google-appengine] Re: SSL Certificate renewed in but expiration date was not updated in GAE - now not able to upload a new certificate

2017-11-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you use the *gcloud app ssl-certificates create *command to upload the new SSL cert instead of the Cloud Console you will run into a more detailed error message: "You must be a verified owner of the certificate's d

[google-appengine] Re: Writing Datastore controller for appengine and GCE?

2017-11-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Our engineering team is working very hard to providing full Google Cloud Client Library support for the App Engine Standard runtimes. In the meantime if you require your application to run on both App Engine and Compute Engine you ma

[google-appengine] Re: Why I (can not) choose AppEngine Flexible

2017-11-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I completely agree with your explanations on the current differences between App Engine Standard and Flexible, and why these differences of offerings between the two App Engine environments cause a desire for a type of feature unity to make Flex more like Standard (or vise-versa). We are very

[google-appengine] Re: Strange behavior with my dispatch.yaml

2017-11-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Your '- url: "*/" service: default' rule in your dispatch.yaml is the cause. You specifically specify that any domain '*' without parameters should serve the default service. E.g: 'admin-dot-X.appspot.com' conforms into your '*/' rule, so it will serve your default service. Where as '*ad

[google-appengine] Re: Writing Datastore controller for appengine and GCE?

2017-11-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you are looking to deploy to App Engine Standard it is recommended to follow its documentation . Currently the App Engine Standard Go environment is not recommended to use the

[google-appengine] Re: Unable to create App Engine Standard project in Intellij Idea.

2017-11-16 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for reporting issues. It is recommended to report this issue directly to the Google Cloud Tools for IntelliJ plugin engineering team on their Github Issue Tracker

[google-appengine] Re: Python Pickle file from cloud storage in flexible environment

2017-11-15 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The old 'google.appengine.api' is used by the App Engine API and were made specifically to run on the App Engine Standard environment (which was the only hosted solution at the time). Now with the new App Engine Flexible environmen

[google-appengine] Re: Logs Viewer is Down

2017-11-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for reporting Google-end issues. If you are reporting a Cloud Console issue you can click on the top right "Send Feedback" button to notify the Cloud Console engineering team. For all other Google Cloud issues or feature requests it

[google-appengine] Re: (gcloud.app.deploy) Error Response: [13] An internal error occurred while creating a Google Cloud Storage bucket. for Nodejs Application

2017-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions only and not for reporting issues. It is recommended to report this in the Google Public Issue Tracker to notify the gcloud team of this error. -- You received this message because yo

[google-appengine] Re: Gcloud app deploy error 13

2017-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions only and not for reporting issues. It is recommended to report this in the Google Public Issue Tracker to notify the gcloud team of this error. -- You received this message because yo

[google-appengine] Re: Angular4 GCP APP ENGINE FLEXIBLE

2017-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
502 occurs when the Nginx proxy in front of your application container is not able to communicate with your application code to send it requests. This is often due to mis-configuration of your app.yaml ,

[google-appengine] Re: Does GCP have a Job Scheduling service like Microsoft Azure Scheduler?

2017-11-10 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I see that your duplicate question received an answer. All further communications should be directed to your other thread . -- You received this messag

[google-appengine] Re: Move my appid to SouthAsia region

2017-11-08 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As per the documentation there is currently no way to migrate an existing App Engine application to another region. Our engineering team is aware of this feature request and are investigating it. You can follow the progress in the Public Issue

[google-appengine] Re: Using Google Forms on Google App Engine?

2017-11-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You can create an Apps Script that accepts the Google Form submissions and saves the data into BigQuery . You ca

[google-appengine] Re: App Engine closed local connection on Cloud sql

2017-10-31 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As described in the blue 'Note' in the documentation , your instance type is PostgreSQL and connections from App Engine to PostgreSQL are not currently supported in the App Engine Standard environment. Our engineering team is aware

[google-appengine] Re: Launch Dataflow template from Google App Engine

2017-10-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This is often caused by a dependency issue. It is recommended to follow the Troubleshooting guide to ensure that you have all of the latest dependencies,

[google-appengine] Re: Low code development environment for GCP App Engine?

2017-10-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Google Cloud Platform provides solutions such as App Engine that allows you to deploy your web applications written in any language to virtual machines that scale up and down to meet the needs of your traffic. Thi

[google-appengine] Re: Log Viewer not available

2017-10-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
There is currently a known intermittent issue with the Logs Viewer in the Cloud Console. Our engineering team is aware and are working hard on fixing the issue with high priority. All further communications will occur in the Public Issue Tracker repo

[google-appengine] Re: Deployment Errors

2017-10-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Thank you for reporting this issue. You are correct in reporting it in the Public Issue Tracker . I have responded to you there, and all further communications about this issue will also occur there. -- You received this message because you are subsc

[google-appengine] Re: Adding newrelic to appengine flexible custom environment

2017-10-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
As per the logs it looks like the 'docker-builder187142805/dependency/newrelic' cannot be found. - Note that Google Groups is for general product discussions only and not for technical support. Since New Relic is not a Google product it is recommended to follow the New Relic tutorial

[google-appengine] Re: Edit file

2017-10-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Any file deployed to App Engine cannot be altered afterwards. App Engine will copy your deployed files to every instance is starts up. Therefore logging into one instance and editing a file will not alter any other instance's files. If you require the need to make changes to files after deploym

[google-appengine] Re: Appengine Dashboard: Instances (created, active, billed)

2017-10-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are correct. The *Billed Instance Estimate *line will also always contain the amount of 'min_idle_instances ' that you have configured in your app.yaml (much like manual scaling in that you tell App Eng

[google-appengine] Re: Appengine Dashboard: Instances (created, active, billed)

2017-10-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
1. The reason for manually scaled instances not having a 'Billed Instance Estimate' line in the App Engine Dashboard 'instances' graph is due to the fact that you always pay for the amount of manually scaled instances you have set in your app.yaml (a

[google-appengine] Re: Google App engine deploy python project 502 bad gateway error

2017-10-23 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support. The correct place to seek technical support is indeed Stack Overflow as you have already done

[google-appengine] Re: cron in microservice url

2017-10-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This issue can often occur due to misconfiguration of your app.yaml handlers, dispatch rules, and endpoints. Google Groups is meant for general product discussions and not for technical support. I

[google-appengine] Re: GUICE endpoint servlet and cron

2017-10-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You seem to be missing a '.' char in your '/*' regular expression. The correct '/.*' matches any characters, zero or more times. Concerning your injection issue, you may want to check out past questions on Stack Overflo

[google-appengine] Re: Request failed with unknown error

2017-10-19 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is for general product discussions and not for reporting issues. It is recommended to record a HAR file in an incognito browser window while reproducing the issue, and attaching it to a Public Issue Tracker report to inform th

[google-appengine] Re: GAE Managed SSL does NOT work with Cloudflare (CDN).

2017-10-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Thank you for also reporting this in the Public Issue Tracker . Our engineering team is investigating possible solutions to working with Cloudflare's Origin CA in order to perform domain ver

[google-appengine] Re: Google Cloud Load Balancer redirect HTTP to HTTPS

2017-10-17 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Redirects should occur on your backend configuration. Your Google Cloud Load Balancer will provide you with a 'X-Forwarded-Proto ' header equal to a value of 'http' or 'https'. You would then configure you backend's '*.htacc

[google-appengine] Re: Looking for advice on how to devope an app

2017-10-16 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
1. First step is to go through the many available cloud storage options and pick the solution that best fits your needs. If the data being collected never needs to be updated (e.g logs) than saving the information to BigQuery

[google-appengine] Re: Google App Engine, Nodejs, 502 Bad Gateway

2017-10-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
So just for completeness and clarity, the error you are seeing on your backend service "upstream prematurely closed connection while reading response header from upstream" strictly means that the nginx proxy on that specific instance of your backend service fails to contact the webserver (aka y

[google-appengine] Re: Auto Scaling Flex Environment Based On Metrics Other Than CPU Utilization

2017-10-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The entire benefit of App Engine is that it handles scaling for you and uses many other metrics other than CPU to scale instances as described in the documentation . Looking at the source code

[google-appengine] Re: I keep getting this error: 2017/10/03 17:50:40 go-app-builder: Failed parsing input: app file DbConfig.go conflicts with same file imported from GOPATH

2017-10-04 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Note: Google Groups is meant for general product discussions and not for technical support . The correct place is indeed your Stack Overflow post

[google-appengine] Re: GAE PubSub PUSH results in 400, endpoint is OK otherwise

2017-10-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
400 Bad Request means that your App Engine endpoint does not know how to handle the POST request from Pub/Sub. You need to configure your App Engine endpoint to accept POST requests to properly handle your pushed Pub/Sub messages. Note that Google Groups is meant for general product discussions

[google-appengine] Re: Google App Engine, Nodejs, 502 Bad Gateway

2017-10-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If properly responding to the health check with a message body *res.status(200).send('');* as the documentation states causes the health checks to fail, that would indeed warrant an issue to be reported in the PIT (public issue tracker). Note that responding to health checks is not required as

[google-appengine] Re: Google App Engine - Region

2017-09-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
There are currently no updates on the release date. Until there is a production solution released, creating your own proxy to load balance between regions is the only workaround. One workaround would be to setup a Cloud Load Balancer that accepted req

[google-appengine] Re: Google App Engine - Region

2017-09-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Our engineering team is working on a solution to cross-region load balance for App Engine Flexible and Standard. There is no ETA for the release but you can follow the Public Feature Request for updates. -- You received this message because you are sub

[google-appengine] Re: Google App Engine, Nodejs, 502 Bad Gateway

2017-09-27 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
If you have tested turning the nginx health checks off and you still see these 502 errors, then I highly suggest you report this in the Public Issue Tracker

[google-appengine] Re: Google App Engine, Nodejs, 502 Bad Gateway

2017-09-26 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are very correct, as described in the previously linked Stack Exchange answer, nginx health checks are indeed the same health checks that are configurable via your app.

[google-appengine] Re: Google App Engine, Nodejs, 502 Bad Gateway

2017-09-25 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
You are very correct in your design pattern for testing a new backend. Duplicating live production requests and testing them against your new backend is actually the preferred way of testing before performing a migration. Having an App Engine proxy act like the actual client is also correct for

[google-appengine] Re: 500 error on first boot

2017-09-20 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
This is currently a known issue and our engineering team is investigating the cause. Note that Java 8 is currently in beta, and that there is no ETA for the fix at this time. The issue is due to an RPC failure possibly due to your instance's Java 8 run

[google-appengine] Re: 502 backend error handling with Flask python on GAE

2017-09-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
502 Bad Gateway usually means that the nginx proxy that is responsible for handling requests for an App Engine Flexible instance has not been able to get in contact with your application and deems it to be unhealthy. This is done via health checks

[google-appengine] Re: High and erratic server response time.

2017-09-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Response time is dependent on a lot of factors. Mainly your runtime , scaling settings , and your code. If you are using App Engine Flexible

[google-appengine] Re: ERR_CERT_COMMON_NAME_INVALID

2017-09-13 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support. If you require technical support for properly configuring your SSL certificate , it is recommended to post your complete q

Re: [google-appengine] Re: App engine hosted website - Google search shows the domain is no longer parked by GoDaddy

2017-09-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
To clarify this is the App Engine Google Group which focuses specifically on the Google Cloud Platform App Engine product. If your issue is not with App Engine and specifically with Google Search returning incorrect results only

[google-appengine] Re: App Engine (flexible) instances starting every 30 seconds

2017-09-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Perfect. All further communications about this issue will occur in your Public Issue Tracker . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving ema

[google-appengine] Re: App Engine (flexible) instances starting every 30 seconds

2017-08-31 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support or for reporting issues. It is recommended to report this in a Public Issue Tracker with your actual project ID and we will be able to investigate the caus

[google-appengine] Re: App Engine std java 8 still can't access some Google Cloud SQL gen1 instances

2017-08-31 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support or issue reporting. I recommended that we continue to investigate this issue in your already opened Public Issue Tracker. -- You received this message because you ar

[google-appengine] Re: App engine hosted website - Google search shows the domain is no longer parked by GoDaddy

2017-08-31 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I will assume then that when you "search on 'Google'" you actually mean visit your App Engine application via your custom domain . If this is the actual issue where

[google-appengine] Re: [Google Cloud Insiders] Is there a way to generate an alert when the GAE actual reaches more than 75% of the daily budget?

2017-08-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
There is a feature request for the App Engine spending limit to be integrated into Billing to allow for App Engine budget alerting. The engineering team is working on this integration but there is currently no ETA. -- You received this message becaus

[google-appengine] Re: App engine hosted website - Google search shows the domain is no longer parked by GoDaddy

2017-08-30 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Google Cloud Platform has no insight into your Google Domain setup. It is recommended to contact Google Domains or GoDaddy

[google-appengine] Re: How do I make app engine flexible to connect to container engine via internal IP?

2017-08-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for technical support. If you require technical support for accessing the internal IP of your GKE cluster from App Engine Flexible, the correct place is your post

[google-appengine] Re: ~20ms latency between two servlets, same project, is that about right?

2017-08-29 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It really depends on if you are making calls within App Engine Standard or App Engine Flexible as they both send/accept requests using different infrastructures. - The App Engine Standard UR

[google-appengine] Re: How to increase the 20 rules limit in dispatch.yaml

2017-08-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Yea, only by filing a quota increase request can a quota be increased, as it is sent to the only team that handles quotas. Sales may have been able to route your case to the quota team, like-wise for the support phone call you m

[google-appengine] Re: How to increase the 20 rules limit in dispatch.yaml

2017-08-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
With more dispatch rules comes more CPU and memory resource requirements per app. Therefore there is indeed a hard limit, but I think it is a bit more than 20 (maybe 30?). It is recommended to file a Quota Increase Request to h

[google-appengine] Re: Site removal request

2017-08-17 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
To confirm, I am not seeing any flags on your project, and your application seems to still be serving properly. Therefore this may just be a warning. As per the Notices documentation , you can send an email to legal-noti...@google.com to inquire further about the

[google-appengine] Re: Cursor on query working on local dev but not in production.

2017-08-14 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for project specific technical support. It is recommended to post details about your Datastore indexes and queries on Stack Overflow using the support Cloud tags, as the engineer

[google-appengine] Re: Multiple GAE instances being torn down for no apparent reason and problems with Instances view

2017-08-14 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Google Groups is meant for general product discussions and not for project specific technical support. It is recommended to post details about your scaling configuration and code that is causing the 204 memory instance evictions on Stack Overflow

[google-appengine] Re: Use Service Account to Store Spreadsheet within EU

2017-08-14 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Google Cloud Platform has no connection to Google Drive , and I therefore have no visibility into what regions your data is saved in when using Google Drive. You can reference their Help section

[google-appengine] Re: Share Spreadsheet with Customer's Google Account within EU

2017-08-14 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since this is a duplicate question of your original post , all further communications should continue there . -- You received this message because you ar

[google-appengine] Re: what happened to geospatial search in the datastore?

2017-08-11 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The latest update I can see from the docs is the release of 'google.type.LatLng '. LatLng is being maintained by engineering in the google-cloud repository <

[google-appengine] Re: What is the best development environment for building a custom CRM system?

2017-08-09 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I see that you have also asked about the optimal tools to develop your front-end and backend in the Cloud Developers group. It will be cleaner and more straight forward to move all discussions about your application and desi

Re: [google-appengine] Re: Deploying with one command, not three

2017-08-07 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
The solution for the appengine-maven-plugin is to use the ' deployables ' configuration goal in your pom.xml. If these do not work for you, the

[google-appengine] Re: Datastore structure for app like Google Forms?

2017-08-02 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Essentially you would have one 'Form' Kind. When someone creates a new main Form entity via your application you then make that main Form available to other user's via your application. When a user fills out the main Form via your application, you then save a copy of that Form entity for that

[google-appengine] Re: Are there committed use discounts for appengine standard?

2017-07-25 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I do not currently see any mention of a committed use discount for App Engine in the pricing documentation . Your best bet is to directly email the Sales Team as they are the correct resource for all pricing and dis

[google-appengine] Re: Alternate to mapreduce

2017-07-21 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You can instead use PUSH Task Queues to replicate a Map-Reduce job. Simply have a master method shard a job, and 'Map' the shards to other instances by simply enqueuing tasks. The instances that accept the shards (aka tasks) t

[google-appengine] Re: Official/documented way to set MTU

2017-07-21 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Yes, it is indeed recommended to move all further communications directly to the issue tracker in order to update the engineering team. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscr

[google-appengine] Re: Official/documented way to set MTU

2017-07-20 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You can find the appropriate reported Issue Tracker that covers this exact discussion. Our engineering team is working on a fix so that the MTU of Docker (currently 1500) and the MTU of the Compute Engine VM that is your GAE Flex instance (currently 14

[google-appengine] Re: GAE php mail function question

2017-07-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 or for reporting issues. It is recommended to post your technical questions to Stack Overflow using the supported Google Cloud tags. Any issue or feature re

[google-appengine] Re: Is Bitnami Wordpress the best option to managing a Wordpress site in Google Cloud?

2017-07-17 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I recommend you follow the complete guides to hosting your WordPress site on the Google Cloud Platform. There is the guide for hosting it on App Engine Flexible , or on Compute Engine

[google-appengine] Re: Cheapest possible config for app engine flexible instance

2017-07-10 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Thank you Miguel for the clarification. Currently the App Engine Flexible environment requires at least one instance to be active in a version in order for requests to be routed to it.

[google-appengine] Re: Cheapest possible config for app engine flexible instance

2017-07-06 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
1. You can follow the public issue report where engineering is working on reducing the health checks. The reason you still see some after disabling is because there are multiple sources performing health checks

[google-appengine] Re: GQL queries of Datastore via command-line tool like gcloud, bq, other?

2017-07-06 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
There is currently no commandline tool for performing GQL queries against the Datastore as the Datastore is meant to be a No-SQL database (unlike BigQuery which supports SQL and has its own commandline tool for performing SQL queries). Such a tool would simply run the available API Client Libr

[google-appengine] Re: Got this while trying to deploy Google Engine App: /usr/bin/bash: Segmentation fault.

2017-07-05 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Google Groups is for general product discussions only and is not meant for technical support. If you require support with setting up your Course Builder App Engine application, you can post your questions to Stack Exchange

[google-appengine] Re: GQL queries of Datastore via command-line tool like gcloud, bq, other?

2017-07-03 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Since the Google Cloud Datastore is a highly-scalable NoSQL non-relational database, interactions with the Datastore are optimized for direct API calls , and not for

[google-appengine] Re: Lost Image Data from the cloud, how to get it back

2017-06-29 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
To clarify, our backups are simply to protect against unforeseen natural occurrences like power outages etc, where there was no actual 'DELETE' operation sent. In your case you did request to have your data to be deleted. We do Not protect your data against what You choose to do with it. There

[google-appengine] Re: Lost Image Data from the cloud, how to get it back

2017-06-27 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
All further investigations into this will occur in your opened Issue Tracker. NOTE: It is highly recommended that you perform your own backups to protect your data from accidental deletions that occur on your end. Manual delete events requested by you will remove the data from Google servers.

[google-appengine] Re: Lost Image Data from the cloud, how to get it back

2017-06-27 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
I believe this is possible as we perform intensive backups to prevent data loss, but you may need a support package . In the meantime I recommend reporting this in a Public Issue Tracker to have engineeri

[google-appengine] Re: Clonar una VM con un disco de otra

2017-06-26 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
App Engine is a managed service that takes care of instance VM scaling for you. When more traffic hits your application, App Engine will automatic

[google-appengine] Re: What is the default limit on Datastore?

2017-06-21 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
'withDefaults()' is just a new FetchOptions(), and FetchOptions() has no default 'limit' as seen in the code . Even in the JavaDocs it explains that 'getLimit()' returns null

[google-appengine] Re: does google appengine have suggested solution to use letsencrypt certs?

2017-06-19 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
Our engineering team is working on this functionality, and you can follow along with their progress on the Public Issue Tracker . As stated in the tracker , you can currently use the Admin API

Re: [google-appengine] Re: Task rate limits?

2017-06-16 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
You are exactly correct in your interpretation. To clarify 'ETA', this is an option that can be specified when you add a task to a queue. If an ETA is not provided, it will be set to 'now' (the creation time). The ETA designates the absolute earliest time a task should run, forcing workers to

[google-appengine] Re: Task rate limits?

2017-06-15 Thread &#x27;Jordan (Cloud Platform Support)&#x27; via Google App Engine
The limits on Task Queue calls can be found on the Quota page , specifically the 'Queue execution rate' being of importance. Too many tasks being executed on a single queue will inevitably result in underlying contention. This leads to the

<    1   2   3   4   >