summaryrefslogtreecommitdiff
path: root/api-guide/source/limits.rst
diff options
context:
space:
mode:
authorjichenjc <jichenjc@cn.ibm.com>2016-09-10 18:35:49 +0800
committerjichenjc <jichenjc@cn.ibm.com>2016-09-10 18:51:12 +0800
commit3e29e55fe8a96da32f1a6d0a6f9be4cd47dfb888 (patch)
tree8e8ab3e06ebbd27c79ec8397ca87959db9bf34aa /api-guide/source/limits.rst
parentf62d143112a8d6f55c64dadec0e51faf5fe27ed9 (diff)
downloadnova-3e29e55fe8a96da32f1a6d0a6f9be4cd47dfb888.tar.gz
Rate limit is removed , update doc accordingly
Rate limit is not support in v2.1 API any more, update doc to remove that part. Change-Id: I57742c10c6a6ad97f400db3c928fccf3d8f4733c
Diffstat (limited to 'api-guide/source/limits.rst')
-rw-r--r--api-guide/source/limits.rst48
1 files changed, 3 insertions, 45 deletions
diff --git a/api-guide/source/limits.rst b/api-guide/source/limits.rst
index 315d7899a0..2e84ada5a2 100644
--- a/api-guide/source/limits.rst
+++ b/api-guide/source/limits.rst
@@ -4,55 +4,13 @@ Limits
Accounts may be pre-configured with a set of thresholds (or limits) to
manage capacity and prevent abuse of the system. The system recognizes
-two kinds of limits: *rate limits* and *absolute limits*. Rate limits
-are thresholds that are reset after a certain amount of time passes.
-Absolute limits are fixed. Limits are configured by operators and may
-differ from one deployment of the OpenStack Compute service to
-another. Please contact your provider to determine the limits that
+*absolute limits*. Absolute limits are fixed. Limits are configured by
+operators and may differ from one deployment of the OpenStack Compute service
+to another. Please contact your provider to determine the limits that
apply to your account. Your provider may be able to adjust your
account's limits if they are too low. Also see the API Reference for
`*Limits* <http://developer.openstack.org/api-ref/compute/#limits-limits>`__.
-Rate limits
-~~~~~~~~~~~
-
-Rate limits are specified in terms of both a human-readable wild-card
-URI and a machine-processable regular expression. The human-readable
-limit is intended for displaying in graphical user interfaces. The
-machine-processable form is intended to be used directly by client
-applications.
-
-The regular expression boundary matcher "^" for the rate limit takes
-effect after the root URI path. For example, the regular expression
-^/servers would match the bolded portion of the following URI:
-https://servers.api.openstack.org/v2.1\ **/servers**.
-
-**Table: Sample rate limits**
-
-+------------+-------------------+----------------------+----------+
-| Verb | URI | RegEx | Default |
-+------------+-------------------+----------------------+----------+
-| **POST** | \* | .\* | 120/min |
-+------------+-------------------+----------------------+----------+
-| **POST** | \*/servers | ^/servers | 120/min |
-+------------+-------------------+----------------------+----------+
-| **PUT** | \* | .\* | 120/min |
-+------------+-------------------+----------------------+----------+
-| **GET** | \*changes-since\* | .\*changes-since.\* | 120/min |
-+------------+-------------------+----------------------+----------+
-| **DELETE** | \* | .\* | 120/min |
-+------------+-------------------+----------------------+----------+
-| **GET** | \*/os-fping\* | ^/os-fping | 12/min |
-+------------+-------------------+----------------------+----------+
-
-
-Rate limits are applied in order relative to the verb, going from least
-to most specific.
-
-In the event a request exceeds the thresholds established for your
-account, a 413 HTTP response is returned with a ``Retry-After`` header
-to notify the client when they can attempt to try again.
-
Absolute limits
~~~~~~~~~~~~~~~