Rich Bennett | 4b00193 | 2017-10-16 09:25:01 -0400 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 International License. |
| 2 | .. http://creativecommons.org/licenses/by/4.0 |
LF Jenkins CI | 9615f62 | 2020-04-08 20:24:12 +0000 | [diff] [blame] | 3 | .. _architecture: |
Rich Bennett | 4b00193 | 2017-10-16 09:25:01 -0400 | [diff] [blame] | 4 | |
Idan Amit | d90aab6 | 2017-11-02 13:42:29 +0200 | [diff] [blame] | 5 | ============ |
Rich Bennett | 4b00193 | 2017-10-16 09:25:01 -0400 | [diff] [blame] | 6 | Architecture |
| 7 | ============ |
| 8 | |
Idan Amit | d90aab6 | 2017-11-02 13:42:29 +0200 | [diff] [blame] | 9 | SDC As Part of ONAP |
| 10 | =================== |
| 11 | |
| 12 | .. image:: images/SDC_In_ONAP.png |
| 13 | |
Idan Amit | d90aab6 | 2017-11-02 13:42:29 +0200 | [diff] [blame] | 14 | High Level Architecture |
| 15 | ======================= |
| 16 | |
| 17 | The following diagram shows the high-level relationship between the system components: |
| 18 | |
| 19 | .. image:: images/High_Level_Architecture_SDC.png |
| 20 | |
| 21 | The SDC architecture uses the Jetty server as an application server. |
| 22 | |
Idan Amit | 1aa38a4 | 2017-11-02 16:53:49 +0200 | [diff] [blame] | 23 | - The **Jetty front end**: |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 24 | - supplies the static content of the web pages and all the resources that are required by the GUI |
Idan Amit | d90aab6 | 2017-11-02 13:42:29 +0200 | [diff] [blame] | 25 | - serves as a proxy for the REST API requests coming from the GUI |
| 26 | |
| 27 | Every request originating from the GUI is passed to the Jetty front-end server before it is executed. |
| 28 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 29 | - The **Jetty back end** contains all the logic for the SDC. |
Idan Amit | d90aab6 | 2017-11-02 13:42:29 +0200 | [diff] [blame] | 30 | |
Satyaki Mallick | 56309f4 | 2018-10-16 18:20:53 +0530 | [diff] [blame] | 31 | - **Cassandra** is used to store audit data, artifacts and data model objects. |
Idan Amit | d90aab6 | 2017-11-02 13:42:29 +0200 | [diff] [blame] | 32 | |