Load testing of the gRPC service
You can use Yandex Load Testing for service load testing via gRPC
To perform load testing:
- Prepare your cloud.
- Prepare a test target.
- Prepare the infrastructure.
- Create an agent.
- Test gRPC Server Reflection.
- Prepare a file with test data.
- Run a test.
If you no longer need the resources you created, delete them.
Prepare your cloud
Sign up for Yandex Cloud and create a billing account:
- Go to the management console
and log in to Yandex Cloud or create an account if you do not have one yet. - On the Yandex Cloud Billing
page, make sure you have a billing account linked and it has theACTIVE
orTRIAL_ACTIVE
status. If you do not have a billing account, create one.
If you have an active billing account, you can go to the cloud page
Learn more about clouds and folders.
Required paid resources
If the agent is hosted on Yandex Cloud, a fee is charged for computing resources (see Yandex Compute Cloud pricing).
At the Preview stage, Load Testing can be used free of charge.
Prepare a test target
In this example, we'll use a gRPC-service with the 172.17.0.10
internal IP address in the same subnet as the agent.
For instructions on how to integrate the gRPC framework for different programming languages, see the documentation
-
Configure support for gRPC Server Reflection. To learn how to configure gRPC Server Reflection for different programming languages, see the documentation
.With gRPC Server Reflection, the load generator polls the server at the start of a test to collect information about services and their methods and uses this data to generate correct gRPC requests during the test.
-
Install a port for accessing the gRPC-service:
8080
.
You can also use Load Testing for load testing of a service that is public or located in a subnet and security group other than those of the agent.
For a public service, allow incoming HTTPS traffic to port 8080
.
For a service whose subnet and security group differ from the agent's ones, create a rule for incoming HTTPS traffic to port 8080
in the security group where the test target is located.
Prepare the infrastructure
Create a service account
- Create a service account named
sa-loadtest
in the folder to host the agent that will generate the load. - Assign the following roles to the service account:
loadtesting.generatorClient
: Allows running the agent, performing tests on the agent, and uploading the results to storage.compute.admin
: Allows managing VMs in Compute Cloud.vpc.user
: Allows connecting to Virtual Private Cloud network resources and using them.
Configure a network
Create and configure a NAT gateway in the subnet where your test target is and the agent will be hosted. This ensures the agent has access to Load Testing.
Configure security groups
-
Set up the test agent's security group:
- Create an agent security group named
agent-sg
. - Add rules:
-
Rule for outgoing HTTPS traffic to the Load Testing public API:
- Port range:
443
- Protocol:
TCP
- Destination name:
CIDR
- CIDR blocks:
0.0.0.0/0
This will allow connecting the agent to Load Testing to manage tests from the interface and get test results.
- Port range:
-
Rule for incoming SSH traffic:
- Port range:
22
- Protocol:
TCP
- Destination name:
CIDR
- CIDR blocks:
0.0.0.0/0
This will allow you to connect to the agent over SSH and manage tests from the console or collect debugging information.
- Port range:
-
Rule for outgoing traffic when generating load to the test target:
- Port range:
0-65535
- Protocol:
Any
- Destination name:
Security group
SelectFrom list
. Specify the security group where the test target is located.
Create this rule for each test target with a unique security group.
- Port range:
-
- Create an agent security group named
-
Set up the test target's security group:
-
Create the test target's security group named
load-target-sg
. -
Add a rule for incoming traffic when generating load to the test target:
- Port range:
0-65535
. - Protocol:
Any
. - Select
From list
. Specify the security group where the test target is located.
This rule allows agents to generate load to this target or enable additional monitoring tools.
- Port range:
-
Create a test agent
-
If you do not have an SSH key pair yet, create one.
-
Create an agent.
Management console-
In the management console
, select the folder where you want to create your agent. -
In the list of services, select Load Testing.
-
In the Agents tab, click Create agent.
-
Give your agent a name, e.g.,
agent-008
. -
Specify the same availability zone where the test target is located.
-
Under Agent:
- Select the appropriate agent type. For more information, see Agent performance.
- Specify the subnet where the test target is located. Make sure you created and set up a NAT gateway in the subnet.
- If security groups are available to you, select a security group preset for the agent.
-
Under Access, specify the information required to access the agent:
-
Select the
sa-loadtest
service account. -
Enter the username in the Login field.
Alert
Do not use the
root
username or other names reserved by the operating system. To perform operations that require superuser permissions, use thesudo
command. -
In the SSH key field, paste the contents of the public key file.
-
-
Click Create.
-
Wait for the VM instance to create. Make sure the agent status changes to
Ready for test
.Note
The agent creation process may stop at the
Initializing connection
status unless the following conditions are met:- The agent has access to
loadtesting.api.cloud.yandex.net:443
and is assigned a public IP address. - A NAT gateway is set up in the target subnet.
- The service account assigned to the agent has the required roles.
- The agent has access to
-
-
Assign a public IP to the agent to enable access over SSH:
Management console- In the management console
, select the folder where the agent is located. - Select Compute Cloud.
- Select the VM named
agent-008
. - Under Network interface, in the top-right corner, click
and select Add public IP address. - In the window that opens:
- In the Public address field, select obtaining a Auto address.
- Click Add.
- In the management console
Test gRPC Server Reflection
-
Connect to the agent via SSH.
-
Run the following command to test gRPC Server Reflection on the gRPC service:
TLS connectionStandard connectiongrpcurl 172.17.0.10:8080 list
grpcurl --plaintext 172.17.0.10:8080 list
Result:
api.Adder grpc.reflection.v1alpha.ServerReflection
Prepare a file with test data
-
Generate payloads in HTTP_JSON format:
{"tag": "/Add", "call": "api.Adder.Add", "payload": {"x": 21, "y": 12}} {"tag": "/Add", "call": "api.Adder.Add", "payload": {"x": 21, "y": 12}} {"tag": "/Add2", "call": "api.Adder.Add", "payload": {"x": 210, "y": 120}}
Where:
tag
: Request tag to display in reports.call
: Method being called.payload
: Dictionary with call parameters being provided to the test target.
In our example, two thirds of requests will be tagged as
/Add
and one third, as/Add2
. -
Save the payloads to a file named
data.json
.
Run a test
- In the management console
, select Load Testing. - In the left-hand panel, select
Tests. - Click Create test.
- On the test creation page:
-
In the Agents field, select
agent-008
you created earlier. -
Under Attached files, select From computer, click Attach file, and select the
data.json
file you previously saved. -
Under Test settings:
-
In the Configuration method field, select Config.
-
In the configuration input field, specify the testing thread settings in
yaml
format:pandora: enabled: true pandora_cmd: /usr/local/bin/pandora package: yandextank.plugins.Pandora config_content: pools: - id: GRPC gun: type: grpc # protocol target: 172.17.0.10:8080 # test target address tls: false ammo: type: grpc/json file: ammo_ddfafc98-19a3-4dbb-b981-aa6787496a97 result: type: phout destination: ./phout.log rps: - duration: 180s # test time type: line # load type from: 1 to: 1500 startup: type: once times: 1500 # number of threads log: level: debug monitoring: expvar: enabled: true port: 1234 uploader: api_address: loadtesting.api.cloud.yandex.net:443 enabled: true job_dsc: grpc test job_name: '[pandora][config][grpc]' package: yandextank.plugins.DataUploader ver: '1.1' core: {}
Tip
View a sample configuration file. You can also find sample configuration files in existing tests.
-
-
Click Create.
-
Afterwards, the configuration will be verified, and the agent will start loading the gRPC service being tested.
To see the testing progress, select the created test and go to the Test results tab.
How to delete the resources you created
To stop paying for the resources created, just delete the agent.