Configuring Caching¶
When an API call hits the API Gateway, the Gateway carries out security checks to verify if the token is valid. During these verifications, the API Gateway extracts parameters (i.e., access token, API name, and API version) that are passed on to it. As the entire load of the traffic to APIs goes through the API Gateway, this verification process needs to be fast and efficient in order to prevent overhead and delays. MWARE ESB uses caching for this purpose, where the validation information is cached with the token, API name, and version, and the cache is stored in either the API Gateway or the Key Manager server.
The default cache size of any type of cache in a MWARE product is 10,000 elements/records. Cache eviction occurs from the 10001st element. All caches in MWARE products can be configured using the <PRODUCT_HOME>/repository/conf/deployment.toml
file. In case you have not defined a value for default cache timeout under server configurations, the defaultCacheTimeout
of 15 minutes will be applied which comes by default.
[server]
default_cache_timeout = 15
These configurations apply globally to all caches. You can override these values for specific caches using the UI or different configuration files as discussed under each section below.
Tip
In a distributed environment, the caching configurations you do in one node replicates equally in all nodes.
Tip
Apart from response caching, all the other caches are enabled by the product. When the MWARE ESB components are clustered, they work as distributed caches. This means that a change done by one node is visible to another node in the cluster.
API Gateway cache¶
When caching is enabled at the Gateway and a request hits the Gateway, it first populates the cached entry for a given token. If a cache entry does not exist in the cache, it calls the Key Manager server. This process is carried out using Web service calls. After the Key Manager server returns the validation information, it gets stored in the Gateway. As the API Gateway issues a Web service call to the Key Manager server only, if it does not have a cache entry, this method reduces the number of Web service calls to the Key Manager server. Therefore, it is faster than the alternative method.
By default, the API Gateway cache is enabled. This can be disabled by modifying the following attribute in the <PRODUCT_HOME>/repository/conf/deployment.toml
file.
[apim.cache.gateway_token]
enable = false
Clearing the API Gateway cache¶
When a token is revoked at the Key Manager, a token revocation event is sent to the Traffic Manager. Gateways receive this token revocation controller event and clear the cache accordingly.
This feature is enabled by default and token revocation events are published by the org.wso2.carbon.apimgt.notification.TokenRevocationNotifierImpl.java
class.
If you need to change the default behavior, you can implement the org.wso2.carbon.apimgt.notification.TokenRevocationNotifier
interface and plug new implementation using the following configuration in the deployment.toml
file.
[apim.token.revocation]
notifier_impl="org.wso2.carbon.apimgt.notification.TokenRevocationNotifier"
For more information on the above configuration, see the Config Catalog.
Resource cache¶
An API's resources are HTTP methods that handle particular types of requests such as GET, POST, etc. They are similar to the methods of a particular class. Each resource has parameters such as its throttling level, Auth type, etc.
Users can make requests to an API by calling any one of the HTTP methods of the API's resources. The ESB uses the resource cache at the Gateway node to store the API's resource-level parameters (Auth type and throttling level). The cache entry is identified by a cache key, which is based on the API's context, version, request path, and HTTP method. Caching avoids the need to do a separate back-end call to check the Auth type and throttling level of a resource, every time a request to the API comes. It improves performance.
Note that if you update an API, the resource cache gets invalidated and the changes are reflected within a few minutes.
By default, the resource cache is enabled. This can be disabled by modifying the following attribute in the <API-M_HOME>/repository/conf/deployment.toml
file.
[apim.cache.resource]
enable = false
Key Manager cache¶
The Key Manager consists of the OAuth Cache.
OAuth cache¶
The OAuth token is saved in this cache, which is enabled by default. Whenever a new OAuth token is generated, it is saved in this cache to prevent constant database calls. Unless an OAuth expires or is revoked, the same token is sent back for the same user. Therefore, you do not need to change this cached token most of the time.
Response cache¶
For information on how to enable response caching for a given API, see Response Caching.
JWT claims cache¶
For information on how to enable JWT claims caching, see JWT claims Caching.
Publisher cache¶
Publisher-roles cache¶
This indicates whether the role cache needs to be enabled in the Publisher. It is disabled by default. If this is disabled, for all API publisher calls, there will be a call to the Key Manager. It expires in 15 minutes by default. It is highly recommended to enable this cache. However, if the system is in a state where the role addition and deletion happen seamlessly, the caching will not happen as expected.
[apim.cache.publisher_roles]
enable = true
Developer Portal cache¶
The Developer Portal has several caches to reduce the page load times and increase its responsiveness when multiple users access it simultaneously.
Tag cache¶
This cache saves the API's tags after they have been retrieved from the Registry. If your APIs and associated tags change frequently, it is recommended to configure a smaller cache refresh time (in milliseconds). This cache is disabled by default. To enable it, uncomment the following element in the <API-M_HOME>/repository/conf/deployment.toml
file.
[apim.cache.tags]
expiry_time = "2m"
Recently-added-API cache¶
This cache saves the five most recently added APIs. It is disabled by default. If you have multiple API modifications during a short time period, it is recommended to not enable this cache. To enable it, uncomment the following section in the <API-M_HOME>/repository/conf/deployment.toml
file and set enable to true
.
[apim.cache.recent_apis]
enable = true
Scopes cache¶
This specifies whether scopes are taken from the cache or not. It is disabled by default. If you are modifying application subscriptions frequently, modifying the user roles frequently, or updating the subscribed APIs frequently, it is recommended to not enable this cache. To enable it, uncomment the following section in the <API-M_HOME>/repository/conf/deployment.toml
file and set enable to true
.
[apim.cache.scopes]
enable = true
Top