TODO 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. --------------------------------------------------------
  2. The Corosync Cluster Engine Topic Branches and Backlog
  3. --------------------------------------------------------
  4. ----------------------------
  5. Last Updated: October 2011
  6. ----------------------------
  7. --------------------------------------
  8. Current priority list for Needle 2.0
  9. --------------------------------------
  10. 1. quorum debugging and rework
  11. 2. remove external plug-in api
  12. 3. allow a cluster name to autogenerate a mcastaddr
  13. 4. ring status change via corosync-notifyd
  14. --------------------------------------
  15. Current priority list for Needle 2.1
  16. --------------------------------------
  17. 1. implement topic-onecrypt
  18. 2. implement add/remove nodes from udpu
  19. 3. logsys glue layer removal
  20. 4. implement topic-zerocopy
  21. 5. implement topic-rdmaud
  22. 6. harden and finish ykd algorithm
  23. 7. implement topic-xmlschema
  24. We use topic branches in our git repository to develop new disruptive features
  25. that define our future roadmap. This file describes the topic branches
  26. the developers have interest in investigating further.
  27. targets can be: whitetank, needle2.0, needle3.0, or future (3.0+).
  28. Finished can be: percentage or date merged to master. Once in a shipped
  29. version, please remove from the topic list.
  30. ------------------------------------------------------------------------------
  31. topic-xmlschema
  32. ------------------------------------------------------------------------------
  33. Main Developer: Honza Friesse
  34. Started: not started
  35. Finished: 0%
  36. target: needle2.1
  37. XML configuration for corosync exists, but imput file is not checked against
  38. XML schema. This topic is about implementing preferably RelaxNG schema of
  39. corosync configuration.
  40. ------------------------------------------------------------------------------
  41. topic-onecrypt
  42. ------------------------------------------------------------------------------
  43. Main Developer: Honza Friesse
  44. Started: not started
  45. Finished: 0%
  46. target: needle2.1
  47. Description:
  48. Currently encryption code is located in totemudp.c, totemudpu.c, and iba has
  49. no encryption support. This topic merges the encryption code into a new
  50. file such as totemcrp.c and provides a mechanism for totemnet.c to register
  51. encrypt and decrypt functions with totem[udp|iba|udpu] and use them as
  52. requested by the configuration.
  53. ------------------------------------------------------------------------------
  54. topic-netmalloc
  55. ------------------------------------------------------------------------------
  56. Main Developer: Honza Friesse
  57. Started: not started
  58. Finished: 0%
  59. target: needle2.1
  60. Description:
  61. The totemiba.c driver must allocate memory and assign it to a protection domain
  62. in order for an infiniband driver to transmit memory. In the current
  63. implementation, totemsrp.c also allocates these same frames. This results in
  64. an extra memcpy when transmitting with libibverbs technology. Memory copies
  65. are to be avoided. The simple solution is to have each network driver provide
  66. a memory allocation function. When totemsrp wants a free frame, it requests
  67. it from the network driver.
  68. ------------------------------------------------------------------------------
  69. topic-rdmaud
  70. ------------------------------------------------------------------------------
  71. Main Developer: Honza Friesse Steven Dake
  72. Started: not started
  73. Finished: 0%
  74. target: needle2.1
  75. Description:
  76. Currently our RDMA code uses librdmacm to setup connections. We are not
  77. certain this extra library is needed, and may be able to use only ibverbs. If
  78. this is possible, the totem code may be more reliable, especially around
  79. failure conditions.
  80. ------------------------------------------------------------------------------
  81. topic-zerocopy
  82. ------------------------------------------------------------------------------
  83. Main Developer: Honza Friesse
  84. Started: not started
  85. Finished: 0%
  86. target: needle2.1
  87. Description:
  88. Totem has many copies involved in messaging which we would like to investigate
  89. removing. Our goal is to deliver wire speed performance for rdma networks,
  90. and if this can be achieved by our other topic investigations, we may not
  91. further investigate this topic. The basic idea of the topic is to handle
  92. message assembly/fragmentation in libcpg, and have totem be responsible for
  93. sending these pages that are shared via posix shared memory.
  94. ------------------------------------------------------------------------------
  95. other topics not yet defined:
  96. * disallow binding to localhost interfae in redundant ring configuation.
  97. * doxygenize include and lib directories.
  98. * sort out binding to localhost in general
  99. * totem multiring
  100. * load balancing over different speed links in RRP