特使代理使用什么语言?

What language that envoy proxy uses?

下面envoy使用的编程语言是什么?

  operation: INSERT_BEFORE
  value: # lua filter specification
   name: envoy.lua
   config:
     inlineCode: |
       function envoy_on_request(request_handle)
         -- Make an HTTP call to an upstream host with the following headers, body, and timeout.
         local headers, body = request_handle:httpCall(
          "lua_cluster",
          {
           [":method"] = "POST",
           [":path"] = "/acl",
           [":authority"] = "internal.org.net"
          },
         "authorize call",
         5000)
       end

是否可以使用 python 代替上述语言?

叫做Lua。阅读更多 here.