[GCP] Goolge compute Engine
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的更多相关文章
- 使用Compute Engine工具连接Linux VM
Links: Connecting to Linux Instances 内容: 要连接Linux VM实例,必须要有一个SSH(Secure Shell)秘钥.无论何时连接一个LinuxVM实例(通 ...
- Google Compute Engine VM自动调节
现象:利用google云搭建VM服务,在搭建实例组有一个"自动调节"功能,可以自动添加/删除MV,当自动添加VM时可能新添加的VM就是一个新的VM,你部署的代码或者环境都没了.现在 ...
- google API的.NET库
Goolge发布了一个新的google API .NET库,是一个Portable Class Library,所以无论是.NET,WinTRy,Windows Phone或者Silverlight都 ...
- TensorFlow-谷歌深度学习库 手把手教你如何使用谷歌深度学习云平台
自己的电脑跑cnn, rnn太慢? 还在为自己电脑没有好的gpu而苦恼? 程序一跑一俩天连睡觉也要开着电脑训练? 如果你有这些烦恼何不考虑考虑使用谷歌的云平台呢?注册之后即送300美元噢-下面我就来介 ...
- TPU使用说明
1 TPU分类和收费标准 1.1 分类和计费说明 地区 抢占式TPU Cloud TPU 美国 $1.35/hour $4.5/hour 欧洲 $1.485/hour $4.95/hour 亚太区地区 ...
- Kubernetes体系结构
Nodes Node Status Addresses Phase Condition Capacity Info Management Node Controller Self-Registra ...
- google cloud storage products
https://cloud.google.com/products/storage/ BigTable Cloud Bigtable 是 Google 面向大数据领域的 NoSQL 数据库服务.它也是 ...
- 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 ...
- 三分钟快速上手TensorFlow 2.0 (后续)——扩展和附录
TensorFlow Hub 模型复用 TF Hub 网站 打开主页 https://tfhub.dev/ ,在左侧有 Text.Image.Video 和 Publishers 等选项,可以选取关注 ...
随机推荐
- Java开发笔记(一百零九)XML报文的定义和解析
前面介绍了JSON格式的报文解析,虽然json串短小精悍,也能有效表达层次结构,但是每个元素只能找到对应的元素值,不能体现更丰富的样式特征.比如某个元素除了要传输它的字符串文本,还想传输该文本的类型. ...
- String和Irreducible Polynomial(2019牛客暑期多校训练营(第七场))
示例: 输入: 4000010010111011110 输出: 00001001 0111 01111 0 题意:给出一个只含有0和1的字符串,找出一种分割方法,使得每个分割出的字符串都是在该字符串自 ...
- scrapy爬取相似页面及回调爬取问题(以慕课网为例)
以爬取慕课网数据为例 慕课网的数据很简单,就是通过get方式获取的 连接地址为https://www.imooc.com/course/list?page=2 根据page参数来分页
- [高清] Java编程思想第四版完整中文高清版
------ 郑重声明 --------- 资源来自网络,纯粹共享交流, 如果喜欢,请您务必支持正版!! --------------------------------------------- 下 ...
- Java内存模型——方法区
方法区(Method Area) ① 对每个加载的类型,JVM必须在方法区中存储以下类信息: 1) 这个类型的完整有效名(类型信息) 类型名称在Java类文件和JVM中都以完整 ...
- WPF 的 Application.Current.Dispatcher 中,为什么 Current 可能为 null
原文:WPF 的 Application.Current.Dispatcher 中,为什么 Current 可能为 null 在 WPF 程序中,可能会存在 Application.Current.D ...
- .net core使用ocelot---第八篇 Consul
简介 .net core使用ocelot---第一篇 简单使用 .net core使用ocelot---第二篇 身份验证使用 .net core使用ocelot---第三篇 日志记录 .net ...
- 使用springboot实现一个简单的restful crud——01、项目简介以及创建项目
前言 之前一段时间学习了一些springboot的一些基础使用方法和敲了一些例子,是时候写一个简单的crud来将之前学的东西做一个整合了 -- 一个员工列表的增删改查. 使用 restful api ...
- Vue项目中遇到的问题汇总
一.打包后的打开index.html页面空白的几种情况: 引入的css.js路径报错,此时解决方法:把vue.config.js中的增加publicPath: ‘./’ 或者把原来的baseUrl改为 ...
- Node学习之(第三章:art-template模板引擎的使用)
前言 大家之前都有使用过浏览器中js模板引擎,其实在Node.js中也可以使用模板引擎,最早使用模板引擎的概念是在服务端新起的. art-template art-template是一款高性能的Jav ...