No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #-*- coding: utf-8 -*-
  2. __plugin_type__ = 'datasource'
  3. __plugin_name__ = 'mongodb_datasource'
  4. __version__ = '0.0.1'
  5. __plugin_type__ = 'datasource'
  6. __loader__ = "main.py"
  7. __confspec__ = "confspec.py"
  8. __author__ = "Lodel2 dev team"
  9. __fullname__ = "MongoDB plugin"
  10. ## @brief Activates the plugin
  11. #
  12. # @note This function can contain specific actions (like checks, etc ...) in
  13. # order to activate the plugin.
  14. #
  15. # @return bool|str : True if all the checks are OK, an error message if not
  16. def _activate():
  17. from lodel import buildconf # NOTE : this one do not have to pass through the context
  18. return buildconf.PYMONGO
  19. #
  20. # Doxygen comments
  21. #
  22. ## @defgroup plugin_mongodb_datasource MongoDB datasource plugin
  23. # @brief Doc about mongodb datasource
  24. ## @page plugin_mongodb_backref_complexity Reflexion on back reference complexity
  25. # @ingroup plugin_mongodb_bref_op
  26. #
  27. # There is a huge performance issue in the way we implemented references and
  28. # back references for mongodb datasource :
  29. #
  30. # For each write action (update, delete or insert) we HAVE TO run a select
  31. # on all concerned LeObject instances. Those methods' headers look like
  32. # <pre>def write_action(target_cls, filters, [datas])</pre>.
  33. #
  34. # We have no idea if all the modified objects are of the target class (they
  35. # can be of any target's child classes). So that means we have no idea of the
  36. # @ref base_classes.Reference "References" that will be modified by the action.
  37. #
  38. # Another problem is that when we run an update or a delete we have no idea
  39. # of the values that will be updated or deleted (we do not have the concerned
  40. # instances datas). As a result we cannot replace or delete the concerned
  41. # back references.
  42. #
  43. # In term of complexity the number of DB query looks like :
  44. # <pre>
  45. # With n the number of instances to modify :
  46. # queryO(n) ~= 2n ( n * select + n * update )
  47. # </pre>
  48. #
  49. # But it can go really bad, really fast if we take in consideration that
  50. # query's can be done on mixed classes or abstract classes. With :
  51. # - n : the number of LeObect child classes represented by the abstract class
  52. # - m : the number of LeObject child classes for each n
  53. # - o : the number of concerned back_reference classes for each m
  54. #
  55. # <pre>queryO(n,m,o) ~= n + (n*m) + (n*m*o) => n + n*m select and n*m*o updates</pre>
  56. #
  57. # All of this is really sad especially as the update and the delete will be
  58. # run on LeObject instances....
  59. #