watcher
https://wiki.openstack.org/wiki/Watcher
Watcher为OS提供资源优化。主要是通过虚拟机迁移来提高整个数据中心的运营效率,降低TCO。
功能特点:
- 通过虚拟机迁移来提高整个数据中心的运营效率和各种优化
- advise mode (manual) or active mode (automatic),两种执行模式
- 通过plugin来扩展
架构图:
https://wiki.openstack.org/wiki/WatcherArchitecture
其中:
- Complex Event Processing (CEP) 对event分析和做出相应的反应,数据会写到Time Series database,
如果该event会影响到优化的结果,输入到Decision Engine。
- Time Series database存储数据中心/集群的各种state, metrics, events, ...,以便Decision Engine随时查询。
- Watcher Actions Applier执行CEP的action,需要与Watcher DB连接来获取ation的描述,并把action的状态写入DB
- REST API 提供Watcher中资源的操作,包括:Audit Templates Audits ActionPlans Actions,下面有说明例子。
- Watcher Database保存以上Watcher中资源。
- Watcher Decision Engine复杂根据优化目标来指定具体的优化措施。
影响最优操作的因素有:
- optimization goals
- deadline
- aggressiveness level
- Watcher Logger 把从Watcher Message/Notification Bus 来的event转送到CEP
如何使用
https://factory.b-com.com/www/watcher/doc/watcher/deploy/user-guide.html
1, 创建 audit template来定义优化目标
$ watcher audit-template-create my_first_audit SERVERS_CONSOLIDATION
2, 创建audit来请求优化
$ watcher audit-create -a <your_audit_template_uuid>
3 等待audit产生action计划,list action:
$ watcher action-plan-list --audit <the_audit_uuid>
4 每个action plan的具体action:
watcher action-list --action-plan <the_action_plan_uuid>
5, 执行action plan:
$ watcher action-plan-start <the_action_plan_uuid>
6, 查看action执行情况:
$ watcher action-list
RESTAPI资源
https://factory.b-com.com/www/watcher/doc/watcher/webapi/v1.html
Audit Templates
{
"created_at": "2015-11-04T10:06:04.328837",
"deleted_at": null,
"description": "Description of my audit template",
"extra": {
"automatic": true
},
"goal": "SERVERS_CONSOLIDATION",
"host_aggregate": ,
"links": ..."name": "My Audit Template",
"updated_at": "2015-11-04T10:06:04.328840",
"uuid": "27e3153e-d5bf-4b7e-b517-fb518e17f34c"
}
Audits
{
"audit_template_name": null,
"audit_template_uuid": "7ae81bb3-dec3-4289-8d6c-da80bd8001ae",
"created_at": "2015-11-04T10:06:04.465252",
"deadline": null,
"deleted_at": null,
"links": ..."state": "PENDING",
"type": "ONESHOT",
"updated_at": "2015-11-04T10:06:04.465255",
"uuid": "27e3153e-d5bf-4b7e-b517-fb518e17f34c"
}
ActionPlans
{
"audit_uuid": "abcee106-14d3-4515-b744-5a26885cf6f6",
"created_at": "2015-11-04T10:06:04.599433",
"deleted_at": null,
"first_action_uuid": "57eaf9ab-5aaa-4f7e-bdf7-9a140ac7a720",
"links": ..."state": "ONGOING",
"updated_at": "2015-11-04T10:06:04.599439",
"uuid": "9ef4d84c-41e8-4418-9220-ce55be0436af"
}
Actions
{
"actions": [
{
"action_plan_uuid": "7ae81bb3-dec3-4289-8d6c-da80bd8001ae",
"links": ..."next_uuid": "7ae81bb3-dec3-4289-8d6c-da80bd8001ae",
"state": "PENDING",
"uuid": "27e3153e-d5bf-4b7e-b517-fb518e17f34c"
}
]
}
watcher的更多相关文章
- node实现watcher的困境
@(node,watcher) watcher,在如今的前端领域已经数见不鲜了.目前流行的gulp流程工具提供了watcher的选项,是我们在开发过程中不需要手动进行触发构建流程,转而根据文件(目录) ...
- ZooKeerper学习之Watcher
ZooKeeper为我们提供了用于监视结点变化的Watcher机方法制: 1.可以注册Watcher的方法:getData().exists().getChildren().我们可以通过查看ZooKe ...
- ZooKeeper个人笔记客户端watcher和AsycCallback回调
每一个Watcher具有如下属性: 1.KeeperState 2.EventType 3.path 4.process(WatchedEvent evnet)回掉方法 Watcher干嘛的?用户监听 ...
- 支持断线重连、永久watcher、递归操作并且能跨平台(.NET Core)的ZooKeeper异步客户端
在公司内部的微服务架构中有使用到了"ZooKeeper",虽然官方有提供了.NET的SDK,但易用性非常的差,且搜遍github.nuget,没有发现一个可以跨平台且易用的组件,所 ...
- zookeeper Watcher API 说明
Watcher 在 ZooKeeper 是一个核心功能,Watcher 可以监控目录节点的数据变化以及子目录的变化,一旦这些状态发生变化,服务器就会通知所有设置在这个目录节点上的 Watcher,从而 ...
- zookeeper中Watcher和Notifications
问题导读:1.zookeeper观察者什么时候调用?2.传统远程轮询服务存在什么问题?3.zk中回调服务的机制是什么?4.zk中watcher为什么不永久注册?5.什么是znode? 在阅读之前首先明 ...
- XSS 自动化检测 Fiddler Watcher & x5s & ccXSScan 初识
一.标题:XSS 自动化检测 Fiddler Watcher & x5s & ccXSScan 初识 automated XSS testing assistant 二.引言 ...
- phpstorm-file watcher
在项目中使用了sass,将scss编译成css的时候,每次都需要compass watch netbeans产品带有file watcher功能 三大类 1,less,scss,sass into c ...
- 轻松学习Ionic (三) 安装sass并在webstorm中为scss添加watcher
1. 安装Ruby 最新为 2.1.5版本,不放心的话安装 Ruby 1.9.3-p551 安装过程中注意勾选上第二项!即将Ruby加入到可执行的环境变量中去. 安装结束后在命令行中 ...
- es watcher
https://www.elastic.co/products/watcher https://www.elastic.co/blog/watcher-beta-goes-public-you-kno ...
随机推荐
- 关于js的当前日期的格式化,和两个日期之间的相减的天数
function getFormatYMD(timesamp){ var date = new Date(timesamp); Y = date.getFullYear() + '-'; M = (d ...
- 巨蟒python全栈开发linux之centos7
1.crm项目部署回顾(小BOSS) crm部署 nginx+uwsgi+django+mysql nginx 前端 uwsgi+django 后端 mysql 数据支撑 crm是一 ...
- 烂代码 git blame
关于烂代码的那些事(上) - Axb的自我修养 http://blog.2baxb.me/archives/1343 关于烂代码的那些事(上) 六月 21, 2015 57 条评论 目录 [显示] 1 ...
- javascript基础(整理自廖雪峰)
不要使用==比较,始终坚持使用===比较false == 0; //返回true. 这种情况, 它会自动转换数据类型再比较false === 0; //返回false. 建议用这种方式 NaN === ...
- 使用GUID作为数据表主键的好处(转)
http://blog.itpub.net/3875/viewspace-789520/ 分类: 数据库开发技术 使用GUID作为数据表主键的好处 [@more@] 使用GUID作为数据表主键的好处 ...
- 外部导入js(javascript)文件方法
<script src="myScript.js"></script>
- ThreadLocal (二):什么时候使用 InheritableThreadLocal
一.ThreadLocal 在父子线程传递的问题 public class InheritableThreadLocalDemo { // 全局变量 // static ThreadLocal< ...
- 016-Hadoop Hive sql语法详解6-job输入输出优化、数据剪裁、减少job数、动态分区
一.job输入输出优化 善用muti-insert.union all,不同表的union all相当于multiple inputs,同一个表的union all,相当map一次输出多条 示例 二. ...
- Nginx和php-fpm部署到不同的服务器
Nginx安装滤过,基本上nginx上的配置很少,只要添加个server就可以了,主要安装php-fpm服务 php7.1.3安装 1.安装依赖的软件包yum -y install gcc gcc-c ...
- 剑指offer 面试22题
面试22题: 题目:链表中倒数第k个节点 题:输入一个链表,输出该链表中倒数第k个结点. 解题思路:为了实现只遍历链表一次就能找到倒数第k个节点,我们可以定义两个指针.让第一个指针先向前走k-1步,第 ...