TODO 5.6 KB

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