What is Windows Clustering
A cluster is a group of independent computer systems, referred to as nodes, working together as a unified computing resource. A cluster provides a single name for clients to use and a single administrative interface, and it guarantees that data is consistent across nodes.
Windows Clustering encompasses two different clustering technologies. These technologies implement the following two types of clusters.
- A network load balancing cluster filters and distributes TCP/IP traffic across a range of nodes, regulating connection load according to administrator-defined port rules.
- A failover cluster provides high availability for services, applications, and other resources through an architecture that maintains a consistent image of the cluster on all nodes and that allows nodes to transfer resource ownership on demand.
The following are the programming interfaces for the Windows Clustering technologies:
- The Network Load Balancing Provider allows developers to create remote administration and configuration tools as well as customized user interfaces for Network Load Balancing clusters.
- The Failover Cluster APIs allow developers to create cluster-aware applications, implement high availability for new types of resources, and create remote administration and configuration tools.
source link: http://msdn.microsoft.com/en-us/library/windows/desktop/aa373130(v=vs.85).aspx
What is Windows Clustering的更多相关文章
- Migrating Oracle on UNIX to SQL Server on Windows
		Appendices Published: April 27, 2005 On This Page Appendix A: SQL Server for Oracle Professionals Ap ... 
- sql是如何执行一个查询的!
		引用自:http://rusanu.com/2013/08/01/understanding-how-sql-server-executes-a-query/ Understanding how SQ ... 
- Understanding how SQL Server executes a query
		https://www.codeproject.com/Articles/630346/Understanding-how-SQL-Server-executes-a-query https://ww ... 
- 集群Cluster介绍
		来源:http://www.ibm.com/developerworks/cn/linux/cluster/lw-clustering.html简单的说,集群(cluster)就是一组计算机,它们作为 ... 
- Windows & RabbitMQ:集群(clustering) & 高可用(HA)
		描述:我们需要配置三台服务器:ServerA, ServerB, ServerC 注意事项: 所有的服务器的Erlang版本,RabbitMQ版本必须一样 服务器名大小写敏感 Step 1:安装Rab ... 
- 在Windows Server 2012 R2中搭建SQL Server 2012故障转移集群
		需要说明的是我们搭建的SQL Server故障转移集群(SQL Server Failover Cluster)是可用性集群,而不是负载均衡集群,其目的是为了保证服务的连续性和可用性,而不是为了提高服 ... 
- Windows RabbitMQ 命令
		启动: 后台运行:rabbitmq-server -detached D:\Program Files\RabbitMQ Server\rabbitmq_server-3.6.6\sbin>ra ... 
- windows Server 2008各版本区别详解
		Windows Server 2008 是专为强化下一代网络.应用程序和 Web 服务的功能而设计,是有史以来最先进的 Windows Server 操作系统.拥有 Windows Server 20 ... 
- Windows下Redis中RedisQFork位置调整
		redis-server.exe redis.windows.conf 使用上面命令启动redis服务的时候报了以下错误信息: The Windows version of Redis allocat ... 
随机推荐
- 用Regex类计算一个字符串出现次数是最好方法【转载】
			我的一个朋友问我,怎么在c#或vb.net中,计算一个字符串中查找另一个字符串中出现的次数,他说在网上打了好多方法,我看了一下,有的是用replace的方法去实现,这种方法不是太好,占资源太大了.其实 ... 
- OpenWRT加入 crontab开机默认运行
			[转载请注明出处:钱国正专栏 http://blog.csdn.net/qianguozheng/article/details/37666829] OpenWRT系统默认已经加入了crond,仅仅是 ... 
- [Javascript] Lodash: Refactoring Simple For Loops (_.find, _.findLast, _.filter)
			This lesson shows how to refactor your old loops into using a simpler and more powerful lodash-style ... 
- [Android]使用platform密钥来给apk文件签名的命令
			1.使用platform密钥对apk进行签名 1.1.进入<Android_Source_Path>/build/target/product/security,找到[platform.p ... 
- Some current MySQL Architecture writings
			Posted on 19/09/2014 by Stewart Smith So, I’ve been looking around for a while (and a few times now) ... 
- day-1
			/* 倒计时就要结束了 在机房的最后一个晚上 恩 就要结束了 上午考试 下午背板 找了几个原题敲了敲 晚上zjk老妈送的饭 撑死死死死了 好吃23333 吃饭完和zjk在机房门口楼梯上聊了一会 恩 以 ... 
- 请编程实现:产生一个int数组,长度为100,并向其中随机插入1-100,并且不能重复(百度了一下,get一种高性能算法,非递归)
			网上找到一种更好的实现方式: (1)把N个数放到容器A(int数组)中. (2)从N个数中随机取出1个数放入容器B(int数组)中. (3)把容器A中最后一个数与随机抽取的数对调 或者 把容器A中最后 ... 
- eclipse 好用的快捷键
			Ctrl+Shift+X 把当前选中的文本全部变味小写 Ctrl+Shift+Y 把当前选中的文本全部变为小写 Alt+Shift+C 修改函数结构(比较实用,有N个函数调用了这个方法,修改一次搞定) ... 
- WebWork2和Spring MVC Framework的比较
			http://daihaixiang.blog.163.com/blog/static/3830134200711411515336/ WebWork2和Spring MVC Framework的比较 ... 
- mysql常见问题
			Q:ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.1.111' (61)A: 找到my.cnf,把#bind-addres ... 
