# Configure gRPC Support

You can configure an ALB to support gRPC, a high-performance RPC framework using HTTP/2 for transport. The gRPC enables users to define service methods and messages in a language-agnostic way, making it easy to create APIs that work seamlessly across different platforms. Additionally, it supports advanced features like load balancing, retries, and deadlines, enhancing the reliability and efficiency of your applications.

To configure gRPC follow these steps:

1. Create a Target Group. Follow the steps outlined in the [<mark style="color:blue;">Create Target Group</mark>](https://docs.ionos.com/sections-test/guides/network-services/application-load-balancer/how-tos/create-target-groups) guide.

Ensure you select **HTTP** as the protocol and **HTTP2** as the protocol version for gRPC support. It is recommended not to set any HTTP health checks for gRPC support.

#### Example Target group request for gRPC support

```json
{
  “properties”: {
    “name”: “grpc-target-group”,
    “protocol”: “HTTP”,
    "protocolVersion": "HTTP2",
    “algorithm”: “ROUND_ROBIN”,
    “targets”: [
      {
        “ip”: “10.10.10.10”,
        “port”: 8000,
        “weight”: 1
      }
    ]
  }
}
```

2. Follow [<mark style="color:blue;">Set Up an Application Load Balancer</mark>](https://docs.ionos.com/sections-test/guides/network-services/application-load-balancer/how-tos/setup-alb) guide to complete configuring the load balancer for gRPC traffic.

{% hint style="success" %}
\*\*Result:\*\* ALB will now support gRPC traffic by handling HTTP/2 requests and enabling efficient gRPC communication.
{% endhint %}
