The Istio proxy components.
Go to file
Piotr Sikora 490fa3febe Update Envoy SHA to latest with HTTP/2 upgrade fixes. (#2386)
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
2019-08-23 16:53:37 -07:00
.circleci Update to clang/libc++ 8 and Bazelisk launcher for Bazel. (#2375) 2019-08-20 13:51:51 -07:00
.github
include/istio allow batch report to be tuned by either max_entries or max_time (#2195) 2019-05-17 15:52:03 -07:00
prow Update to clang/libc++ 8 and Bazelisk launcher for Bazel. (#2375) 2019-08-20 13:51:51 -07:00
script Update to clang/libc++ 8 and Bazelisk launcher for Bazel. (#2375) 2019-08-20 13:51:51 -07:00
src build: dynamically link against libc++. 2019-08-04 23:34:49 +00:00
test build: dynamically link against libc++. 2019-08-04 23:34:49 +00:00
tools
.bazelrc Force linking with lld. 2019-08-05 23:47:35 +00:00
.bazelversion Update to clang/libc++ 8 and Bazelisk launcher for Bazel. (#2375) 2019-08-20 13:51:51 -07:00
.drone.yml
.gitignore
.travis.yml
BUILD
CONTRIBUTING.md
LICENSE
Makefile Update to clang/libc++ 8 and Bazelisk launcher for Bazel. (#2375) 2019-08-20 13:51:51 -07:00
OWNERS Replace qiwzhang who has left the project with crazyxy. (#2241) (#2245) 2019-05-29 13:41:29 -07:00
README.md
WORKSPACE Update Envoy SHA to latest with HTTP/2 upgrade fixes. (#2386) 2019-08-23 16:53:37 -07:00
istio.deps Update Envoy SHA to latest with HTTP/2 upgrade fixes. (#2386) 2019-08-23 16:53:37 -07:00
repositories.bzl Updating API sha for proxy (#2329) 2019-07-29 16:54:20 -07:00
tsan.suppressions
x_tools_imports.bzl

README.md

Istio Proxy

The Istio Proxy is a microservice proxy that can be used on the client and server side, and forms a microservice mesh. The Proxy supports a large number of features.

Client Side Features:

  • Discovery & Load Balancing. The Proxy can use several standard service discovery and load balancing APIs to efficiently distribute traffic to services.

  • Credential Injection. The Proxy can inject client identity, either through connection tunneling or protocol-specific mechanisms such as JWT tokens for HTTP requests.

  • Connection Management. The Proxy manages connections to services, handling health checking, retry, failover, and flow control.

  • Monitoring & Logging. The Proxy can report client-side metrics and logs to the Mixer.

Server Side Features:

  • Rate Limiting & Flow Control. The Proxy can prevent overload of backend systems and provide client-aware rate limiting.

  • Protocol Translation. The Proxy is a gRPC gateway, providing translation between JSON-REST and gRPC.

  • Authentication & Authorization. The Proxy supports multiple authentication mechanisms, and can use the client identities to perform authorization checks through the Mixer.

  • Monitoring & Logging. The Proxy can report server-side metrics and logs to the Mixer.

Please see istio.io to learn about the overall Istio project and how to get in touch with us. To learn how you can contribute to any of the Istio components, including the proxy, please see the Istio contribution guidelines.