Thanks Diogo. I have read all these links. My question is how do I find out how many cores per hour i'm using, how much memory per hour and how much persistent disk. the app is already running and I can see the dashboards in AppEngine. For example in AppEngine, my memory usage is 800MiB each minute,my instances remain at 2, CPU usage is about 5% (is this CPU usage of combined CPU for two instances?), my write Disk bytes is 50KiB a minute. How do I translate this information into number of cores per hour, persistent disk and memory per hour. thanks
On Thursday, August 29, 2019 at 1:01:29 AM UTC+1, Diogo Almeida wrote: > > First off, note that your app.yaml settings use a deprecated version of Go > (1.9 <https://cloud.google.com/appengine/docs/standard/go/config/appref>). > You can now use versions 1.11 > <https://cloud.google.com/appengine/docs/standard/go111/config/appref> or > 1.12 > <https://cloud.google.com/appengine/docs/standard/go112/config/appref>. > > The documents that go over the version 1.11 and 1.12 provide more details > about what the app.yaml settings mean. However, note that not all of the > app.yaml settings are directly related to parameters that are used in the > calculator. Moreover, there are some parameters in the calculator that are > not set in the app.yaml file: region for instance. > > That said, note that resources are billed on a per-second basis with a 1 > minute minimum usage cost, which means that if you want to estimate the > cost, you need to estimate how much of the resources your app will need to > use and set it up accordingly. The cost for cores and memory per hour as > well as persistent disk is explained here > <https://cloud.google.com/appengine/pricing#flexible-environment-instances> > . > > If you have any other questions about the calculator parameter I suggest > you take a look at the document links provided in calculator (the ? button > of each parameter). > > On Wednesday, August 28, 2019 at 12:31:57 PM UTC-4, Jasmine Sultanah wrote: > >> I am using this calculator >> >> >> https://cloud.google.com/products/calculator/#id=ce96468c-3b00-4dd6-920b-e838ab805265 >> >> I have a version running with these spec >> >> runtime: go >> api_version: go1 >> env: flexible >> threadsafe: true >> handlers: >> - url: .* >> script: _go_app >> secure: always >> redirect_http_response_code: '301' >> automatic_scaling: >> cool_down_period: 120s >> min_num_instances: 2 >> max_num_instances: 20 >> cpu_utilization: >> target_utilization: 0.5 >> network: {} >> >> How do I find out all the parameters to put into the appengine calculator? >> my Location is london, environment is flexible. but where do i find Cores >> per hour, memory per hour and persistent disk? >> >> Thanks >> > -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/c7b3e827-409c-4c44-8d97-d6680c242cf0%40googlegroups.com.
