ydb-platform/ydb-php-sdk

feat: Customizing gRPC client's options

Closed this issue · 1 comments

Feature Request

Describe the Feature Request

it would be nice to be able to customize the gPRC client's options like this:

$config = [
    // ...
    'opts' => [
        'grpc.max_receive_message_length' => 8*1024*1024,
        'grpc.default_compression_algorithm' => 2,
        'grpc.default_compression_level' => 2,
    ],
]
$ydb = new \YdbPlatform\Ydb\Ydb($config);

Describe Preferred Solution

Expand functionality of \YdbPlatform\Ydb\Ydb by adding a new property (array)

Hello, thanks for the issue