blog: add article on APISIX 3.16 dynamic rate limiting#2028
Merged
Baoyuantop merged 6 commits intoapache:masterfrom Apr 16, 2026
Merged
blog: add article on APISIX 3.16 dynamic rate limiting#2028Baoyuantop merged 6 commits intoapache:masterfrom
Baoyuantop merged 6 commits intoapache:masterfrom
Conversation
Introduce the new multiple rules and variable support in limit-count, limit-conn, and ai-rate-limiting plugins. All configuration examples have been validated against a live APISIX 3.16.0 instance.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new English blog article announcing and explaining APISIX 3.16’s “dynamic rate limiting” enhancements (multi-rule support + variable-based configuration) with several full configuration examples and links to plugin docs.
Changes:
- Adds a new blog post: “What’s New in Apache APISIX 3.16: Dynamic Rate Limiting for Your API Gateway”.
- Documents multi-rule usage for
limit-count,limit-conn, andai-rate-limitingwith multiple end-to-end JSON examples. - Includes upgrade/getting-started commands and links to relevant plugin documentation.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Baoyuantop
reviewed
Apr 14, 2026
Baoyuantop
previously approved these changes
Apr 14, 2026
Yilialinn
reviewed
Apr 15, 2026
Contributor
Yilialinn
left a comment
There was a problem hiding this comment.
Reviewed all 6 configuration examples by running them against a live APISIX 3.16.0 instance. All examples pass Admin API schema validation (201 Created). However, 3 examples fail at runtime and 1 is silently non-functional. Details are inline below.
…ples
- Add key-auth plugin to Example 1 (per-tier), Example 3 (limit-conn),
and the combined example: ${consumer_name} requires an authenticated
consumer; without it the rule is silently skipped and APISIX returns 500
- Replace bare 'global' constant key with '${http_host ?? global}' in
Example 3 (limit-conn), the ai-rate-limiting example, and the combined
example: plain constant strings produce n_resolved=0 and are skipped
at runtime due to an APISIX bug (filed at apache/apisix#13180)
- Add prerequisite note to the ai-rate-limiting section: the plugin is
silently inactive without ai-proxy, which sets picked_ai_instance_name
Remove blockquote warning boxes and fold the context into the surrounding paragraphs so the article reads smoothly: - Example 1: mention key-auth inline in the setup sentence - Example 3: explain key-auth and the shared-key variable in the lead-in sentence rather than as a standalone note - AI rate limiting: introduce ai-proxy dependency in the section opener as a natural description of how the plugin works - Combined example: describe key-auth and the global key choice as part of the feature walkthrough
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Yilialinn
approved these changes
Apr 16, 2026
Baoyuantop
approved these changes
Apr 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
limit-count,limit-conn, andai-rate-limitingpluginsTest plan