- 在线时间
- 51 小时
- 最后登录
- 2016-8-15
- 威望
- 6
- 金钱
- 7913
- 贡献
- 752
- 注册时间
- 2015-1-29
- 阅读权限
- 200
- 主题
- 747
- 帖子
- 774
- 分享
- 0
- 精华
- 1
- 积分
- 9456
- 相册
- 3
|
华为3com在2012年出品的openstack介绍,全面。
目录:
OpenStack简介
计算组件Nova
对象存储组件Swift
镜像组件Glance
网络组件Quantum
身份验证组件Keystone
Dashboard组件Horizon
部分内容:
OpenStack设计原则
1. Scalability and elasticity are our main goals
(可扩展性和伸缩性是我们的主要目标)
2. Any feature that limits our main goals must be optional
(任何影响到可扩展性和伸缩性的功能都必须是可选的)
3. Everything should be asynchronous,If you can’t do something asynchronously, see #2
(所有的环节必须是异步的,如果不能异步实现,参考第二条设计原理)
4. All required components must be horizontally scalable
(所有的基础组件必须能横向扩展)
5. Always use shared nothing architecture (SN) or sharding,If you can’t Share
nothing/shard, see #2
(始终使用无共享的架构,如果不能实现,参见第二条)
6. Distribute everything,especially logic. Move logic to where state naturally exists.
(所有的都是分布式的,尤其是逻辑。把逻辑放在状态应该存在的地方)
7. Accept eventual consistency and use it where it is appropriate.
(接受最终一致性,并在适合的条件下使用)
8. Test everything
(充足的测试
|
|