The Istio proxy components.
Go to file
Maria Skidanova 73fa9b1f29
Updating API sha for proxy. (#2181)
* API sha for proxy

* Updating sha for API in Proxy
2019-04-23 11:47:24 -07:00
.circleci Update Envoy SHA to latest with deterministic hash (release-1.1). (#2109) 2019-02-11 18:35:05 -08:00
.github
include/istio Revert "implement upstream secure bit (#2133)" (#2135) 2019-03-01 16:34:55 -08:00
prow Merge master into release-1.1 (#2031) 2018-11-08 14:43:17 -05:00
script Update Envoy SHA to latest with deterministic hash (release-1.1). (#2109) 2019-02-11 18:35:05 -08:00
src update envoy to latest (#2158) 2019-04-10 14:39:59 -07:00
test update envoy to latest (#2158) 2019-04-10 14:39:59 -07:00
tools
.bazelrc release 1.1: Update envoy to enable path normalization (#2166) 2019-04-10 18:40:57 -07:00
.drone.yml
.gitignore
.travis.yml
BUILD
CONTRIBUTING.md
LICENSE
Makefile Add retries to policy checks on failed transport error (#2113) 2019-02-19 11:59:20 -08:00
OWNERS Add Joshua into proxy OWNER (#2121) 2019-02-19 14:52:26 -08:00
README.md
WORKSPACE release 1.1: Update envoy to enable path normalization (#2166) 2019-04-10 18:40:57 -07:00
cc_gogo_protobuf.bzl Merge master to release-1.1 (#2038) 2018-11-14 12:49:00 -08:00
googleapis.bzl Merge master to release-1.1 (#2038) 2018-11-14 12:49:00 -08:00
istio.deps Updating API sha for proxy. (#2181) 2019-04-23 11:47:24 -07:00
protobuf.bzl update envoy to latest (#2158) 2019-04-10 14:39:59 -07:00
repositories.bzl Updating API sha for proxy. (#2181) 2019-04-23 11:47:24 -07:00
x_tools_imports.bzl Merge master to release-1.1 (#2038) 2018-11-14 12:49:00 -08:00

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.