Skip to content

Commit 92c6882

Browse files
igba1980igba.ujege
andauthored
Adjust ratelimit and quota in manifest_template.yml (#104)
* Adjust ratelimit and quota in manifest_template.yml This commit updates the values of 'ratelimit' and 'quota' for different environments in the manifest_template.yml file. The changes are aimed at correctly configuring the request limits for each environment, thus improving the system's performance and reliability. * Enable app quota and spikeArrest in manifest_template.yml The previous comments in the manifest_template.yml file were uncommented to enable app quota and spikeArrest. This will ensure the correct quota limits and spike arrest configuration are set, which is essential for maintaining the efficiency and stability of different environments. --------- Co-authored-by: igba.ujege <igba.ujege@bjss.com>
1 parent b5b4fac commit 92c6882

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

manifest_template.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ APIGEE_ENVIRONMENTS:
55
- name: internal-dev
66
display_name: Internal Development
77
has_mock_auth: true
8-
ratelimit: 60pm # 1 request per second
9-
quota: 60
8+
ratelimit: 1pm # 1 request per second
9+
quota: 1
1010
- name: internal-qa
1111
display_name: Internal QA
1212
has_mock_auth: true
13-
ratelimit: 1pm # 1 request per minute
13+
ratelimit: 60pm # 1 request per second
1414
quota: 60
1515
- name: ref
1616
display_name: Reference
@@ -20,12 +20,12 @@ APIGEE_ENVIRONMENTS:
2020
- name: internal-dev-sandbox
2121
display_name: Internal Development Sandbox
2222
portal_visibility: false
23-
ratelimit: 60pm # 1 request per second
24-
quota: 60
23+
ratelimit: 1pm # 1 request per second
24+
quota: 1
2525
- name: internal-qa-sandbox
2626
display_name: Internal QA Sandbox
2727
portal_visibility: false
28-
ratelimit: 1pm # 1 request per minute
28+
ratelimit: 60pm # 1 request per second
2929
quota: 60
3030
- name: sandbox
3131
display_name: Sandbox
@@ -76,11 +76,11 @@ apigee:
7676
spikeArrest:
7777
enabled: true
7878
ratelimit: {{ ENV.ratelimit | default('300pm') }}
79-
# app:
80-
# quota:
81-
# enabled: false
82-
# spikeArrest:
83-
# enabled: false
79+
app:
80+
quota:
81+
enabled: false
82+
spikeArrest:
83+
enabled: false
8484
description: {{ DESCRIPTION }}
8585
displayName: {{ TITLE }}
8686
environments: [ {{ ENV.name }} ]

0 commit comments

Comments
 (0)