Revision: Thu, 25 Apr 2024 11:06:46 GMT
v2.14 – outdated
This version of the documentation is outdated. Consider upgrading your project to Spiral Framework 3.12
Edit this page

GRPC - Installation and Configuration

The GRPC protocol provides an extremely efficient way of cross-service communication for distributed applications. The public toolkit includes instruments to generate client and server code-bases for many languages allowing the developer to use the most optimal language for the task.

The default GRPC build includes pre-installed version of spiral/php-grpc library.

Note
You will need to generate an application key and certificate to make GRPC bundle work, see below how to do that.

You can read more about protobuf here.

Toolkit Installation

It is possible to run a PHP application without any dependencies out of the box. However, to develop, debug, and extend the GRPC project, you will need several instruments.

Install Protoc

To compile .proto files into the target language, you will have to install the protoc compiler.

You can download the latest protoc binaries from https://github.com/protocolbuffers/protobuf/releases.

PHP Server Plugin

Download and install protoc-gen-php-grpc from roadrunner-server/roadrunner releases page.

This plugin is required to generate a service code for your applications.

Note
Make sure that the plugin is available in your PATH.

Install Protobuf extension (optional)

To achieve higher performance on larger messages, make sure to install a protobuf extension for PHP.

You can compile the extension manually or install it via PECL.

sudo pecl install protobuf

Note
In case of Segmentation Fault error, try to install different protobuf library. We recommend using 3.10.0 at the start.

sudo pecl install protobuf-3.10.0

Component Installation

To install the component in alternative bundles:

composer require spiral/roadrunner-bridge

Activate the component using bootloader Spiral\RoadRunnerBridge\Bootloader\GRPCBootloader:

php
protected const LOAD = [
    // ...
    \Spiral\RoadRunnerBridge\Bootloader\GRPCBootloader::class,
    // ...
];

Configuration

Create config file app/config/grpc.php if you want to configure generate service classes:

php
<?php

declare(strict_types=1);

return [
    /**
     * Path to protoc-gen-php-grpc library.
     * Default: null 
     */
    'binaryPath' => null,
    // 'binaryPath' => __DIR__.'/../../protoc-gen-php-grpc',

    'services' => [
        __DIR__.'/../../proto/echo.proto',
    ],
];

Application Server

To enable the component in application server add the following configuration section:

yaml
grpc:
  listen: tcp://0.0.0.0:50051
  workers.command: "php app.php"

  # read how to write proto files in the next section
  proto: "proto/service.proto"

Note
Full documentation about configuration RoadRunner grpc plugin here.

Generate Certificate

It is possible to run GRPC without any encryption layer. However, in other to secure our application, we must issue proper server key and certificate. You can use any normal SSL certificate (for example issued by https://letsencrypt.org/) or issue it manually via OpenSSL.

To issue server key and certificate:

openssl req -newkey rsa:2048 -nodes -keyout app.key -x509 -days 365 -out app.crt

Note
Make sure to use a proper domain name or localhost, it will be required to make your clients connect properly.

Example Application

You can install app-grpc skeleton application to play with GRPC services:

composer create-project spiral/app-grpc
cd app-grpc
openssl req -newkey rsa:2048 -nodes -keyout app.key -x509 -days 365 -out app.crt

Start the application:

./rr serve