TODO 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. * support more encryption methods (other than none/aes256) from nss
  28. * implement topic-rdmaud
  29. --------------------------------
  30. Ideas for future releases (3.0+)
  31. --------------------------------
  32. * topic-netmalloc
  33. * doxygenize include and lib directories.
  34. * re-evaluate using libtool to link libraries.
  35. * Support for clang as compiler (depends on libtool)
  36. * reorganize library/headers/code in the tree
  37. * change and simplify build defaults
  38. * libtotem cleanup/rewrite
  39. * Rewrite totem fragmentation layer
  40. * rewrite top level totempg interface
  41. * Split fragmentation layer in totem (ie: totempg talks to totemfrg
  42. talks to totemsrp)
  43. * Add a getopt and setopt feature to top level interface to allow
  44. runtime configuration of the interface
  45. * Improve cpg - opaque data in callbacks (client stores data about
  46. itself, every node can access them), permissions (read only/read
  47. write/ some application may disable listeners) - Probably implemented
  48. as extra user space library on top of normal cpg
  49. * Better statistic - histogram
  50. * totem multiring
  51. * load balancing over different speed links in RRP
  52. We use topic branches in our git repository to develop new disruptive features
  53. that define our future roadmap. This file describes the topic branches
  54. the developers have interest in investigating further.
  55. targets can be: needle2.1, needle2.X, or future (3.0).
  56. Once in a shipped version, please remove from the topic list.
  57. ------------------------------------------------------------------------------
  58. topic-xmlschema
  59. ------------------------------------------------------------------------------
  60. XML configuration for corosync exists, but imput file is not checked against
  61. XML schema. This topic is about implementing preferably RelaxNG schema of
  62. corosync configuration.
  63. ------------------------------------------------------------------------------
  64. topic-onecrypt
  65. ------------------------------------------------------------------------------
  66. Currently encryption code is located in totemudp.c, totemudpu.c, and iba has
  67. no encryption support. This topic merges the encryption code into a new
  68. file such as totemcrp.c and provides a mechanism for totemnet.c to register
  69. encrypt and decrypt functions with totem[udp|iba|udpu] and use them as
  70. requested by the configuration.
  71. ------------------------------------------------------------------------------
  72. topic-netmalloc
  73. ------------------------------------------------------------------------------
  74. The totemiba.c driver must allocate memory and assign it to a protection domain
  75. in order for an infiniband driver to transmit memory. In the current
  76. implementation, totemsrp.c also allocates these same frames. This results in
  77. an extra memcpy when transmitting with libibverbs technology. Memory copies
  78. are to be avoided. The simple solution is to have each network driver provide
  79. a memory allocation function. When totemsrp wants a free frame, it requests
  80. it from the network driver.
  81. ------------------------------------------------------------------------------
  82. topic-rdmaud
  83. ------------------------------------------------------------------------------
  84. Currently our RDMA code uses librdmacm to setup connections. We are not
  85. certain this extra library is needed, and may be able to use only ibverbs. If
  86. this is possible, the totem code may be more reliable, especially around
  87. failure conditions.