The document outlines a syllabus for a 15-week course on cloud computing that will cover core cloud techniques including scalable networks, distributed file systems, databases, parallel computing and security. The course aims to help students understand cloud principles and learn how to use popular cloud technologies rather than re-implementing them. It will also include invited seminars from companies like Baidu, Taobao, EMC and Google.
3. 1 Billion US$
Mobile
Internet
? 5 phases of computing growth, since 1960¡¯s.
1. Main-frame, 2. Minicomputer, 3. PC, 4. Internet, 5. Mobile Internet.
? Every phase, the total amount of user-time, increased 10 times.
The sum of the top 5 companies¡¯ market value increased 10 times every phase.
? With mobile internet, the big amount of user-times, induces big data¡£
The technical challenge is how to deal with big data.
? The solution to the big data challenge, is cloud computing.
3 / 30
4. Intel Pentium4 CPU¡¯s power is
10,000 MIPS
MIPS: Million Instructions Per Second.
? 1965, Moore¡¯s Law:
The number of transistors in IC doubles every 2 years, or even 18 months.
? Still, the power of a single CPU, cannot beat the human brain power.
Solution: use many computers.
? Challenge, to orchestrate many computers working together.
4 / 30
5. Google¡¯s initial cloud
? Cloud computing can be built
with commodity PC servers.
? The most successful cloud so far, was by two graduate students.
Larry Page from University of Maryland, (±±º½ in the US).
Sergey Brin from UIUC, (±±ÓÊ in the US).
5 / 30
6. Sergey Brin & Larry Page Andy Bechtolsheim
? Sergey and Larry wanted to build a search engine.
Need the power of super-computer,
to store every webpage, of every website, globally, every historic version.
And to process the big data, to build search index.
? Raised fund from Andy Bechtolsheim, in 1997.
Andy, CMU alumni, cofounder of Sun Microsystems, very rich.
? But Andy only gave them 100K US$.
The most successful investment, but also the most stupid one.
6 / 30
7. ? Why was Andy not positive on Google?
4 technical difficulties.
The two boys might not have the skillset.
? Scalability:
Big storage space for big data, Googol (10^100) scale!
Big paralleled computing to process them.
Never succeeded in human¡¯s history.
And the data is increased every second.
Andy Bechtolsheim
? Reliability:
Using commodity machines,
One single machine¡¯s failure should not break down the entire system.
? Elasticity:
The load fluctuation on different modules are different,
Schedule the same machines, to work for different modules at different time.
? Security:
Dynamically separate the machines into clusters, mutually inaccessible.
7 / 30
8. ? Sergey and Larry¡¯s answer was,
¡°O, yah, our company¡¯s name is Google!
We deal with big data.¡±
? Google runs the world¡¯s largest cloud,
for 15 years continuously, reliably.
8 / 30
10. ? Scalability: add more machines, without modify the current system.
? Twitter was launched in May 2006.
Dec 2007, Twitter users increased to 66K.
Dec 2008, Twitter users grew to 5 millions.
April 2009, over 100 million.
? Weibo was launched in Sept 2009.
Nov 2009, Weibo users increased to 1 million.
April 2010, over 10 million.
Aug 2010, over 30 million.
Oct 2010, over 50 million.
? China¡¯s population
makes itself the best test-bed
of cloud computing technology.
10 / 30
11. ? Reliability: one single machine¡¯s failure, don¡¯t break down the entire system.
? Oct 29, 2009, T-mall kicked-off 50% discount.
? Half hour after the event started,
Ö§¸¶±¦ slowed down significantly.
Another half hour later, the service shut down.
One hour later, the service recovered.
? During the one hour that service was down,
billion yuan¡¯s business was lost.
11 / 30
12. ? Elasticity: use the same machines, for different business, at different time.
? Does Ö§¸¶±¦ need to keep the huge amount of machines,
only to prepare for the annual sales? NO!
? Superbowl is the most popular sport event in the US.
During the game, Twitter¡¯s load is 40% higher than the usual one.
During the exciting moment,
Twitter¡¯s load is 150% higher than usual .
? But unlike Ö§¸¶±¦£¬
Twitter doesn¡¯t keep a lot of machines.
Twitter borrowed machines
temporarily from a third-party.
? A lesson learned from Twitter,
to dynamically allocate machines,
among different business,
automatically,
in real-time.
12 / 30
13. ? Security: prevent data leak.
? Cloud can contain multiple business.
? Each business runs in its own LAN.
Mutually inaccessible.
13 / 30
15. ? Data flow and control:
push the cloud to run faster.
? Anatomy of Twitter.
? Cache for fast read.
? Queue for async tasks.
? Pub/Sub for messaging.
15 / 30
16. ? Distributed File System:
Scalable file storage.
? Google File System.
(Hadoop HDFS)
? Master and Namespace.
? Chunk vs. File
? Replica vs. Fragmentations
16 / 30
18. ? Distributed Lock:
Guarantee multiple read single write
in distributed system.
? With replica,
each data one lock or plural.
? How to deal with inconsistency?
? How to raise master,
by Paxos protocol?
18 / 30
19. ? No-SQL Database:
Make database more efficient.
? No relational, but only key-value.
? No index, but algorithm.
? No SQL language.
? Easier to add machine.
19 / 30
20. ? Paralleled computing:
Process big data by divide and conquer
? Google¡¯s MapReduce
? Not a panacea, case study.
20 / 30
21. ? Virtual Machine:
Run multiple OSes on single machine.
? Separate modules,
Present bugs and virus from infecting.
? Dynamically allocate resource.
21 / 30
22. ? VLAN:
Regardless physical locations,
multiple machine operate as if in the same network domain.
? VLAN vs. VPN
? Group machines in different regions
as in one LAN.
? Separate machines in the same LAN,
into different groups,
mutually inaccessible.
22 / 30
23. ? Traffic Monitoring and Network Topology.
Construct the entire cloud system.
23 / 30
24. ? Future trends:
smaller, bigger, faster, easier.
? One chip with 48 CPUs.
? Data-center TCP.
? Cloud in RAM.
? Erlang, PigLatin:
languages for cloud computing.
24 / 30
26. 1. 2/28, 18:00pm - 20:00pm, Tuesday,
Introduction to clouding computer? Why cloud, what to do, and how to do?
Homework: Construct a simple 3-tier website.
2. 3/6, 18:00pm - 20:00pm, Tuesday,
Cluster-based scalable network services, SOA.
Homework: Learn to use THRIFT and MemCached to implement a messaging system.
3. 3/13, 18:00pm - 20:00pm, Tuesday,
Scalable file system, Google file system.
Homework: Learn to use SWIFT file system.
4. 3/20, 18:00pm - 20:00pm, Tuesday, ? Syllabus.
Distributed RDBMS database, Google Bigtable.
Homework: Learn to use Hadoop HBase. ? Core cloud techniques.
5. 3/27, 18:00pm - 20:00pm, Tuesday, Understand principles,
Invited seminar: Baidu.
? Learn how to use,
6. 4/3, 18:00pm - 20:00pm, Tuesday,
but not re-implement.
Distributed Locking system, Paxos and Google Chubby.
Homework: Learn to use Hadoop ZooKeeper (that is for advanced courses)
7. 4/10, 18:00pm - 20:00pm, Tuesday,
Distributed NO-SQL Database.
Homework: Learn to use Facebook Cassandra.
8. 4/17, 18:00pm - 20:00pm, Tuesday,
Paralleled computation, Google MapReduce.
Homework: Learn to use Hadoop MapReduce.
26 / 30
27. 9. 4/24, 18:00pm - 20:00pm, Tuesday, ? Syllabus.
Invited Seminar: Taobao.
? Core cloud techniques.
10. 5/1, 18:00pm - 20:00pm, Tuesday,
Virtual Machine for dynamic resource allocation. Understand principles,
Homework: Learn to use KVM.
? Learn how to use,
11. 5/8, 18:00pm - 20:00pm, Tuesday,
Cloud security and VLAN. but not re-implement.
Homework: TBD
(that is for advanced courses)
12. 5/15, 18:00pm - 20:00pm, Tuesday,
Invited seminar: EMC/VMWare.
13. 5/22, 18:00pm - 20:00pm, Tuesday,
Datacenter network topology and traffic management.
Homework: Learn to use Zookeeper.
14. 5/29, 18:00pm - 20:00pm, Tuesday,
Invited seminar: Google.
15. 6/5, 18:00pm - 20:00pm, Tuesday,
Future Trend:
Bigger: Datacenter as a warehouse-scale computer, Datacenter needs an OS.
Smaller: Multicore CPU and GPUs.
Faster: In-Memory Framework, Piccolo an Spark.
Easier: Erlang, PigLatin language.
16. 6/12, 18:00pm - 20:00pm, Tuesday,
Invited seminar: CloudValley.
27 / 30
28. ? Invited seminars.
? Top cloud players will be your teachers.
? Diverse opinions, also deviated from theory,
and why?
? Scheduled for mid-term & final exam periods,
and no homework!
28 / 30
29. ? Homework.
? Homework: 50%
Mid-term exam: 20%
Final exam: 30%
? You will be able to build a cloud!
Not just Hadoop, and beyond.
29 / 30