aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2018-01-25 03:37:25 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-25 03:37:25 +0000
commite70599b4b9c23c9861ac670f111d38379505249d (patch)
tree8872beaba9e471852bf85f242b3abe476cfe04c0
parentf4b75e4a071c5a29268aec9799116e3eef56b920 (diff)
parentab282f3e0a0dd1e3c56289bef006acf147df72f5 (diff)
Merge "Convert ipynb to rst file"
-rw-r--r--docs/index.rst10
-rwxr-xr-xdocs/proposal/NetworPerformanceIndicator.ipynb235
-rw-r--r--docs/proposal/network-performance-indicator.rst78
3 files changed, 88 insertions, 235 deletions
diff --git a/docs/index.rst b/docs/index.rst
index f3e275e5..4e1a4591 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -20,3 +20,13 @@ for performance, simple but supported by comprehensive testing data and transpar
testing/user/configguide/index.rst
testing/user/userguide/index.rst
testing/developer/devguide/index.rst
+
+=========
+Proposals
+=========
+
+.. toctree::
+ :glob:
+ :maxdepth: 1
+
+ proposal/*
diff --git a/docs/proposal/NetworPerformanceIndicator.ipynb b/docs/proposal/NetworPerformanceIndicator.ipynb
deleted file mode 100755
index 92ac06fe..00000000
--- a/docs/proposal/NetworPerformanceIndicator.ipynb
+++ /dev/null
@@ -1,235 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Network performance Indicator: A Proposal.\n",
- " Sridhar K. N. Rao, Spirent Communications"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Network performance is an important measure that should be considered for design and deployment of virtual network functions in the cloud. In this document, we propose an indicator for network performance. We consider following parameters for the indicator.\n",
- "\n",
- "1. The network throughput.\n",
- "2. The network delay\n",
- "3. Application SLAs\n",
- "4. The topology - Path Length and Number of Virtual Network-Elements.\n",
- "5. Network Virtualization - Vxlan, GRE, VLAN, etc. \n",
- "\n",
- "The most commonly used, and well measured, network-performance metrics are throughput and delay. However, considering the NFV environments, we add additional metrics to come up with a single indicator value. With these additional metrics, we plan to cover various deployment scenarios of the virtualized network functions.\n",
- "\n",
- "The proposed network performance indicator value ranges from $$0 - 1.0$$. As majority of indicators, these values should mainly be used for comparative analysis, and not to be seen as a absolute indicator.\n",
- "\n",
- "Note: Additional parameters such as - total load on the network - can be considered in future. \n",
- "\n",
- "The network performance indicator (I) can be represented as:"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "\n",
- "$$ I = w_t(1- \\frac{E_t-O_t}{E_t}) + w_d(1-\\frac{O_d - E_d}{O_d}) + w_a(1-\\frac{E_a - O_a }{E_a}) + w_s (1-\\frac{T_n - V_n}{T_n}) + w_p(1-\\frac{1}{T_n + 1}) + w_v * {C_{nv}} $$\n",
- "Where, \n",
- "$$ w_t + w_d + w_a + w_s + w_p + w_v = 1.0 $$\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "<table>\n",
- "<tr>\n",
- "<td>\n",
- "Notation \n",
- "</td>\n",
- "<td>\n",
- "Description \n",
- "</td>\n",
- "<td>\n",
- "Example Value\n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$w_t$\n",
- "</td>\n",
- "<td>\n",
- "Weightage for the Throughput \n",
- "</td>\n",
- "<td>\n",
- "0.3\n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$w_d$\n",
- "</td>\n",
- "<td>\n",
- "Weightage for the Delay\n",
- "</td>\n",
- "<td>\n",
- "0.3\n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$w_a$\n",
- "</td>\n",
- "<td>\n",
- "Weightage for the Application SLA\n",
- "</td>\n",
- "<td>\n",
- "0.1\n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$w_s$\n",
- "</td>\n",
- "<td>\n",
- "Weightage for the Topology - Network Elements \n",
- "</td>\n",
- "<td>\n",
- "0.1\n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$w_p$ \n",
- "</td>\n",
- "<td>\n",
- "Weightage for the Topology - Path Length \n",
- "</td>\n",
- "<td>\n",
- "0.1 \n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$w_v$ \n",
- "</td>\n",
- "<td>\n",
- "Weightage for the Virtualization \n",
- "</td>\n",
- "<td>\n",
- "0.1\n",
- "</td>\n",
- "</tr>\n",
- "</table>"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "<table>\n",
- "<tr>\n",
- "<th>\n",
- "Notation\n",
- "</th>\n",
- "<th>\n",
- "Description\n",
- "</th>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$$E_t$$ $$\\&$$ $$O_t$$\n",
- "</td>\n",
- "<td>\n",
- "Expected (theoretical Max) and Obtained Average Throughput \n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$$E_d$$ $$\\&$$ $$O_d$$ \n",
- "</td>\n",
- "<td>\n",
- "Expected and Otained Minimum Delay \n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$$E_a$$ $$\\&$$ $$O_a$$ \n",
- "</td>\n",
- "<td>\n",
- "Expected and Obtained Application SLA Metric \n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$T_n$\n",
- "</td>\n",
- "<td>\n",
- "Total number of Network Elements (Switches and Routers) \n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$V_n$\n",
- "</td>\n",
- "<td>\n",
- "Total number of Virtual Network Elements \n",
- "</td>\n",
- "</tr>\n",
- "<tr>\n",
- "<td>\n",
- "$C_{nv}$ \n",
- "</td>\n",
- "<td>\n",
- "Network Virtualization Constant\n",
- "</td>\n",
- "</tr>\n",
- "</table>"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "It would be interesting to explore the following alternative:\n",
- "$$I = I_E - I_O$$, where\n",
- "\n",
- "$$ I_E = w_t * E_t + w_d* \\frac{1}{E_d} + w_a.\\frac{1}{E_a} + w_s * \\frac{1}{T_n} + w_p * V_n + W_v * C_{nv} $$\n",
- "\n",
- "and \n",
- "$$ I_O = w_t * O_t + w_d* \\frac{1}{O_d} + w_a.\\frac{1}{O_a} + w_s * \\frac{1}{T_n} + w_p * V_n + W_v * C_{nv} $$"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.6.1"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/docs/proposal/network-performance-indicator.rst b/docs/proposal/network-performance-indicator.rst
new file mode 100644
index 00000000..bfb5239c
--- /dev/null
+++ b/docs/proposal/network-performance-indicator.rst
@@ -0,0 +1,78 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+.. http://creativecommons.org/licenses/by/4.0
+.. (c) 2016 ZTE Corp.
+
+
+*****************************
+Network Performance Indicator
+*****************************
+
+Sridhar K. N. Rao, Spirent Communications
+
+Network performance is an important measure that should be considered for design and deployment of virtual network functions in the cloud. In this document, we propose an indicator for network performance. We consider following parameters for the indicator.
+
+#. The network throughput.
+#. The network delay
+#. Application SLAs
+#. The topology - Path Length and Number of Virtual Network-Elements.
+#. Network Virtualization - Vxlan, GRE, VLAN, etc.
+
+The most commonly used, and well measured, network-performance metrics are throughput and delay. However, considering the NFV environments, we add additional metrics to come up with a single indicator value. With these additional metrics, we plan to cover various deployment scenarios of the virtualized network functions.
+
+The proposed network performance indicator value ranges from 0 - 1.0
+
+As majority of indicators, these values should mainly be used for comparative analysis, and not to be seen as a absolute indicator.
+
+Note: Additional parameters such as - total load on the network - can be considered in future.
+
+The network performance indicator (I) can be represented as:
+
+:math:`I = w_t(1- \frac{E_t-O_t}{E_t}) + w_d(1-\frac{O_d - E_d}{O_d}) + w_a(1-\frac{E_a - O_a }{E_a}) + w_s (1-\frac{T_n - V_n}{T_n}) + w_p(1-\frac{1}{T_n + 1}) + w_v * {C_{nv}}`
+
+Where,
+
++-------------+-----------------------------------------------+---------------+
+| Notation | Description | Example Value |
++=============+===============================================+===============+
+| :math:`w_t` | Weightage for the Throughput | 0.3 |
++-------------+-----------------------------------------------+---------------+
+| :math:`w_d` | Weightage for the Delay | 0.3 |
++-------------+-----------------------------------------------+---------------+
+| :math:`w_a` | Weightage for the Application SLA | 0.1 |
++-------------+-----------------------------------------------+---------------+
+| :math:`w_s` | Weightage for the Topology - Network Elements | 0.1 |
++-------------+-----------------------------------------------+---------------+
+| :math:`w_p` | Weightage for the Topology - Path Length | 0.1 |
++-------------+-----------------------------------------------+---------------+
+| :math:`w_v` | Weightage for the Virtualization | 0.1 |
++-------------+-----------------------------------------------+---------------+
+
+And
+
++---------------------------+------------------------------------------------------------+
+| Notation | Description |
++===========================+============================================================+
+| :math:`E_t` & :math:`O_t` | Expected (theoretical Max) and Obtained Average Throughput |
++---------------------------+------------------------------------------------------------+
+| :math:`E_d` & :math:`O_d` | Expected and Otained Minimum Delay |
++---------------------------+------------------------------------------------------------+
+| :math:`E_a` & :math:`O_a` | Expected and Obtained Application SLA Metric |
++---------------------------+------------------------------------------------------------+
+| :math:`T_n` | Total number of Network Elements (Switches and Routers) |
++---------------------------+------------------------------------------------------------+
+| :math:`V_n` | Total number of Virtual Network Elements |
++---------------------------+------------------------------------------------------------+
+| :math:`C_{nv}` | Network Virtualization Constant |
++---------------------------+------------------------------------------------------------+
+
+It would be interesting to explore the following alternative:
+
+:math:`I = I_E - I_O`
+
+where
+
+:math:`I_E = w_t * E_t + w_d* \frac{1}{E_d} + w_a.\frac{1}{E_a} + w_s * \frac{1}{T_n} + w_p * V_n + W_v * C_{nv}`
+
+and
+
+:math:`I_O = w_t * O_t + w_d* \frac{1}{O_d} + w_a.\frac{1}{O_a} + w_s * \frac{1}{T_n} + w_p * V_n + W_v * C_{nv}` \ No newline at end of file