Which of the following is a PAAS option for hosting web apps on GCP?

App Engine standard or flexible environment

Which of the following is a IAAS option for hosting web apps on GCP?

Compute Engine instance

Which of the following is NOT an advantage of containers over VMs?

Control of hardware aspects such as GPUs

What are preemptible instances?

Compute Engine instances that can be asked to terminate processing at  seconds notice at any time and so are cheaper than other VMs

When can preemptible instances be used?

For processing-only use in fault tolerant applications

If using preemptible instances, what precaution ought to be taken?

Carry out any clean-up or post-processing in a shutdown script that will be invoked before the instance is pre-empted; ensure this script takes less than  seconds to execute

Rank the following storage options from most expensive to cheapest (per GB)

Local SSD > SSD persistent disks > standard persistent > Cloud storage

Rank the following storage options in order of maximum possible storage space per instance

Cloud storage > Persistent (SSD or standard) > Local SSD

Which of the following storage options do NOT offer data redundancy?

In which of the following storage options will data persist only till the instance is stopped or deleted?

Which of the following storage options have limitations on the instance types they can be used with?

Local SSD

  

Which of the following is typically NOT included in a container?

Operating system kernel

VMs tend to be larger than containers accomplishing similar functionality

True

VMs tend to be faster to start up than containers accomplishing similar functionality

False

Containers tend to be more portable to start up than VMs accomplishing similar functionality

True


Which of the following are advantages of Compute Engine over Container Engine?

Direct access to GPUs for applications such as training TensorFlow machine learning models

What is the main difference between standard persistent disks and SSD persistent disks?

Persistent SSD is a lot faster, particularly for random access

Which of the following is a difference between local SSD and persistent SSD?

Local SSD is actually physically attached to the server hosting the VM instance

Rank the following options in scope of access

Cloud storage - global, persistent (SSD and standard ) - zonal, local SSD - instance

How do storage options differ with container engine instances relative to compute engine instances?

Container disks are ephemeral by default; need to use a specific abstraction to make them persistent

Which of the following best depicts components in a container cluster?

Master endpoint - runs Kubernetes, node instances run Kubelets, each Kubelet controls a pod, pods contain individual Docker containers

[GCP] Goolge compute Engine的更多相关文章

  1. 使用Compute Engine工具连接Linux VM

    Links: Connecting to Linux Instances 内容: 要连接Linux VM实例,必须要有一个SSH(Secure Shell)秘钥.无论何时连接一个LinuxVM实例(通 ...

  2. Google Compute Engine VM自动调节

    现象:利用google云搭建VM服务,在搭建实例组有一个"自动调节"功能,可以自动添加/删除MV,当自动添加VM时可能新添加的VM就是一个新的VM,你部署的代码或者环境都没了.现在 ...

  3. google API的.NET库

    Goolge发布了一个新的google API .NET库,是一个Portable Class Library,所以无论是.NET,WinTRy,Windows Phone或者Silverlight都 ...

  4. TensorFlow-谷歌深度学习库 手把手教你如何使用谷歌深度学习云平台

    自己的电脑跑cnn, rnn太慢? 还在为自己电脑没有好的gpu而苦恼? 程序一跑一俩天连睡觉也要开着电脑训练? 如果你有这些烦恼何不考虑考虑使用谷歌的云平台呢?注册之后即送300美元噢-下面我就来介 ...

  5. TPU使用说明

    1 TPU分类和收费标准 1.1 分类和计费说明 地区 抢占式TPU Cloud TPU 美国 $1.35/hour $4.5/hour 欧洲 $1.485/hour $4.95/hour 亚太区地区 ...

  6. Kubernetes体系结构

      Nodes Node Status Addresses Phase Condition Capacity Info Management Node Controller Self-Registra ...

  7. google cloud storage products

    https://cloud.google.com/products/storage/ BigTable Cloud Bigtable 是 Google 面向大数据领域的 NoSQL 数据库服务.它也是 ...

  8. Awesome Go精选的Go框架,库和软件的精选清单.A curated list of awesome Go frameworks, libraries and software

    Awesome Go      financial support to Awesome Go A curated list of awesome Go frameworks, libraries a ...

  9. 三分钟快速上手TensorFlow 2.0 (后续)——扩展和附录

    TensorFlow Hub 模型复用 TF Hub 网站 打开主页 https://tfhub.dev/ ,在左侧有 Text.Image.Video 和 Publishers 等选项,可以选取关注 ...

随机推荐

  1. HTML学习--基础知识

    WEB a)       什么是WEB WEB,是基于Internet上的一种应用程序(网页应用程序),WEB页面,简称WEB页(网页),就是保存在服务器端上的一个具体的页面 b)       WEB ...

  2. git clone一个仓库下的单个文件【记录】

    注意:本方法会下载整个项目,但是,最后出现在本地项目文件下里只有需要的那个文件夹存在.类似先下载,再过滤. 有时候因为需要我们只想gitclone 下仓库的单个或多个文件夹,而不是全部的仓库内容,这样 ...

  3. 【.Net Core】编译时禁止自动生成netcoreapp文件夹

    原文:[.Net Core]编译时禁止自动生成netcoreapp文件夹 每次在编译生成文件时,VS都会自动在<OutputPath>属性指定的路劲后再追加一个用NetCore命名的文件夹 ...

  4. Web应用和Web框架

    一.Web应用 二.Web框架 三.wsgiref模块 一.Web应用 1.什么是Web应用? Web应用程序是一种可以通过Web访问的应用程序,特点是用户很容易访问,只需要有浏览器即可,不需要安装其 ...

  5. 【洛谷 P2051】 [AHOI2009]中国象棋(DP)

    题目链接 首先想到状压dp,但是\(n,m\)高达100,怎么压? 容易发现,每行每列最多两个象棋,否则就直接gg了. 一个巧妙的设置状态的方式是,只需要记录到当前行有多少列是放了1个炮和2个炮. 然 ...

  6. R_基本统计分析_06

    summary()提供基础的统计信息 sapply(x,FUN,options)可以指定统计函数 fivenum()可以返回图基五数 Hmisc 中的describe(data)返回变量,观测的变量, ...

  7. vue中使用iview组件库实现图片的上传

    vue文件如下: iview中Upload 属性详情 https://www.iviewui.com/components/upload js文件 :

  8. vue 全局挂载组件

    <!-- plugin.js --> import someComponent from './components/someComponent' export default { ins ...

  9. go语言 goquery爬虫

      goquery 类似ruby的gem nokogiri goquery的选择器功能很强大,很好用.地址:https://github.com/PuerkitoBio/goquery 这是一个糗百首 ...

  10. Jenkins配置Publish Over SSH讲解说明

    原创 Jenkins配置Publish Over SSH讲解说明 2018-08-22 11:59:30 M.Blog 阅读数 3764更多 分类专栏: Jenkins   版权声明:本文为博主原创文 ...