summaryrefslogtreecommitdiffstats
path: root/docs/drools/feature_locking.rst
diff options
context:
space:
mode:
authorJorge Hernandez <jorge.hernandez-herrero@att.com>2020-06-15 17:35:28 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-15 17:35:28 +0000
commit162f0081782622854ae939dddad733efd0d0b212 (patch)
tree1a935e9a005a5d18ee42ac252250d9ae3463cacb /docs/drools/feature_locking.rst
parenta88593f3b92142f4743db4c9f4b5f3a40b55a400 (diff)
parent108dd8ff62cbdfbbe1ba3589afe43582105ea275 (diff)
Merge "drools documentation redo"
Diffstat (limited to 'docs/drools/feature_locking.rst')
-rw-r--r--docs/drools/feature_locking.rst47
1 files changed, 0 insertions, 47 deletions
diff --git a/docs/drools/feature_locking.rst b/docs/drools/feature_locking.rst
deleted file mode 100644
index 1236c93f..00000000
--- a/docs/drools/feature_locking.rst
+++ /dev/null
@@ -1,47 +0,0 @@
-
-.. This work is licensed under a Creative Commons Attribution 4.0 International License.
-.. http://creativecommons.org/licenses/by/4.0
-
-****************************
-Feature: Distributed Locking
-****************************
-
-Summary
-^^^^^^^
-
-The Distributed Locking Feature provides locking of resources across a pool of PDP-D hosts. The list of locks is maintained in a database, where each record includes a resource identifier, an owner identifier, and an expiration time. Typically, a drools application will unlock the resource when it's operation completes. However, if it fails to do so, then the resource will be automatically released when the lock expires, thus preventing a resource from becoming permanently locked.
-
-Usage
-^^^^^
-
- .. code-block:: bash
- :caption: Enable Feature Distributed Locking
-
- policy stop
-
- features enable distributed-locking
-
- The configuration is located at:
-
- * $POLICY_HOME/config/feature-distributed-locking.properties
-
-
- .. code-block:: bash
- :caption: Start the PDP-D using pooling
-
- policy start
-
-
- .. code-block:: bash
- :caption: Disable the Distributed Locking feature
-
- policy stop
- features disable distributed-locking
- policy start
-
-
-End of Document
-
-.. SSNote: Wiki page ref. https://wiki.onap.org/display/DW/Feature+Distributed+Locking
-
-