-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCcomp.html
More file actions
67 lines (65 loc) · 3.87 KB
/
Ccomp.html
File metadata and controls
67 lines (65 loc) · 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="img1">
<div class="centered"><h1 class="headline">Distributed Embedded Computing</h1></div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="UNIT 1.html">Unit 1</a>
<ul>
<li><a href="broadband.html">Broadband Transmission Facilities</a></li>
<li><a href="OSI.html">Open Interconnection Standards</a></li>
<li><a href="LAN.html">Local Area Network</a></li>
<li><a href="WAN.html">Wide Area Network</a></li>
<li><a href="netmgmt.html">Network management</a></li>
<li><a href="netsec.html">Network security</a></li>
<li><a href="Ccomp.html">Cluster computers</a></li>
</ul>
</li>
<li><a href="#">Unit 2</a></li>
<li><a href="#">Unit 3</a></li>
<li><a href="#">Unit 4</a></li>
</ul>
</nav>
<div class="Brief">
<h1>Cluster Computing</h1>
<p>A computer cluster is a set of loosely or tightly connected computers that work together so that, in many respects, they can be viewed as a single system. Unlike grid computers, computer clusters have each node set to perform the same task, controlled and scheduled by software. <br> The components of a cluster are usually connected to each other through fast local area networks, with each node (computer used as a server) running its own instance of an operating system.</p>
<br>
<img src="images/clusterlayout.jpg" alt="">
<p>
Load-balancing clusters are configurations in which cluster-nodes share computational workload to provide better overall performance. For example, a web server cluster may assign different queries to different nodes, so the overall response time will be optimized.
</p>
<p>Cluster Can be classified into two categories Open and Close Cluster</p>
<p>
Open Cluster: All nodes in Open Cluster are needed IPs, and that are accessible through internet/web, that cause more destruction
</p>
<br>
<p>
Close Cluster: On the other hand Close Cluster are hide behind the gateway node and provide better security.
</p>
<h3>Types of cluster computing</h3>
<ol>
<li>1. Load-balancing clusters: As the name implies, this system is used to distribute workload across multiple computers. That system distributes the processing load as possible across a cluster of computers. </li>
<li>2. High availability (HA) clusters: A high availability clusters (HA cluster) are the bunch of computers that can reliably utilise for redundant operations in the event of nodes failure in Cluster computing. </li>
<li>3. High performance (HP) clusters: This computer networking methodology use supercomputers and Cluster computing to solve advanced computation problems. </li>
</ol>
<br>
<h3>Advantages of Cluster Computers</h3>
<ol>
<li>Cost efficiency: In a Cluster computing Cost efficiency is the ratio of cost to output, that is the connecting group of the computer as computer cluster much cheaper as compared to mainframe computers. </li>
<li>Processing speed: The Processing speed of computer cluster is the same as a mainframe computer.</li>
<li>Expandability: The best benefit of Cluster Computing is that it can be expanded easily by adding the additional desktop workstation to the system. </li>
<li>High availability of resources: If any node fails in a computer cluster, another node within the cluster continue to provide uninterrupted processing. When a mainframe system fails, the entire system fails.
</li>
</ol>
<br>
</div>
</body>
</html>