Re: [google-appengine] Re: Why App engine increase usage memory instantly?

2018-10-29 Thread Ky Nguyen
Hi Amit, Thanks for your support, I had fixed my api endpoint to avoid memory leak. But look like it is not a root cause. I deploy new application with the same config and let it run a few day with no traffic, but memory still increase. I'm confusing if the problem come from cloud sql connection.

[google-appengine] Using dispatch.yaml? Help us testing by using `gcloud beta app deploy`

2018-10-29 Thread 'Steren Giannini' via Google App Engine
Dear App Engine users, We are rolling out a refactoring of the way *dispatch.yaml* files are deployed. Before we roll it out to everybody, we would like to ensure it works as expected for you. If you use dispatch.yaml, please update your Cloud SDK and try deploying with *gcloud beta app deploy

[google-appengine] Re: GAE Standard PHP72 - syslog() not logging to request_log anymore. What to do?

2018-10-29 Thread 'Amit (Google Cloud Support)' via Google App Engine
Hello Christian To visualize your logs,you can export your log using this documentation so that they can be used with available external tools. You can also export it to BigQuery if you want to analyze the logs from the Google Cloud Platform. T

[google-appengine] Re: Clarifying App Engine, custom VPCs, and VPNs

2018-10-29 Thread 'David (Google Cloud Support)' via Google App Engine
Hello Mark, Yes that is correct, as this document states: “The following types of endpoints/resources are NOT propagated to directly peered networks: - Static routes - VPNs “ You would need to setup Cloud VPN connections to eve

Re: [google-appengine] Re: Error 302 running cron and login:admin in app.yaml in google app engine

2018-10-29 Thread Pedro Perez Garcia
(Note: I work on standard enviroment). I tested something more simple and I had the same error: --- app.yaml runtime: python27 api_version: 1 threadsafe: true handlers: - url: /hellocron script: main.app login: admin --- cron.yaml cron: - description: "hellocron" url: /he

[google-appengine] Re: Node 8 Standard (Express) not gzipping content

2018-10-29 Thread Jason Collins
Today, we are not passing through the `Accept-Encoding` header, so it is not possible for your middleware to decide that it should compress. We will roll out a fix for this in the new few weeks. On Monday, 29 October 2018 06:12:50 UTC-7, Steve Geer wrote: > > I have run into an issue where app

[google-appengine] Re: Error 302 running cron and login:admin in app.yaml in google app engine

2018-10-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Pedro, You have employed a URL that differs somewhat of what is expected in the cron.yaml configuration file: url: /processdate?from=2016-03-01&until=2016-03-31. This URL indicates a time interval, when the URL in your app is expected instead, to which you want the Cron service to send

[google-appengine] Re: is it possible listen to a pub/sub topic without a subscription?

2018-10-29 Thread 'Julie (cloud platform support)' via Google App Engine
According to this Pub/Sub FAQ question trying to publish a topic without subscriptions will result in the messages being dropped, however the publish operation should succeed which you can use to c

[google-appengine] Error 302 running cron and login:admin in app.yaml in google app engine

2018-10-29 Thread Pedro Perez Garcia
I added login: Admin to app.yaml like documentation (https://cloud.google.com/appengine/docs/standard/python/config/appref#example) is described, but I still have a 302 erro when runing a task with cron in google app engine. I have this app.yaml runtime: python27 api_version: 1 threadsafe

Re: [google-appengine] Re: Using subdomains with HTTPS

2018-10-29 Thread 'Stewart Reichling' via Google App Engine
Thanks for posting the link. Please shout if these instructions don't work for you. Here's the python3 link (instructions should be the same as for python2): https://cloud.google.com/appengine/docs/standard/python3/mapping-custom-domains On Mon, Oct 29, 2018 at 3:37 AM Attila-Mihaly Balazs wrote:

[google-appengine] is it possible listen to a pub/sub topic without a subscription?

2018-10-29 Thread Nick Pomfret
I'm wondering if it's possible to broadcast messages on a topic and have a process listen to them but without a subscription? The reason is that I don't care about losing messages if say my application was switched off. And when it's switched back on I only want to receive message published si

[google-appengine] Re: Google Cloud disk snapshot default region?

2018-10-29 Thread 'Olu' via Google App Engine
Firstly, this documentation explains that "Compute Engine stores multiple copies of each snapshot redundantly across multiple locations with automatic checksums to ensure the integrity of your data". This suggests that while it is no

[google-appengine] Re: zip create on google cloud storage using laravel php

2018-10-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Your posting is quite succinct and to the point, but does not entirely define your request. Some more information is needed to put together a complete feature request. What would you like to see implemented? In what concerns use of Laravel for Google Cloud Storage access, you may have a look a

[google-appengine] zip create on google cloud storage using laravel php

2018-10-29 Thread iCoderz Developers
zip create on google cloud storage using laravel php -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post

[google-appengine] Node 8 Standard (Express) not gzipping content

2018-10-29 Thread Steve Geer
I have run into an issue where app engine standard is not gzipping responses. It's a basic express universal application based on the docs at angular.io , with the addition of the compression middleware recommended by the express documentation. It's a very s

[google-appengine] "cd" was removed in GAE Standard Node.js and broke our app

2018-10-29 Thread david . spiess
At 2018-10-27 04:17:46.164 MESZ our GAE Standard App restarted. After the restart CD was not available anymore and our app failed to start since we rely on it when starting the server. *package.json* { ..., "scripts": { "start": "cd api && node -r ./ts-paths.js dist/api/src/server.js"

[google-appengine] Re: Using subdomains with HTTPS

2018-10-29 Thread Attila-Mihaly Balazs
You most certainly can use AppEngine to serve up any domain/subdomain (including auto generated / renewing SSL certificates for them!) - as long as you control the DNS and can set it up properly. This should get you started: https://cloud.google.com/appengine/docs/standard/python/mapping-custom