summaryrefslogtreecommitdiffstats
path: root/docs/platform/delivery.rst
diff options
context:
space:
mode:
authorshentao <shentao@chinamobile.com>2017-11-10 17:41:23 +0800
committershentao <shentao@chinamobile.com>2017-11-10 17:41:32 +0800
commit7db99a4c2fbd85a8cf45a89206e1bffe96226ee0 (patch)
tree5a3775d3411b393f3420cdb80925668583db46c1 /docs/platform/delivery.rst
parent0f76ea2e69e3899ed4f948ea2d0db334c36621d1 (diff)
Update usecase-ui document
Change-Id: Ida0464f2f938d39cad2ed33357a19f7b9334e908 Issue-Id: USECASEUI-50 Signed-off-by: shentao <shentao@chinamobile.com>
Diffstat (limited to 'docs/platform/delivery.rst')
-rw-r--r--docs/platform/delivery.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/platform/delivery.rst b/docs/platform/delivery.rst
new file mode 100644
index 00000000..5b2a0b16
--- /dev/null
+++ b/docs/platform/delivery.rst
@@ -0,0 +1,16 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+
+
+Delivery
+--------
+
+Describe how functions are packaged into run-time components. For some components a block diagram may be useful.
+As mentioned in the architecture chapter, Holmes mainly comprises three modules: the rule management module, the engine management module and the data source adapter. But due to the imperfect implemetation of the DCAE platform, the engine management module and the data source adapter are hosted in a single docker. From this point of view, Holmes in the Amsterdam release actually consists of two main modules.
+
+* Rule Management Docker: The main operations on the rules are performed in this module. The module provides CRUD operation interfaces and is reponsible of the persistence of the rules as well.
+
+* Engine Management Docker: The Drools rules are actually deployed into the Drools engine which is embedded within the engine management module. The analysis tasks are excuted in this module as well. Ideally, the data source adapter is supposed to be running as a standalone docker and communicate with the engine management module via MQ (or any other message bus). But in the Amsterdam release, due to the limitation of the DCAE platform. These two modules are merged into one and interact with each other directy in the manner of Java API calls.
+
+* Common Library: The library hosts some supportive tools for both the rule management module and the engine management module. It is not run separately. Instead, it is introduced into the main modules of Holmes during the compile and package phase.
+
+.. image:: images/holmes-delivery.png