Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 8b9c83d

Browse files
responding to @rothja review.
1 parent cab58d2 commit 8b9c83d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/big-data-cluster/concept-application-deployment.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following sections describe the architecture and functionality of Applicatio
1919

2020
## Application Deployment architecture
2121

22-
Application deployment consists of a controller and App Runtime Handlers. When creating an application, a specification file (`spec.yaml`) is provided. This `spec.yaml` file contains everything the controller needs to know to succesfully deploy the application. The following is a sample of the contents for `spec.yaml`:
22+
Application deployment consists of a controller and app runtime handlers. When creating an application, a specification file (`spec.yaml`) is provided. This `spec.yaml` file contains everything the controller needs to know to succesfully deploy the application. The following is a sample of the contents for `spec.yaml`:
2323

2424
```yaml
2525
#spec.yaml
@@ -38,7 +38,8 @@ output: #output parameter the app expects and the type
3838
```
3939
4040
The controller inspects the `runtime` specified in the `spec.yaml` file and calls the corresponding runtime handler. The runtime handler creates the application. First, a Kubernetes ReplicaSet is created containing one or more pods, each of which contains the application to be deployed. The number of pods is defined by the `replicas` parameter set in the `spec.yaml` file for the application. Each pod can have one of more pools. The number of pools is defined by the `poolsize` parameter set in the `spec.yaml` file.
41-
These settings have an impact on the amount of requests the deployment can handle in parallel. The maximum number of requests at one given time is equals to `replicas` times `poolsize`, i.e if you have 5 replicas and 2 pools per replica the deployment can handle 10 requests in parallel. See the image below for a graphical representation of `replicas` and `poolsize`:
41+
42+
These settings have an impact on the amount of requests the deployment can handle in parallel. The maximum number of requests at one given time is equals to `replicas` times `poolsize`. If you have 5 replicas and 2 pools per replica the deployment can handle 10 requests in parallel. See the image below for a graphical representation of `replicas` and `poolsize`:
4243

4344
![Poolsize and replicas](media/big-data-cluster-create-apps/poolsize-vs-replicas.png)
4445

docs/toc/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
href: ../big-data-cluster/tutorial-notebook-spark.md
8888
- name: Concepts
8989
items:
90-
- name: Application Deployment
90+
- name: Application deployment
9191
href: ../big-data-cluster/concept-application-deployment.md
9292
- name: Controller
9393
href: ../big-data-cluster/concept-controller.md

0 commit comments

Comments
 (0)