summaryrefslogtreecommitdiffstats
path: root/docs/Installation
diff options
context:
space:
mode:
authorefiacor <fiachra.corcoran@est.tech>2022-11-07 09:16:55 +0000
committerthmsdt <thomas.kulik@telekom.de>2022-11-08 11:03:15 +0100
commit89701dc6483800daef21eac3feafd4f74553f238 (patch)
tree7c5e3383575d3a81f313286a6bc9af28e45536ce /docs/Installation
parent398499b3a3fa6b5cb17d357fe037e340d3d2ca3d (diff)
[DMAAP-MR] Update RTD setup files
Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: I108c7940fe36a889287bf6b72a87942fee930411 Issue-ID: DMAAP-1824
Diffstat (limited to 'docs/Installation')
-rw-r--r--docs/Installation/Installation.rst113
1 files changed, 85 insertions, 28 deletions
diff --git a/docs/Installation/Installation.rst b/docs/Installation/Installation.rst
index 53d9fd2..97fe229 100644
--- a/docs/Installation/Installation.rst
+++ b/docs/Installation/Installation.rst
@@ -6,117 +6,174 @@ Installation
Environment
-----------
-Message Router is developed using Kafka, Zookeeper and Java. AJSC framework is used to create the REST service and Docker was used to package the service.
+
+Message Router is developed using Kafka, Zookeeper and Java. AJSC framework is
+used to create the REST service and Docker was used to package the service.
Steps
-----
+
Message Router has 3 docker containers. Dmaap\_container,
kafka\_container and zookeeper\_container. Zookeeper runs on 172.18.0.2,
kafka runs on 172.18.0.3 and dmaap on 172.18.0.4.
1) Clone message service repo
- git clone http://gerrit.onap.org/r/dmaap/messagerouter/messageservice
+ .. code-block::
+
+ git clone http://gerrit.onap.org/r/dmaap/messagerouter/messageservice
-2) copy
- messageservice/bundleconfig-local/etc/appprops/MsgRtrApi.properties
+2) copy messageservice/bundleconfig-local/etc/appprops/MsgRtrApi.properties
to /var/tmp directory
3) In /var/tmp/MsgRtrApi.properties, change value of below variables as
shown below:
- config.zk.servers=172.18.0.2(Change as per where ZooKeepeer is deployed)
+ .. code-block::
- kafka.metadata.broker.list=172.18.0.3:9092(Change as per where Kafka is deployed)
+ config.zk.servers=172.18.0.2 (Change as per where ZooKeepeer is deployed)
+ kafka.metadata.broker.list=172.18.0.3:9092 (Change as per where Kafka is deployed)
4) Install docker and docker-compose
5) Go to messageservice/src/main/resources/docker-compose and run:
-
- .. code:: bash
-
- docker-compose up # add -d argument to start process as a daemon (background process)
+
+ .. code-block::
+
+ docker-compose up # add -d argument to start process as a daemon (background process)
+
This should start 3 containers.
6) Run docker ps. It should show 3 containers.
|image0|
-
+
.. |image0| image:: docker.png
-
+
Testing
-------
- For publishing, create a sample.txt file with some content in the
directory where you will run below rest api. Run below rest api:
- curl -H "Content-Type:text/plain" -X POST -d @sample.txt
- http://172.18.0.4:3904/events/TestTopic1
+ .. code-block::
+
+ curl -H "Content-Type:text/plain" -X POST -d @sample.txt http://172.18.0.4:3904/events/TestTopic1
- For subscribing, run below rest api:
- curl -H "Content-Type:text/plain" -XGET
- http://172.18.0.4:3904/events/TestTopic1/CG1/C1?timeout=1000
+ .. code-block::
+
+ curl -H "Content-Type:text/plain" -XGET http://172.18.0.4:3904/events/TestTopic1/CG1/C1?timeout=1000
+
Note: You will only receive messages which have been published after
you have subscribed to a topic.
Steps for local development and test
-------------------------
+------------------------------------
+
On Intel dev machine, in terminal (> indicates prompt) :
+
1) Build kafka11aaf
- > git clone https://gerrit.onap.org/r/dmaap/kafka
- > cd kafka11aaf
- > mvn clean install -Pdocker
+
+ .. code-block::
+
+ > git clone https://gerrit.onap.org/r/dmaap/kafka
+ > cd kafka11aaf
+ > mvn clean install -Pdocker
+
+
2) Build messageservice
- > git clone https://gerrit.onap.org/r/dmaap/messagerouter/messageservice
- - anonymous http, can't push changes
- > cd messageservice
- > mvn clean install -Pdocker
+
+ .. code-block::
+
+ > git clone https://gerrit.onap.org/r/dmaap/messagerouter/messageservice
+ (Note: anonymous http, can't push changes)
+ > cd messageservice
+ > mvn clean install -Pdocker
+
+
3) Run tests
- > cp bundleconfig-local/etc/appprops/MsgRtrApi.properties /var/tmp/
+
+ .. code-block::
+
+ > cp bundleconfig-local/etc/appprops/MsgRtrApi.properties /var/tmp/
+
+
- edit /var/tmp/MsgRtrApi.properties
config.zk.servers=zookeeper
kafka.metadata.broker.list=kafka:9092
+
- docker-compose network maps service name(zookeeper, kafka) to IP
+
- set docker preferences/file sharing to access /var/tmp
+
> cd src/main/resources/docker-compose
+
- edit docker-compose.yml
- remove "nexus3.onap.org:10001/" from kafka and dmaap image names to
use local images
+
> docker-compose up -d
- create sample.txt file (as above)(content of file not important)
+
> curl -H "Content-Type:text/plain" -X POST -d @sample.txt http://localhost:3904/events/TestTopic1
On Arm:
+
1) Build kafka11aaf
- > git clone https://gerrit.onap.org/r/dmaap/kafka
+
+ .. code-block::
+
+ > git clone https://gerrit.onap.org/r/dmaap/kafka
+
> cd kafka11aaf
+
> mvn clean install -Pdocker -Ddocker.pull.registry=docker.io
- ensure we pull Arm version of base image
+
+
2) Build messageservice
+
+ .. code-block::
+
> git clone https://gerrit.onap.org/r/dmaap/messagerouter/messageservice
- anonymous http, can't push changes
+
> cd messageservice
+
> mvn clean install -Pdocker -Ddocker.pull.registry=docker.io
- ensure we pull Arm version of base image
+
+
3) Run tests
+
+ .. code-block::
+
> cp bundleconfig-local/etc/appprops/MsgRtrApi.properties /var/tmp/
+
- edit /var/tmp/MsgRtrApi.properties
config.zk.servers=zookeeper
kafka.metadata.broker.list=kafka:9092
+
- docker-compose network maps service name(zookeeper, kafka) to IP
+
- set docker preferences/file sharing to access /var/tmp
+
> cd src/main/resources/docker-compose
- edit docker-compose.yml
+
- remove "nexus3.onap.org:10001/" from from kafka and dmaap image names to
use local images
+
- replace 'nexus3.onap.org:10001/onap/dmaap/zookeeper:1.0.0' with
multi-platform 'zookeeper'
+
> docker-compose up -d
+
- create sample.txt file (as above)(content of file not important)
+
> curl -H "Content-Type:text/plain" -X POST -d @sample.txt http://localhost:3904/events/TestTopic1
-
-