You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/04/06 07:12:33 UTC

[GitHub] [apisix-go-plugin-runner] spacewander commented on issue #79: request help: Why apisix-go-plguin have performed very poorly

spacewander commented on issue #79:
URL: https://github.com/apache/apisix-go-plugin-runner/issues/79#issuecomment-1089904037

   The data don't surprise me.
   
   The performance of Lua version is very high because its path is shorter:
   client -> APISIX -> client
   
   The path of the Go version is:
   client -> APISIX -> Runner -> APISIX -> client.
   
   For a regular path (client -> APISIX -> [Runner -> APISIX ->] upstream -> APISIX -> client), requests go through the runner will be 50% slower because of the RPC overhead.
   
   The RPC overhead is high when it is measured with a simple Hello world case.
   


-- 
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: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org