4
0

votequorum_overview.3 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .\"/*
  2. .\" * Copyright (c) 2008, 2012 Red Hat, Inc.
  3. .\" *
  4. .\" * All rights reserved.
  5. .\" *
  6. .\" * Authors: Christine Caulfield <ccaulfie@redhat.com>
  7. .\" * Fabio M. Di Nitto <fdinitto@redhat.com>
  8. .\" *
  9. .\" * This software licensed under BSD license, the text of which follows:
  10. .\" *
  11. .\" * Redistribution and use in source and binary forms, with or without
  12. .\" * modification, are permitted provided that the following conditions are met:
  13. .\" *
  14. .\" * - Redistributions of source code must retain the above copyright notice,
  15. .\" * this list of conditions and the following disclaimer.
  16. .\" * - Redistributions in binary form must reproduce the above copyright notice,
  17. .\" * this list of conditions and the following disclaimer in the documentation
  18. .\" * and/or other materials provided with the distribution.
  19. .\" * - Neither the name of the MontaVista Software, Inc. nor the names of its
  20. .\" * contributors may be used to endorse or promote products derived from this
  21. .\" * software without specific prior written permission.
  22. .\" *
  23. .\" * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. .\" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. .\" * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. .\" * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  27. .\" * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. .\" * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. .\" * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. .\" * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. .\" * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. .\" * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  33. .\" * THE POSSIBILITY OF SUCH DAMAGE.
  34. .\" */
  35. .TH VOTEQUORUM_OVERVIEW 3 2012-01-12 "corosync Man Page" "Corosync Cluster Engine Programmer's Manual"
  36. .SH NAME
  37. votequorum_overview \- Votequorum Library Overview
  38. .SH OVERVIEW
  39. The votequorum library is delivered with the corosync project. It is the external interface to
  40. the vote-based quorum service. This service is optionally loaded into all nodes in a corosync cluster
  41. to avoid split-brain situations. It does this by having a number of votes assigned to each system
  42. in the cluster and ensuring that only when a majority of the votes are present, cluster operations are
  43. allowed to proceed.
  44. .PP
  45. The library provides a mechanism to:
  46. .PP
  47. * Query the quorum status
  48. .PP
  49. * Get a list of nodes known to the quorum service
  50. .PP
  51. * Receive notifications of quorum state changes
  52. .PP
  53. * Change the number of votes assigned to a node
  54. .PP
  55. * Change the number of expected votes for a cluster to be quorate
  56. .PP
  57. * Connect an additional quorum device to allow small clusters to remain quorate during node outages.
  58. .PP
  59. .SH VIRTUAL SYNCHRONY
  60. Votequorum is the only one service where communication with library is allowed during synchronization
  61. phase. This makes it possible for quorum device to react to membership change and decide to vote or
  62. not without timing hazard, because corosync stands in synchronization phase until qdevice on all
  63. nodes votes or timeout expires.
  64. As a side effect, extended virtual synchrony is broken for the votequorum service. This means, that
  65. messages sent during synchronization phase can be delivered sooner then messages sent right
  66. before sync phase began. This applies also for local messages.
  67. .SH BUGS
  68. No known bugs at the time of writing. The authors are from outerspace. Deal with it.
  69. .SH "SEE ALSO"
  70. .BR corosync-quorumtool (8),
  71. .BR votequorum (5),
  72. .BR votequorum_initialize (3),
  73. .BR votequorum_finalize (3),
  74. .BR votequorum_getinfo (3),
  75. .BR votequorum_trackstart (3),
  76. .BR votequorum_trackstop (3),
  77. .BR votequorum_fd_get (3),
  78. .BR votequorum_dispatch (3),
  79. .BR votequorum_context_set (3),
  80. .BR votequorum_context_get (3),
  81. .BR votequorum_setexpected (3),
  82. .BR votequorum_setvotes (3)
  83. .PP