-
Notifications
You must be signed in to change notification settings - Fork 1.9k
OSSMDOC-223 Document resource guidelines for OSSM Components. #29981
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| //// | ||
| This module included in the following assemblies: | ||
| - /v2x/ossm-performance-scalability.adoc | ||
| //// | ||
|
|
||
| [id="ossm-load-test-results_{context}"] | ||
| = Load test results | ||
|
|
||
| The upstream Istio community load tests mesh consists of *1000* services and *2000* sidecars with 70,000 mesh-wide requests per second. | ||
| Running the tests using Istio 1.6.8, generated the following results: | ||
|
|
||
| * The Envoy proxy uses *0.5 vCPU* and *50 MB memory* per 1000 requests per second going through the proxy. | ||
| * Istiod uses *1 vCPU* and *1.5 GB* of memory. | ||
| * The Envoy proxy adds *3.12 ms* to the 90th percentile latency. | ||
| * The legacy `istio-telemetry` service (disabled by default in Service Mesh 2.0) uses *0.6 vCPU* per 1000 mesh-wide requests per second for deployments that use Mixer. | ||
| // TODO The Envoy numbers goes down in 1.9, check for the latest data with next version of Istio. | ||
| The data plane components, the Envoy proxies, handle data flowing through the system. The control plane component, Istiod, configures the data plane. The data plane and control plane have distinct performance concerns. | ||
|
|
||
| == Control plane performance | ||
|
|
||
| Istiod configures sidecar proxies based on user authored configuration files and the current state of the system. | ||
| In a Kubernetes environment, Custom Resource Definitions (CRDs) and deployments constitute the configuration and state of the system. | ||
| The Istio configuration objects like gateways and virtual services, provide the user-authored configuration. | ||
| To produce the configuration for the proxies, Istiod processes the combined configuration and system state from the Kubernetes environment and the user-authored configuration. | ||
|
|
||
| The control plane supports thousands of services, spread across thousands of pods with a similar number of user authored virtual services and other configuration objects. | ||
| Istiod's CPU and memory requirements scale with the number of configurations and possible system states. | ||
| The CPU consumption scales with the following factors: | ||
|
|
||
| * The rate of deployment changes. | ||
| * The rate of configuration changes. | ||
| * The number of proxies connecting to Istiod. | ||
|
|
||
| However this part is inherently horizontally scalable. | ||
|
|
||
| //Do we support namespace isolation? When namespace isolation is enabled, a single Istiod instance can support 1000 services, 2000 sidecars with 1 vCPU and 1.5 GB of memory. | ||
| //You can increase the number of Istiod instances to reduce the amount of time it takes for the configuration to reach all proxies. | ||
|
|
||
| == Data plane performance | ||
|
|
||
| Data plane performance depends on many factors, for example: | ||
|
|
||
| * Number of client connections | ||
| * Target request rate | ||
| * Request size and response size | ||
| * Number of proxy worker threads | ||
| * Protocol | ||
| * CPU cores | ||
| * Number and types of proxy filters, specifically telemetry v2 related filters. | ||
|
|
||
| The latency, throughput, and the proxies' CPU and memory consumption are measured as a function of these factors. | ||
|
|
||
| === CPU and memory consumption | ||
|
|
||
| Since the sidecar proxy performs additional work on the data path, it consumes CPU and memory. As of Istio 1.1, a proxy consumes about 0.6 vCPU per 1000 requests per second. | ||
| //TODO As of Istio 1.7, a proxy consumes about 0.5 vCPU per 1000 requests per second. | ||
|
|
||
| The memory consumption of the proxy depends on the total configuration state the proxy holds. | ||
| A large number of listeners, clusters, and routes can increase memory usage. | ||
| //Istio 1.1 introduced namespace isolation to limit the scope of the configuration sent to a proxy. In a large namespace, the proxy consumes approximately 50 MB of memory. | ||
|
|
||
| Since the proxy normally doesn't buffer the data passing through, request rate doesn't affect the memory consumption. | ||
|
|
||
| === Additional latency | ||
|
|
||
| Since Istio injects a sidecar proxy on the data path, latency is an important consideration. Istio adds an authentication filter, a telemetry filter, and a metadata exchange filter to the proxy. | ||
| Every additional filter adds to the path length inside the proxy and affects latency. | ||
|
|
||
| The Envoy proxy collects raw telemetry data after a response is sent to the client. | ||
| The time spent collecting raw telemetry for a request does not contribute to the total time taken to complete that request. | ||
| However, since the worker is busy handling the request, the worker won't start handling the next request immediately. | ||
| This process adds to the queue wait time of the next request and affects average and tail latencies. | ||
| The actual tail latency depends on the traffic pattern. | ||
|
|
||
| Inside the mesh, a request traverses the client-side proxy and then the server-side proxy. In the default configuration of Istio 1.6.8 (that is, Istio with telemetry v2), the two proxies add about 3.12 ms and 3.13 ms to the 90th and 99th percentile latency, respectively, over the baseline data plane latency. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| //// | ||
| This module included in the following assemblies: | ||
| - /v2x/ossm-performance-scalability.adoc | ||
| //// | ||
|
|
||
| [id="ossm-recommended-resources_{context}"] | ||
| = Recommended compute resources | ||
|
|
||
| By default, `spec.proxy` has the settings `cpu:10m` and `memory:128M`. If you are using Pilot, `spec.runtime.components.pilot` has the same default values. | ||
| The settings in the following example are based on 1,000 services and 1,000 requests per second. You can change the values for `cpu` and `memory` as necessary based on your environment. | ||
|
|
||
| .Example version 2.0 ServiceMeshControlPlane | ||
| [source,yaml] | ||
| ---- | ||
| apiVersion: maistra.io/v2 | ||
| kind: ServiceMeshControlPlane | ||
| metadata: | ||
| name: basic | ||
| namespace: istio-system | ||
| spec: | ||
| version: v2.0 | ||
| proxy: | ||
| runtime: | ||
| container: | ||
| resources: | ||
| requests: | ||
| cpu: 600m | ||
| memory: 50Mi | ||
| limits: {} | ||
|
|
||
| runtime: | ||
| components: | ||
| pilot: | ||
| container: | ||
| resources: | ||
| requests: | ||
| cpu: 1000m | ||
| memory: 1.6Gi | ||
| limits: {} | ||
| ---- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| [id="ossm-performance-scalability"] | ||
| = Performance and scalability | ||
| :context: performance-scalability | ||
|
|
||
| toc::[] | ||
|
|
||
| The default `ServiceMeshControlPlane` settings are not intended for production use; they are designed to install successfully on a default OpenShift installation, which is an extremely resource limited environment. After you have verified a successful SMCP installation, you should modify the settings defined within the SMCP to suit your environment. This section provides guidance for configuring {ProductName} for production use. | ||
|
|
||
| See xref:../../service_mesh/v2x/ossm-custom-resources.adoc#ossm-custom-resources[Custom resources] for more information about the configurable fields in the `ServiceMeshControlPlane` resource. | ||
|
|
||
| // The following include statements pull in the module files that comprise the assembly. | ||
|
|
||
| include::modules/ossm-recommended-resources.adoc[leveloffset=+1] | ||
|
|
||
| include::modules/ossm-load-test-results.adoc[leveloffset=+1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.