Skip to content

Commit 8cb2c6f

Browse files
authored
[#1856]: release: v2023.3.10
2 parents 79f22c6 + f85c5b3 commit 8cb2c6f

File tree

5 files changed

+267
-210
lines changed

5 files changed

+267
-210
lines changed

.rr.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,12 @@ temporal:
308308
# Default: 0
309309
max_jobs: 0
310310

311+
# [2023.3.10]
312+
# Maximum size of the internal requests queue. After reaching the limit, all additional requests would be rejected with error.
313+
#
314+
# Default: 0 (no limit)
315+
max_queue_size: 0
316+
311317
# Timeout for worker allocation. Zero means 60s.
312318
#
313319
# Default: 60s
@@ -872,6 +878,12 @@ http:
872878
# Default: 0
873879
max_jobs: 0
874880

881+
# [2023.3.10]
882+
# Maximum size of the internal requests queue. After reaching the limit, all additional requests would be rejected with error.
883+
#
884+
# Default: 0 (no limit)
885+
max_queue_size: 0
886+
875887
# Timeout for worker allocation. Zero means 60s.
876888
#
877889
# Default: 60s
@@ -1314,6 +1326,12 @@ jobs:
13141326
# Default: 0
13151327
max_jobs: 0
13161328

1329+
# [2023.3.10]
1330+
# Maximum size of the internal requests queue. After reaching the limit, all additional requests would be rejected with error.
1331+
#
1332+
# Default: 0 (no limit)
1333+
max_queue_size: 0
1334+
13171335
# Timeout for worker allocation. Zero means 60s.
13181336
#
13191337
# Default: 60s
@@ -1944,6 +1962,12 @@ grpc:
19441962
# Default: 0
19451963
max_jobs: 0
19461964

1965+
# [2023.3.10]
1966+
# Maximum size of the internal requests queue. After reaching the limit, all additional requests would be rejected with error.
1967+
#
1968+
# Default: 0 (no limit)
1969+
max_queue_size: 0
1970+
19471971
# Timeout for worker allocation. Zero means 60s.
19481972
#
19491973
# Default: 60s
@@ -2017,6 +2041,12 @@ tcp:
20172041
# Default: 0
20182042
max_jobs: 0
20192043

2044+
# [2023.3.10]
2045+
# Maximum size of the internal requests queue. After reaching the limit, all additional requests would be rejected with error.
2046+
#
2047+
# Default: 0 (no limit)
2048+
max_queue_size: 0
2049+
20202050
# Timeout for worker allocation. Zero means 60s.
20212051
#
20222052
# Default: 60s
@@ -2148,6 +2178,12 @@ centrifuge:
21482178
# Default: 0
21492179
max_jobs: 0
21502180

2181+
# [2023.3.10]
2182+
# Maximum size of the internal requests queue. After reaching the limit, all additional requests would be rejected with error.
2183+
#
2184+
# Default: 0 (no limit)
2185+
max_queue_size: 0
2186+
21512187
# Timeout for worker allocation. Zero means 60s.
21522188
#
21532189
# Default: 60s

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# CHANGELOG
22

3+
# <center> 🚀 v2023.3.10 🚀 </center>
4+
5+
### Core `SDK` bugfixes:
6+
7+
- 🐛️ Request queue gets too large, [BUG/FR](https://github.com/roadrunner-server/roadrunner/issues/1841), [Docs](https://docs.roadrunner.dev/php-worker/pool) (thanks, @L3tum)
8+
- 🐛️ Huge memory allocation in the debug mode [FIX](https://github.com/roadrunner-server/sdk/pull/110).
9+
- 🐛️ Stop handler (`worker->stop()`) was returned (breaking change fix) [FIX](https://github.com/roadrunner-server/sdk/pull/109), (thanks @Zylius)
10+
11+
### <center>🧹 Chore:</center>
12+
13+
- 🧑‍🏭 **Dependencies**: update project/system dependencies.
14+
15+
---
16+
317
# <center> 🚀 v2023.3.9 🚀 </center>
418

519
### `HTTP` plugin

go.mod

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -10,49 +10,49 @@ require (
1010
github.com/fatih/color v1.16.0
1111
github.com/joho/godotenv v1.5.1
1212
github.com/olekukonko/tablewriter v0.0.5
13-
github.com/roadrunner-server/amqp/v4 v4.9.11
13+
github.com/roadrunner-server/amqp/v4 v4.9.12
1414
github.com/roadrunner-server/api/v4 v4.10.0
15-
github.com/roadrunner-server/app-logger/v4 v4.2.10
16-
github.com/roadrunner-server/beanstalk/v4 v4.6.4
17-
github.com/roadrunner-server/boltdb/v4 v4.7.12
18-
github.com/roadrunner-server/centrifuge/v4 v4.6.2
19-
github.com/roadrunner-server/config/v4 v4.6.6
15+
github.com/roadrunner-server/app-logger/v4 v4.2.11
16+
github.com/roadrunner-server/beanstalk/v4 v4.6.5
17+
github.com/roadrunner-server/boltdb/v4 v4.7.13
18+
github.com/roadrunner-server/centrifuge/v4 v4.6.3
19+
github.com/roadrunner-server/config/v4 v4.6.7
2020
github.com/roadrunner-server/endure/v2 v2.4.3
21-
github.com/roadrunner-server/errors v1.3.0
22-
github.com/roadrunner-server/fileserver/v4 v4.1.14
21+
github.com/roadrunner-server/errors v1.4.0
22+
github.com/roadrunner-server/fileserver/v4 v4.1.15
2323
github.com/roadrunner-server/goridge/v3 v3.8.1
24-
github.com/roadrunner-server/grpc/v4 v4.6.4
25-
github.com/roadrunner-server/gzip/v4 v4.1.14
26-
github.com/roadrunner-server/headers/v4 v4.2.15
27-
github.com/roadrunner-server/http/v4 v4.4.12
28-
github.com/roadrunner-server/informer/v4 v4.3.13
29-
github.com/roadrunner-server/jobs/v4 v4.7.12
30-
github.com/roadrunner-server/kafka/v4 v4.4.15
31-
github.com/roadrunner-server/kv/v4 v4.4.13
32-
github.com/roadrunner-server/lock/v4 v4.5.11
33-
github.com/roadrunner-server/logger/v4 v4.2.13
34-
github.com/roadrunner-server/memcached/v4 v4.3.12
35-
github.com/roadrunner-server/memory/v4 v4.6.13
36-
github.com/roadrunner-server/metrics/v4 v4.1.15
37-
github.com/roadrunner-server/nats/v4 v4.6.6
38-
github.com/roadrunner-server/otel/v4 v4.3.11
39-
github.com/roadrunner-server/prometheus/v4 v4.1.14
40-
github.com/roadrunner-server/proxy_ip_parser/v4 v4.1.14
41-
github.com/roadrunner-server/redis/v4 v4.2.15
42-
github.com/roadrunner-server/resetter/v4 v4.0.20
43-
github.com/roadrunner-server/rpc/v4 v4.2.14
44-
github.com/roadrunner-server/sdk/v4 v4.5.6
45-
github.com/roadrunner-server/send/v4 v4.2.14
46-
github.com/roadrunner-server/server/v4 v4.5.6
47-
github.com/roadrunner-server/service/v4 v4.5.2
48-
github.com/roadrunner-server/sqs/v4 v4.6.1
49-
github.com/roadrunner-server/static/v4 v4.1.14
50-
github.com/roadrunner-server/status/v4 v4.4.12
51-
github.com/roadrunner-server/tcp/v4 v4.3.11
24+
github.com/roadrunner-server/grpc/v4 v4.6.5
25+
github.com/roadrunner-server/gzip/v4 v4.1.15
26+
github.com/roadrunner-server/headers/v4 v4.2.16
27+
github.com/roadrunner-server/http/v4 v4.5.1
28+
github.com/roadrunner-server/informer/v4 v4.3.14
29+
github.com/roadrunner-server/jobs/v4 v4.7.13
30+
github.com/roadrunner-server/kafka/v4 v4.4.16
31+
github.com/roadrunner-server/kv/v4 v4.4.14
32+
github.com/roadrunner-server/lock/v4 v4.5.12
33+
github.com/roadrunner-server/logger/v4 v4.2.14
34+
github.com/roadrunner-server/memcached/v4 v4.3.13
35+
github.com/roadrunner-server/memory/v4 v4.6.14
36+
github.com/roadrunner-server/metrics/v4 v4.1.16
37+
github.com/roadrunner-server/nats/v4 v4.6.7
38+
github.com/roadrunner-server/otel/v4 v4.3.12
39+
github.com/roadrunner-server/prometheus/v4 v4.1.15
40+
github.com/roadrunner-server/proxy_ip_parser/v4 v4.1.15
41+
github.com/roadrunner-server/redis/v4 v4.2.16
42+
github.com/roadrunner-server/resetter/v4 v4.0.21
43+
github.com/roadrunner-server/rpc/v4 v4.2.15
44+
github.com/roadrunner-server/sdk/v4 v4.6.0
45+
github.com/roadrunner-server/send/v4 v4.2.15
46+
github.com/roadrunner-server/server/v4 v4.5.7
47+
github.com/roadrunner-server/service/v4 v4.5.3
48+
github.com/roadrunner-server/sqs/v4 v4.6.2
49+
github.com/roadrunner-server/static/v4 v4.1.15
50+
github.com/roadrunner-server/status/v4 v4.4.13
51+
github.com/roadrunner-server/tcp/v4 v4.3.12
5252
github.com/spf13/cobra v1.8.0
5353
github.com/spf13/viper v1.18.2
5454
github.com/stretchr/testify v1.8.4
55-
github.com/temporalio/roadrunner-temporal/v4 v4.5.8
55+
github.com/temporalio/roadrunner-temporal/v4 v4.5.9
5656
go.uber.org/automaxprocs v1.5.3
5757
)
5858

@@ -64,18 +64,18 @@ exclude (
6464

6565
require (
6666
github.com/andybalholm/brotli v1.1.0 // indirect
67-
github.com/aws/aws-sdk-go v1.49.22 // indirect
67+
github.com/aws/aws-sdk-go v1.50.9 // indirect
6868
github.com/aws/aws-sdk-go-v2 v1.24.1 // indirect
69-
github.com/aws/aws-sdk-go-v2/config v1.26.4 // indirect
70-
github.com/aws/aws-sdk-go-v2/credentials v1.16.15 // indirect
69+
github.com/aws/aws-sdk-go-v2/config v1.26.6 // indirect
70+
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 // indirect
7171
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 // indirect
7272
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 // indirect
7373
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 // indirect
74-
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2 // indirect
74+
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 // indirect
7575
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect
7676
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 // indirect
7777
github.com/aws/aws-sdk-go-v2/service/sqs v1.29.7 // indirect
78-
github.com/aws/aws-sdk-go-v2/service/sso v1.18.6 // indirect
78+
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 // indirect
7979
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 // indirect
8080
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 // indirect
8181
github.com/aws/smithy-go v1.19.0 // indirect
@@ -88,7 +88,7 @@ require (
8888
github.com/cespare/xxhash/v2 v2.2.0 // indirect
8989
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
9090
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
91-
github.com/emicklei/proto v1.13.0 // indirect
91+
github.com/emicklei/proto v1.13.2 // indirect
9292
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
9393
github.com/felixge/httpsnoop v1.0.4 // indirect
9494
github.com/fsnotify/fsnotify v1.7.0 // indirect
@@ -103,28 +103,28 @@ require (
103103
github.com/gogo/status v1.1.1 // indirect
104104
github.com/golang/mock v1.7.0-rc.1 // indirect
105105
github.com/golang/protobuf v1.5.3 // indirect
106-
github.com/google/pprof v0.0.0-20240117000934-35fc243c5815 // indirect
107-
github.com/google/uuid v1.5.0 // indirect
106+
github.com/google/pprof v0.0.0-20240130152714-0ed6a68c8d9e // indirect
107+
github.com/google/uuid v1.6.0 // indirect
108108
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
109109
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
110-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
110+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
111111
github.com/hashicorp/hcl v1.0.0 // indirect
112112
github.com/inconshreveable/mousetrap v1.1.0 // indirect
113113
github.com/jmespath/go-jmespath v0.4.0 // indirect
114-
github.com/klauspost/compress v1.17.4 // indirect
114+
github.com/klauspost/compress v1.17.5 // indirect
115115
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
116116
github.com/libdns/libdns v0.2.1 // indirect
117117
github.com/magiconair/properties v1.8.7 // indirect
118118
github.com/mattn/go-colorable v0.1.13 // indirect
119119
github.com/mattn/go-isatty v0.0.20 // indirect
120120
github.com/mattn/go-runewidth v0.0.15 // indirect
121121
github.com/mholt/acmez v1.2.0 // indirect
122-
github.com/miekg/dns v1.1.57 // indirect
122+
github.com/miekg/dns v1.1.58 // indirect
123123
github.com/mitchellh/mapstructure v1.5.0 // indirect
124124
github.com/nats-io/nats.go v1.32.0 // indirect
125125
github.com/nats-io/nkeys v0.4.7 // indirect
126126
github.com/nats-io/nuid v1.0.1 // indirect
127-
github.com/onsi/ginkgo/v2 v2.14.0 // indirect
127+
github.com/onsi/ginkgo/v2 v2.15.0 // indirect
128128
github.com/openzipkin/zipkin-go v0.4.2 // indirect
129129
github.com/pborman/uuid v1.2.1 // indirect
130130
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
@@ -141,7 +141,7 @@ require (
141141
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.5 // indirect
142142
github.com/redis/go-redis/extra/redisotel/v9 v9.0.5 // indirect
143143
github.com/redis/go-redis/v9 v9.4.0 // indirect
144-
github.com/rivo/uniseg v0.4.4 // indirect
144+
github.com/rivo/uniseg v0.4.6 // indirect
145145
github.com/roadrunner-server/tcplisten v1.4.0 // indirect
146146
github.com/robfig/cron v1.2.0 // indirect
147147
github.com/rs/cors v1.10.1 // indirect
@@ -156,7 +156,7 @@ require (
156156
github.com/subosito/gotenv v1.6.0 // indirect
157157
github.com/tklauser/go-sysconf v0.3.13 // indirect
158158
github.com/tklauser/numcpus v0.7.0 // indirect
159-
github.com/twmb/franz-go v1.15.4 // indirect
159+
github.com/twmb/franz-go v1.16.0 // indirect
160160
github.com/twmb/franz-go/pkg/kmsg v1.7.0 // indirect
161161
github.com/twmb/murmur3 v1.1.8 // indirect
162162
github.com/uber-go/tally/v4 v4.1.10 // indirect
@@ -165,22 +165,22 @@ require (
165165
github.com/valyala/tcplisten v1.0.0 // indirect
166166
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
167167
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
168-
github.com/yusufpapurcu/wmi v1.2.3 // indirect
168+
github.com/yusufpapurcu/wmi v1.2.4 // indirect
169169
github.com/zeebo/blake3 v0.2.3 // indirect
170170
go.etcd.io/bbolt v1.3.8 // indirect
171171
go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.43.0 // indirect
172-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
173-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
174-
go.opentelemetry.io/contrib/propagators/jaeger v1.21.1 // indirect
175-
go.opentelemetry.io/otel v1.21.0 // indirect
176-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect
177-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect
178-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 // indirect
179-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.21.0 // indirect
180-
go.opentelemetry.io/otel/exporters/zipkin v1.21.0 // indirect
181-
go.opentelemetry.io/otel/metric v1.21.0 // indirect
182-
go.opentelemetry.io/otel/sdk v1.21.0 // indirect
183-
go.opentelemetry.io/otel/trace v1.21.0 // indirect
172+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
173+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
174+
go.opentelemetry.io/contrib/propagators/jaeger v1.22.0 // indirect
175+
go.opentelemetry.io/otel v1.22.0 // indirect
176+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 // indirect
177+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.22.0 // indirect
178+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
179+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.22.0 // indirect
180+
go.opentelemetry.io/otel/exporters/zipkin v1.22.0 // indirect
181+
go.opentelemetry.io/otel/metric v1.22.0 // indirect
182+
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
183+
go.opentelemetry.io/otel/trace v1.22.0 // indirect
184184
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
185185
go.temporal.io/api v1.26.0 // indirect
186186
go.temporal.io/sdk v1.25.1 // indirect
@@ -192,18 +192,18 @@ require (
192192
go.uber.org/multierr v1.11.0 // indirect
193193
go.uber.org/zap v1.26.0 // indirect
194194
golang.org/x/crypto v0.18.0 // indirect
195-
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect
195+
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
196196
golang.org/x/mod v0.14.0 // indirect
197197
golang.org/x/net v0.20.0 // indirect
198198
golang.org/x/sync v0.6.0 // indirect
199199
golang.org/x/sys v0.16.0 // indirect
200200
golang.org/x/text v0.14.0 // indirect
201201
golang.org/x/time v0.5.0 // indirect
202202
golang.org/x/tools v0.17.0 // indirect
203-
google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect
204-
google.golang.org/genproto/googleapis/api v0.0.0-20240116215550-a9fa1716bcac // indirect
205-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect
206-
google.golang.org/grpc v1.60.1 // indirect
203+
google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe // indirect
204+
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect
205+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
206+
google.golang.org/grpc v1.61.0 // indirect
207207
google.golang.org/protobuf v1.32.0 // indirect
208208
gopkg.in/ini.v1 v1.67.0 // indirect
209209
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect

0 commit comments

Comments
 (0)