TODO 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. implement topic-map
  11. 2. replace confdb callers with map callers
  12. 3. quorum debugging and rework
  13. 4. implement topic-xmlconfig
  14. 5. remove external plug-in api
  15. 6. remove logsys.h from external headers
  16. 7. investigate if https://github.com/asalkeld/libqb/issues/1 is still an issue.
  17. 8. allow a cluster name to autogenerate a mcastaddr
  18. 9. ring status change via corosync-notifyd
  19. 10. remove dashes in UDPU notifier and replace with dots once map code is in
  20. 11. put addition/removal of members in totem.interface.member objects
  21. 12. dynamic UDPU needs ring id settings for multiple rings
  22. --------------------------------------
  23. Current priority list for Needle 2.1
  24. --------------------------------------
  25. 1. implement topic-onecrypt
  26. 2. implement add/remove nodes from udpu
  27. 3. logsys glue layer removal
  28. 4. implement topic-zerocopy
  29. 5. implement topic-rdmaud
  30. 6. harden and finish ykd algorithm
  31. We use topic branches in our git repository to develop new disruptive features
  32. that define our future roadmap. This file describes the topic branches
  33. the developers have interest in investigating further.
  34. targets can be: whitetank, needle2.0, needle3.0, or future (3.0+).
  35. Finished can be: percentage or date merged to master. Once in a shipped
  36. version, please remove from the topic list.
  37. ------------------------------------------------------------------------------
  38. topic-map
  39. ------------------------------------------------------------------------------
  40. Main Developer: Honza Friesse
  41. Started: not started
  42. Finished: 20%
  43. target: needle2.0
  44. Currently confdb is very difficult to use. We use this component for
  45. our diagnostic feature set as well as storing our runtime configuration. A
  46. map is a better choice for a data structure here. Current thinking is to
  47. use the trie implementation from libqb to provide the core of this
  48. functionality
  49. ------------------------------------------------------------------------------
  50. topic-xmlconfig
  51. ------------------------------------------------------------------------------
  52. Main Developer: Honza Friesse
  53. Started: not started
  54. Finished: 0%
  55. target: needle2.0
  56. Test suites and users alike would like to configure the software via XML
  57. configuration. Current thinking is we will implement a separate binary which
  58. converts xml to native config format via XSLT. This keeps libxml out of the
  59. corosync process address space. During startup, corosync could either fork
  60. and exec this process, or it could be part of the system startup mechanism.
  61. ------------------------------------------------------------------------------
  62. topic-onecrypt
  63. ------------------------------------------------------------------------------
  64. Main Developer: Honza Friesse
  65. Started: not started
  66. Finished: 0%
  67. target: needle2.1
  68. Description:
  69. Currently encryption code is located in totemudp.c, totemudpu.c, and iba has
  70. no encryption support. This topic merges the encryption code into a new
  71. file such as totemcrp.c and provides a mechanism for totemnet.c to register
  72. encrypt and decrypt functions with totem[udp|iba|udpu] and use them as
  73. requested by the configuration.
  74. ------------------------------------------------------------------------------
  75. topic-netmalloc
  76. ------------------------------------------------------------------------------
  77. Main Developer: Honza Friesse
  78. Started: not started
  79. Finished: 0%
  80. target: needle2.1
  81. Description:
  82. The totemiba.c driver must allocate memory and assign it to a protection domain
  83. in order for an infiniband driver to transmit memory. In the current
  84. implementation, totemsrp.c also allocates these same frames. This results in
  85. an extra memcpy when transmitting with libibverbs technology. Memory copies
  86. are to be avoided. The simple solution is to have each network driver provide
  87. a memory allocation function. When totemsrp wants a free frame, it requests
  88. it from the network driver.
  89. ------------------------------------------------------------------------------
  90. topic-rdmaud
  91. ------------------------------------------------------------------------------
  92. Main Developer: Honza Friesse Steven Dake
  93. Started: not started
  94. Finished: 0%
  95. target: needle2.1
  96. Description:
  97. Currently our RDMA code uses librdmacm to setup connections. We are not
  98. certain this extra library is needed, and may be able to use only ibverbs. If
  99. this is possible, the totem code may be more reliable, especially around
  100. failure conditions.
  101. ------------------------------------------------------------------------------
  102. topic-zerocopy
  103. ------------------------------------------------------------------------------
  104. Main Developer: Honza Friesse
  105. Started: not started
  106. Finished: 0%
  107. target: needle2.1
  108. Description:
  109. Totem has many copies involved in messaging which we would like to investigate
  110. removing. Our goal is to deliver wire speed performance for rdma networks,
  111. and if this can be achieved by our other topic investigations, we may not
  112. further investigate this topic. The basic idea of the topic is to handle
  113. message assembly/fragmentation in libcpg, and have totem be responsible for
  114. sending these pages that are shared via posix shared memory.
  115. ------------------------------------------------------------------------------
  116. other topics not yet defined:
  117. * disallow binding to localhost interfae in redundant ring configuation.
  118. * doxygenize include and lib directories.
  119. * sort out binding to localhost in general
  120. * totem multiring
  121. * load balancing over different speed links in RRP