Google Cloud node.js flexible environment

I deployed the node.js application as a training tool and noticed that I was paid for the project (about $ 1 per day). I know that node.js on Google Cloud uses the Compute Engine to run vm, but they say that the flexible environment has all the advantages of the AppEngine platform, but it seems that instances do not stop automatically and begin to reduce billing if not in use.

I have a java project that has been running in App Engine for many years and have never been exposed to anything, I assume that since the instances automatically terminate when they are not in use. So, my questions;

Is there a way to set up a flexible environment to simulate a standard environment to reduce operating costs?

Am I missing something with a flexible environment?

+4
source share
2 answers

According to the Google App Engine Documentation ,

Instances in the standard environment have access to the daily resource usage limit, which is provided for free, determined by the quota set ...

In a flexible environment, fees are charged based on the Google Compute Engine virtual machines.

According to this article ,

Currently, a flexible environment requires at least one instance to work to serve traffic, and there is no free tier.

, , . .

, appengine g1-small. . app.yaml , , . min_num_instances 1 .

+4

. Google, , .

, 40 , .

- .

+1

Source: https://habr.com/ru/post/1659001/


All Articles