4
0

TODO 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. --------------------------------------------------------
  2. The Corosync Cluster Engine Topic Branches and Backlog
  3. --------------------------------------------------------
  4. ----------------------------
  5. Last Updated: May 2012
  6. ----------------------------
  7. --------------------------------------
  8. Current priority list for Needle 2.1
  9. --------------------------------------
  10. * disallow binding to localhost (Honza)
  11. * don't rely on mcast loop (Honza)
  12. * Add support for LOG_TRACE and log received messages in this level (Honza)
  13. * Proper support for DNS (always return one address even if function
  14. is called multiple times) (Honza)
  15. * porting of qdisk to votequorum and eventually finalize qdevice API
  16. in votequorum. (Fabio)
  17. * Cleaner shutdown process -> free memory (Fabio)
  18. --------------------------------------
  19. Current priority list for Needle 2.X
  20. --------------------------------------
  21. * logsys glue layer removal
  22. * harden and finish ykd algorithm
  23. * implement topic-xmlschema
  24. * Modify totemsrp to allow dynamic definitions of the ring counts
  25. to allow a larger number of redundant rings then 2.
  26. * Investigate always-on flight recorder
  27. * implement topic-rdmaud
  28. --------------------------------
  29. Ideas for future releases (3.0+)
  30. --------------------------------
  31. * topic-netmalloc
  32. * doxygenize include and lib directories.
  33. * re-evaluate using libtool to link libraries.
  34. * Support for clang as compiler (depends on libtool)
  35. * reorganize library/headers/code in the tree
  36. * change and simplify build defaults
  37. * libtotem cleanup/rewrite
  38. * Rewrite totem fragmentation layer
  39. * rewrite top level totempg interface
  40. * Split fragmentation layer in totem (ie: totempg talks to totemfrg
  41. talks to totemsrp)
  42. * Add a getopt and setopt feature to top level interface to allow
  43. runtime configuration of the interface
  44. * Improve cpg - opaque data in callbacks (client stores data about
  45. itself, every node can access them), permissions (read only/read
  46. write/ some application may disable listeners) - Probably implemented
  47. as extra user space library on top of normal cpg
  48. * Better statistic - histogram
  49. * totem multiring
  50. * load balancing over different speed links in RRP
  51. We use topic branches in our git repository to develop new disruptive features
  52. that define our future roadmap. This file describes the topic branches
  53. the developers have interest in investigating further.
  54. targets can be: needle2.1, needle2.X, or future (3.0).
  55. Once in a shipped version, please remove from the topic list.
  56. ------------------------------------------------------------------------------
  57. topic-xmlschema
  58. ------------------------------------------------------------------------------
  59. XML configuration for corosync exists, but imput file is not checked against
  60. XML schema. This topic is about implementing preferably RelaxNG schema of
  61. corosync configuration.
  62. ------------------------------------------------------------------------------
  63. topic-onecrypt
  64. ------------------------------------------------------------------------------
  65. Currently encryption code is located in totemudp.c, totemudpu.c, and iba has
  66. no encryption support. This topic merges the encryption code into a new
  67. file such as totemcrp.c and provides a mechanism for totemnet.c to register
  68. encrypt and decrypt functions with totem[udp|iba|udpu] and use them as
  69. requested by the configuration.
  70. ------------------------------------------------------------------------------
  71. topic-netmalloc
  72. ------------------------------------------------------------------------------
  73. The totemiba.c driver must allocate memory and assign it to a protection domain
  74. in order for an infiniband driver to transmit memory. In the current
  75. implementation, totemsrp.c also allocates these same frames. This results in
  76. an extra memcpy when transmitting with libibverbs technology. Memory copies
  77. are to be avoided. The simple solution is to have each network driver provide
  78. a memory allocation function. When totemsrp wants a free frame, it requests
  79. it from the network driver.
  80. ------------------------------------------------------------------------------
  81. topic-rdmaud
  82. ------------------------------------------------------------------------------
  83. Currently our RDMA code uses librdmacm to setup connections. We are not
  84. certain this extra library is needed, and may be able to use only ibverbs. If
  85. this is possible, the totem code may be more reliable, especially around
  86. failure conditions.