TODO 5.5 KB

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