tokers opened a new issue, #7361:
URL: https://github.com/apache/apisix/issues/7361

   ### Current State
   
   Currently, we can configure plugins on Route, Service, Global Rule, and 
Consumer. But the precedence between them are not shown in the documents.
   
   Say I configure the `limit-count` plugin on the Consumer and Route.
   
   * Consumer
   * 
   ```json
   {
       "plugins": {
           "limit-count": {
               "key": "abc",
               "count": 10
           }
       }
   }
   ```
   
   * Route
   
   ```json
   {
       "plugins": {
           "limit-count": {
               "key": "abc",
               "count": 20
           }
       }
   }
   ```
   
   Which config for `limit-count` will be used? And what if I have another 
`limit-count` on the Service and the Service is referenced by the Route?
   
   ### Desired State
   
   As a user, I hope there has a document to explain these stuffs.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to