Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Linux Virtual Server
#1



[attachment=7831]

Virtual server is a highly scalable and highly available server built [3] on a cluster of real servers. The architecture of server cluster is fully transparent to end users, and the users interact with the cluster system as if it were only a single high-performance virtual server.
The real servers and the load balancers may be interconnected by either high-speed LAN or by geographically dispersed WAN. The load balancers can dispatch requests to the different servers and make parallel services of the cluster to appear as a virtual service on a single IP address, and request dispatching can use IP load balancing technologies or application-level load balancing technologies[3]. Scalability of the system is achieved by transparently adding or removing nodes in the cluster. High availability is provided by detecting node or daemon failures and reconfiguring the system appropriately.

The basic goal of the Linux Virtual Server Project is to:
Build a high-performance and highly available server for Linux using clustering technology, which provides good scalability, reliability and serviceability.
The LVS cluster system is also known as load balancing server cluster.

NEED OF LINUX VIRTUAL SERVER
With the explosive growth of the Internet and its increasingly important role in our lives, the traffic on the Internet is increasing dramatically, which has been growing at over 100% annual rate. The workload on the servers is increasing rapidly so that servers will be easily overloaded for a short time, especially for a popular web site. To overcome the overloading problem of the servers, there are two solutions. One is the single server solution, i.e. to upgrade the server to a higher performance server, but it will soon be overloaded when requests increases so that we have to upgrade it again, the upgrading process is complex and the cost is high. The other is the multiple server solution, i.e. to build a scalable network service system on a cluster of servers. When load increases, we can simply add a new server or more into cluster to meet the increasing requests, and commodity server is of highest performance/cost ratio. Therefore, it is more scalable and more cost-effective to build server cluster system for network services.

METHODS TO CONSTRUCT CLUSTER OF SERVICES
There are basically two methods of constructing the cluster of services and they are:
DNS based Load Balancing Cluster
DISPATCHER based Load Balancing Cluster
DNS BASED LOAD BALANCING CLUSTER
DNS load balancing is probably the simplest method to build network service cluster. It uses Domain Name System to distribute requests to different servers through resolving the domain
Name to different IP addresses of servers. When a DNS request comes to the DNS server to resolve the domain name, the DNS server gives out one of server IP addresses based on scheduling strategies, such as in round-robin manner, then subsequent requests from clients using the same local caching name server are sent to the same server in the specified time-to-live (TTL) of name resolving.
However, due to the caching nature of clients and hierarchical DNS system, it easily leads to dynamic load imbalance among the servers, thus it is not easy for a server to handle its peak load. The TTL value of a name mapping can't be well chosen at the DNS server, with small values DNS traffic is high and DNS server will be a bottleneck, and with high values the dynamic load imbalance will get even worse. Even the TTL value is set with zero, the scheduling granularity is per host, different users' access pattern may lead to dynamic load imbalance, because some people may pull lots of pages from the site, and others may just surf a few pages and go away. Moreover, it is not so reliable, when a server node fails, the clients who map the name to the IP address will find the server is down, and the problem still exists even if they press "reload" or "refresh" button in their browsers.

DISPATCHER BASED LOAD BALANCING CLUSTER
Dispatcher, also known as load balancer, can be used to distribute load among servers in a cluster, so that the parallel services of servers can appear as a virtual service on a single IP

address, and end users interact as if it were a single server without knowing all servers in clusters. Compared to DNS based load balancing, dispatcher can schedule requests at fine granularity, such as per connection, for better load balancing among servers. Failure can be masked when one server or more fail. Server management is becoming easy, and administrator can take a server or more in and out of service at any time, which won't interrupt services to end users.
Load balancing can be done in two levels, application-level and IP-level. For example, Reverse-proxy and pWEB is an application-level load balancing method to build a scalable web server. They forward the HTTP request to the different web servers in the cluster, get back the result, and then return it to the clients. Since the overhead of dealing the HTTP requests and replies in the application-level is high, I believe the application-level load balancer will be a new bottleneck when the number of server nodes increase to 5 or more, which depends on the throughput of each server.


Reply

#2
[attachment=233]
Abstract
Linux Virtual Server is a high-performance and highly scalable server built on a cluster of real servers. The architecture of the cluster is transparent to end-users. End users only see a single virtual server. The front-end before the real servers is a load balancer, which schedules requests to the different servers and make parallel services of the cluster to appear as a virtual service on a single IP address. Linux Virtual Server is added as a patch to the Linux Kernel. Modifications and additions are made to the existing kernek source to bring about Virtual Server functionalities. Mainly, the IP masquerading functionality is being modified to implement the Virtual Server support. The LVS handles connections from clients and passes them onto the real servers (so-called Layer 4 switching) and can virtualized almost any TCP or UDP service. It uses NAT (Network Address Translation) to achieve IP level load balancing. Round robin scheduling algorithm is used. Transparently adding or removing a node in the cluster achieves scalability.
Reply

#3
you can refer these page details of "Linux Virtual Server"link bellow
please read http://seminarsprojects.net/Thread-linux-virtual-server for getting report and more information of linux virtual server
and read http://seminarsprojects.net/Thread-virtu...ull-report its a related topic virtual computing

http://seminarsprojects.net/Thread-linux...6#pid51576
Reply

#4

please read http://seminarsprojects.net/Thread-linux-virtual-server for getting report and more information of linux virtual server
and read http://seminarsprojects.net/Thread-virtu...ull-report its a related topic virtual computing
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Powered By MyBB, © 2002-2024 iAndrew & Melroy van den Berg.