Redis on SAP BTP is a core in-memory cache service to support high-performance applications on SAP Business Technology Platform (BTP), keeping it reliable, secure, and performant.
One essential capability intended to help is the Pending Maintenance API, which allows developers and operators to programmatically detect and react to upcoming changes that could impact the service availability.
In this blog post, we’ll explore:
The Pending Maintenance API is part of the Redis on SAP BTP extension reference APIs . It provides a programmatic interface to check for upcoming maintenance activities, such as security patches, software upgrades, or infrastructure changes that may require a restart or temporary downtime.
This API is particularly useful for applications that need to:
🔗 Reference: SAP Help - Redis on SAP BTP - Pending Maintenance API
Benefit | Description |
Proactive management | Get early warnings about upcoming maintenance tasks. |
Better uptime | Coordinate workload transitions to reduce downtime or performance impact. |
Automation ready | Use with CI/CD or observability pipelines to automatically take actions. |
Operational transparency | Improves visibility into platform-level changes. |
curl -X GET 'https://{base-url}/v1/redis-cache/instances/{id}/pending-maintenance' \
-H "Authorization: Bearer <your-access-token>" \
-H "Accept: application/json"
* Add authorization Bearer Token and replace {id} with the Redis instance ID.
Example of a response payload:
{"pending_maintenance": [{"version": "redis 6.x and onwards, "description": "Upgrades to improve the security, reliability, and operational performance on arm-based ElastiCache nodes."}]}
The Pending Maintenance API empowers developers and DevOps teams to build resilient, observant, and maintenance-aware applications. Use it proactively to guard against disruptions, align your automation workflows, and ensure your Redis workloads stay healthy--even during infrastructure updates.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
25 | |
12 | |
11 | |
9 | |
9 | |
7 | |
7 | |
6 | |
6 | |
6 |