[google-appengine] Is App Engine Flexible Environment considered serverless or it's running 24/7?

2018-06-24 Thread wobeng
Hi Is App Engine Flexible Environment considered serverless or it's running 24/7? -- 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] Re: Webstorm debug App Engine Flexible NodeJs app.

2018-06-24 Thread Sudhanshu Gaur
Just tell me one thing, where I am specifying the path of package.json file in IntellIJ ?? If I am specifying path of package.json in *deployment archieve *then as *deployment* asks for *File System JAR/WAR FIle*, then how can it take path of package.json from there because as my NodeJs app

[google-appengine] Re: Webstorm debug App Engine Flexible NodeJs app.

2018-06-24 Thread Sudhanshu Gaur
I am now not setting "engine" parameter but still getting same error. Please help me to resolve this issue. On Sunday, June 24, 2018 at 11:44:29 PM UTC+5:30, George (Cloud Platform Support) wrote: > > The Node.js runtime now defaults to the latest Node.js v8 LTS release >

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

2018-06-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Aleksander, In fact there is no estimated time to resolution, but I am sure Developers will address the issue as soon as possible, taken into account their priorities. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Re: scheduling job using cron.xml in google app engine

2018-06-24 Thread Vitaly Bogomolov
Hi. You can't implement this task directly, according cron rules. But you can use some tricks with AppEngine abilities. For example. Add cron rule, that will be called at 09:00 in weekdays In the handler of this rule put 30 tasks to appengine taskqueue with appropriate delay. You can use one

[google-appengine] Re: zigzag merge

2018-06-24 Thread 'George (Cloud Platform Support)' via Google App Engine
When you are sure that old indexes are no longer needed, you can delete them from Cloud Datastore using the datastore cleanup-indexes command. This command deletes all indexes for the production Cloud Datastore instance

[google-appengine] Re: scheduling job using cron.xml in google app engine

2018-06-24 Thread Giuliano Ribeiro
Hi, have you read more about this here: https://cloud.google.com/appengine/docs/standard/java/config/cronref#custom I haven't found a example like you want and I guess it is not possible. Take a look on the documentation page. On Sunday, June 24, 2018 at 9:05:39 AM UTC+1, abhishek grover

[google-appengine] Re: Servidor hakeado

2018-06-24 Thread Giuliano Ribeiro
For all of you guys that are not understanding, this thread is in Brazilian portuguese and the problem is not related to App Engine. On Sunday, June 24, 2018 at 7:14:43 PM UTC+1, Giuliano Ribeiro wrote: > > Olá Raphaela, > então, realmente este não seria o local adequado, pois aqui é o Forum

[google-appengine] Re: Servidor hakeado

2018-06-24 Thread Giuliano Ribeiro
Olá Raphaela, então, realmente este não seria o local adequado, pois aqui é o Forum do App Engine, plataforma como serviço do Google Cloud. Mas já te orientando, isso que aconteceu no seu servidor é uma prática chamada ransomware. Infelizmente se tu não tiver backup feito por ti mesmo, o

[google-appengine] Re: Webstorm debug App Engine Flexible NodeJs app.

2018-06-24 Thread 'George (Cloud Platform Support)' via Google App Engine
The Node.js runtime now defaults to the latest Node.js v8 LTS release . What happens if you simply specify this version? Alternatively, it may be worth trying to specify >=4.x, if you want to get the current

[google-appengine] Re: Sanal sunucu ip adresi

2018-06-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ercan, The official language of this Group is English. You should attempt to formulate questions in this language, to facilitate general understanding and attract replies. You seem to face difficulties in connecting to your deployed instances. Related help may come from the

[google-appengine] Re: Servidor hakeado

2018-06-24 Thread raphaelanovaescosta
Ola Giuliano estou meio perdida , eu tenho um servidor na google cloud , e recentemente meu servidor foi invadido , não sei se estou postando no lugar certo mais preciso de ajuda caso eu esteja no lugar errado por favor me oriente onde posso conseguir ajuda. eu tenho um servidor windows server

[google-appengine] Re: Servidor hakeado

2018-06-24 Thread raphaelanovaescosta
Ola Giuliano estou meio perdida , eu tenho um servidor na google cloud , e recentemente meu servidor foi invadido , não sei se estou postando no lugar certo mais preciso de ajuda caso eu esteja no lugar errado por favor me oriente onde posso conseguir ajuda. eu tenho um servidor windows server

[google-appengine] Sanal sunucu ip adresi

2018-06-24 Thread Ercan Akçay
merhaba açtıgım sanal sunucuda server kuruyorum ama local da çalışıyor sadece sunucunun ip adresini verince çalışmıyor online bir server kurucam ama olmuyor yardımcı olabilir misiniz -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Memcache byte array keys in Cloud Console

2018-06-24 Thread Joshua Fox
How can we enter byte-array keys in Cloud Console? The GUI supports something called Java Byte. If that is single-byte only, it seems of little value. But if byte-array keys are supported, I am not sure of the format for literals. [image: image.png] -- You received this message because you

[google-appengine] Re: Webstorm debug App Engine Flexible NodeJs app.

2018-06-24 Thread Sudhanshu Gaur
I have already specified that in my package.json file "engines": { "node": ">=4.3.2" } On Sunday, June 24, 2018 at 4:08:02 AM UTC+5:30, George (Cloud Platform Support) wrote: > > The error message points to lacking configuration of the node.js version > in the package.json file. You need to

[google-appengine] scheduling job using cron.xml in google app engine

2018-06-24 Thread abhishek grover
Hi All, Can anyone help me on how to schedule job using cron.xml. My requirement is to schedule job every 2 min from 09:00 to 10:00 in weekdays. As per the google docs i have come up with below schedule format. But this format will schedule job for weekend also. So can anyone tell me how to add