spiral-modules / roadrunner-binary

💾 High-performance PHP application server, load-balancer and process manager written in Golang. RR2 releases repository.
MIT License
44 stars 25 forks source link

build(deps): bump github.com/spiral/roadrunner-plugins/v2 from 2.6.0-beta.1 to 2.6.0-beta.2 #130

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps github.com/spiral/roadrunner-plugins/v2 from 2.6.0-beta.1 to 2.6.0-beta.2.

Release notes

Sourced from github.com/spiral/roadrunner-plugins/v2's releases.

v2.6.0-beta.2

  • ✏️ New plugin: TCP. The TCP plugin is used to handle raw TCP payload with a bi-directional protocol between the RR server and PHP worker.

PHP client library: https://github.com/spiral/roadrunner-tcp

Configuration:

rpc:
  listen: tcp://127.0.0.1:6001

server: command: "php ../../psr-worker-tcp-cont.php"

tcp: servers: server1: addr: 127.0.0.1:7778 delimiter: "\r\n" server2: addr: 127.0.0.1:8811 read_buf_size: 10 server3: addr: 127.0.0.1:8812 delimiter: "\r\n" read_buf_size: 1

pool: num_workers: 5 max_jobs: 0 allocate_timeout: 60s destroy_timeout: 60s

  • ✏️ New HTTP middleware: http_metrics.
http:
  address: 127.0.0.1:15389
  middleware: [ "http_metrics" ]
  pool:
    num_workers: 10
    allocate_timeout: 60s
    destroy_timeout: 60s

All old and new http metrics will be available after the middleware is activated. Be careful, this middleware may slow down your requests. New metrics:

  • rr_http_requests_queue_sum - number of queued requests.
  • rr_http_no_free_workers_total - number of the occurrences of the NoFreeWorkers errors.

🩹 Fixes:

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #131.