
Distributed System
文章平均质量分 61
天外有菌
none
展开
-
【Learning】Distributed System - Serialization
Serialization is the process of turning structured objects into a byte stream for transmissionover a network or for writing to persistent storage. Deserialization is the reverseprocess of turning a原创 2013-05-07 20:20:08 · 1146 阅读 · 0 评论 -
【Learning】Thinking in Architecture
1. Communication Approach1.1. Web Service (REST vs SOAP)(JAX-WS vs JAX-RS)http://geeknizer.com/rest-vs-soap-using-http-choosing-the-right-webservice-protocol/http://spf13.com/post/soap-vs-rest原创 2013-05-07 20:15:02 · 961 阅读 · 0 评论 -
【MQ】kafka学习笔记
最近几天把kafka的原创 2014-06-08 22:55:54 · 1502 阅读 · 0 评论 -
Why Eureka is superior to Zookeeper in terms of service discovery
很多服务发现方案采纳zookeeper做为service registry,但是这篇文章提出的观点是,ZK并不适合!理由主要是以下两点:ZK主要的用途是做distributed coordination,所以在CAP的选择上必然是CP(这个有道理,coordination service主要是为了帮助其他别人实现系统一致性的,总不能自身的一致性都无法保证)。然而,对于服务发现来说,更重要的是AP—原创 2015-03-09 16:52:43 · 1306 阅读 · 0 评论 -
Ansible Tryout
#下载镜像,容器运行docker pull ansible/centos7-ansibledocker run -it --rm ansible/centos7-ansible /bin/bash#由于要用到ssh密码登录,需要install sshpasssyum -y install sshpass.x86_64#将需要远程操控的机器IP加入本机的known_hostsssh-keyg原创 2015-03-10 16:31:33 · 1388 阅读 · 0 评论