TODO 4.6 KB

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