Description
Hi, community,
We talked about changing the default HTTP router from radixtree_uri to radixtree_host_uri in the [mailing list]
(https://lists.apache.org/thread/6kkrdk2bkxmccwho3lk5jz5lrsvbsxgt).
I'll show the content here again:
Let me just explain the differences between them. The radixtree_uri
router matches API requests with the existing route tree by URI path,
While the radixtree_host_uri matches the HTTP host and then matches
the URI path.
So when Apache APISIX uses radixtree_uri as the default HTTP router,
there is a confusing scenario (even we can say it's a bug): Let's say
we have two routes, the first one requires the host matches
*.example.com, and the URI path is /anything, And the second one needs
the host matches foo.example.com exactly, and the URI path is also
/anything. In such a case, if we send an API request, we may hit the
first route, which is counterintuitive.
We also have a lot of voices from the community that users have been
in trouble since they think Apache APISIX will consider the HTTP host
match by default. However, it's not the case. So I'm here to propose
changing the default HTTP router to radixtree_host_uri.
I know this is a broken change, so we may have to do this in 3.x
releases and may not back it port to the 2.15 LTS version.
By the way, the radixtree_uri may have better performance than
radixtree_host_uri, so if we really change the default HTTP router, we
also need to give users a hint that: if they want better performance
or you are making a stress test, you may change the HTTP router back
to the radixtree_uri.
I think to implement the change, we need to close the tasks below:
Description
Hi, community,
We talked about changing the default HTTP router from
radixtree_uritoradixtree_host_uriin the [mailing list](https://lists.apache.org/thread/6kkrdk2bkxmccwho3lk5jz5lrsvbsxgt).
I'll show the content here again:
I think to implement the change, we need to close the tasks below:
radixtree_host_uriandradixtree_uri, give them some advice about the performance tuning