[google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-06-13 Thread mr . efrem
If you will know own documentation better you will understand me. But ok, I will explain to you. if to follow on the link: https://cloud.google.com/appengine/docs/standard/nodejs/building-app/deploying-web-service there is phrase: "Node.js modules are installed in the cloud as listed in your pac

[google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-06-13 Thread mr . efrem
If you will know own documentation better you will understand me. But ok, I will explain to you. if to follow on the link: https://cloud.google.com/appengine/docs/standard/nodejs/building-app/deploying-web-service there is phrase: "Node.js modules are installed in the cloud as listed in your pac

Re: [google-appengine] Re: When does app engine serialise the http response?

2018-06-13 Thread 'George (Cloud Platform Support)' via Google App Engine
How do you set your JSESSIONID cookie? How do you use response.setHeader() in your code? A relevant sample of your code is needed, to be able to examine and eventually reproduce the issue. You may send this via private message, to maintain the desired level of privacy. This discussion group is

[google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-06-13 Thread 'George (Cloud Platform Support)' via Google App Engine
What is it meant here by: "This command also run "Appengine" for starting app."? How did you deploy your app? The usual command is gcloud app deploy. You may find more related information in the "Quickstart for Node.js in the App Engine Standard Environment" online document. [1] What is the str

[google-appengine] Question related to MultiRegion Datastore Behavior

2018-06-13 Thread suman datrika
Hi, We have our AppEngine applications in multiple projects, each in a separate region (of US). These apps connect to Datastore to read data. We configured this Datastore as multi-region (by selecting as us-central). With this setup, can we reliably say that a request coming from an AppEngine

Re: [google-appengine] Problem: Can not get TinyWebDB connected to Google Cloud Platform

2018-06-13 Thread Ani Hatzis
Dennis, I'm glad it helped. Later on you might possibly also have technical questions regarding App Engine for which I recommend Stack Overflow using the tag [google-app-engine] . Questions with this tag (and others) are also monitor

Re: [google-appengine] Re: When does app engine set the cookie JSESSIONID

2018-06-13 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine
I recommend that you post your full detailed question to Stack Overflow since Google Groups are reserved for general Google Cloud Platform-end product discussions and not for technical questions.

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

2018-06-13 Thread Ani Hatzis
Since your app is not in production yet, you could test the latency by changing your scaling from auto scaling to basic or manual scaling in app.yaml (see Known Issues ) and compare the latenc

Re: [google-appengine] Problem: Can not get TinyWebDB connected to Google Cloud Platform

2018-06-13 Thread Dennis Pike
Ani ... many thanks. After 2 days of following so many outdated procedures for connecting tinywebDB to Google Cloud Platform, after you showed me the cloud shell, and with a little more searching the web ... I got it all done and working in 20 minutes. My mobile app (developed in App Inventor

Re: [google-appengine] Problem: Can not get TinyWebDB connected to Google Cloud Platform

2018-06-13 Thread Ani Hatzis
Hi Dennis, I haven't looked into App Inventor for a long time. But luckily you don't need a Windows machine today, just a browser. You can use Google Cloud Shell , which is a shell environment for managing your resources hosted on GCP and it runs in your brow

[google-appengine] Problem: Can not get TinyWebDB connected to Google Cloud Platform

2018-06-13 Thread Dennis Pike
Hi New to this forum. If not posted in proper place, someone move it. ... Problem: Can not get TinyWebDB connected to Google Cloud Platform History: Discovered, invested much time into learning App Inventor 2 (http://ai2.appinventor.mit.edu). Learned to use TinyDB. Learned how to replace TinyDB

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

2018-06-13 Thread Yonathan Bibas
May be check all services, version and instance perhaps you can forget any service or version or instance still running on Java 7 Le mardi 12 juin 2018 15:51:29 UTC+3, Uri Lukach a écrit : > > Hi, > > My App supported and running on Java8 > > I have mistakenly pressed on the "Whitelist" Java 7 bu

[google-appengine] Appengine is suddenly stopping to answer the request and doesn't catch them after long time.

2018-06-13 Thread Yonathan Bibas
I dont understand why suddenly i have 2 request which not working suddenly. Any number of call doing on this requests, it doesn't catch the requests even in the logs on the consol. But for other request it does work fine. It look like Appengine retains this two request. and after some time. It

[google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-06-13 Thread mr . efrem
I added to first line to start script. console.log(process.memoryUsage()); Locally: { rss: 21356544, heapTotal: 7159808, heapUsed: 4475904, external: 26358 } Deployed: { rss: 54624256, heapTotal: 7159808, heapUsed: 4317344, external: 26358 } On Wednesday, June 13, 2018

[google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-06-13 Thread mr . efrem
I use "MacOs", but "App Engine" uses "Linux". Maybe therefore is such different? "Node.js" version "v8.11.2" is same as on "App Engine". On Wednesday, June 13, 2018 at 4:52:56 PM UTC+4, mr.e...@gmail.com wrote: > > Locally I've such values: > { > rss: 82931712, > heapTotal: 45592576, > hea

[google-appengine] Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-06-13 Thread mr . efrem
Locally I've such values: { rss: 82931712, heapTotal: 45592576, heapUsed: 39920088, external: 43999 } but deployed version has such values: { rss: 125652992, heapTotal: 52449280, heapUsed: 35882816, external: 60351 } Locally I tested so: 1. Build app (same step before dep