[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 等选项,可以选取关注 ...
随机推荐
- python列表生成式、键盘输入及类型转换、字符串翻转、字母大小写、数组广播、循环语句等基础问题
Python知识总结 1.列表生成式 在实际开发过程中,当需要获取一个连续列表时,可直接使用range(3,10),但是如果获取该列表中每个数据的平方时,通常可以通过for循环来解决这个问题,如下 ...
- pycharm爬取网页数据
1 python环境的配置 1.1 安装python文件包,放到可以找到的位置 1.2 右键计算机->属性->高级环境设置->系统变量->Path->编辑->复制p ...
- 有关kali更新源时出现的GPG数字证书无效提示的解决方法
下载并导入key文件 wget -O - https://archive.kali.org/archive-key.asc |apt-key add 显示ok表示成功导入key,然后再进行之后的其他步 ...
- IdentityServer4实现OAuth2.0四种模式之客户端模式
一,准备内容 IdentityServer4 是Asp.net core的一个中间件,用于添加符合OpenId Connect和OAuth2.0规范的终端到Asp.net Core应用.在这里简单介绍 ...
- DDL和DML 的区别
DDL (Data Definition Language 数据定义语言) create table 创建表 alter table 修改表 drop table 删除表 truncate table ...
- 1 集群状态、增删改查、全量替换、强制创建、设置单个index的分片数副本数
检查集群健康状态,可以看集群颜色.(黄色:primary shard都正常,replica不正常) GET /_cat/health?v 列出集群所有index GET /_cat/indices?v ...
- Java调用WebService方法总结(1)--准备工作
WebService是一种跨编程语言.跨操作系统平台的远程调用技术,已存在很多年了,很多接口也都是通过WebService方式来发布的:本系列文章主要介绍Java调用WebService的各种方法,使 ...
- Python与Golang协程异同
背景知识 这里先给出一些常用的知识点简要说明,以便理解后面的文章内容. 进程的定义: 进程,是计算机中已运行程序的实体.程序本身只是指令.数据及其组织形式的描述,进程才是程序的真正运行实例. 线程的定 ...
- MonoSymbolFileException in CheckLineNumberTable
Mono.CompilerServices.SymbolWriter.MonoSymbolFileException: Exception of type 'Mono.CompilerServices ...
- 【转载】C#中string.IsNullOrEmpty和string.IsNullOrWhiteSpace区别
在C#中判断字段是否为空或者Null的时候,我们一般会使用到string.IsNullOrEmpty和string.IsNullOrWhiteSpace方法,这两个方法在大部分情况下判断的结果是一致的 ...