Skip to content

Commit 17bf32b

Browse files
fix: Return error 422 (Unprocessable Content) when push request does not contain any streams (#13706)
1 parent fada02c commit 17bf32b

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

‎pkg/distributor/distributor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ func (d *Distributor) Push(ctx context.Context, req *logproto.PushRequest) (*log
446446

447447
// Return early if request does not contain any streams
448448
if len(req.Streams) == 0 {
449-
return &logproto.PushResponse{}, nil
449+
return &logproto.PushResponse{}, httpgrpc.Errorf(http.StatusUnprocessableEntity, validation.MissingStreamsErrorMsg)
450450
}
451451

452452
// First we flatten out the request into a list of samples.

‎pkg/distributor/distributor_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,16 @@ func Test_DiscardEmptyStreamsAfterValidation(t *testing.T) {
643643
topVal := ingester.Peek()
644644
require.Nil(t, topVal)
645645
})
646+
647+
t.Run("it returns unprocessable entity error if the streams is empty", func(t *testing.T) {
648+
limits, ingester := setup()
649+
distributors, _ := prepare(t, 1, 5, limits, func(_ string) (ring_client.PoolClient, error) { return ingester, nil })
650+
651+
_, err := distributors[0].Push(ctx, makeWriteRequestWithLabels(1, 1, []string{}))
652+
require.Equal(t, err, httpgrpc.Errorf(http.StatusUnprocessableEntity, validation.MissingStreamsErrorMsg))
653+
topVal := ingester.Peek()
654+
require.Nil(t, topVal)
655+
})
646656
}
647657

648658
func TestStreamShard(t *testing.T) {

‎pkg/validation/validate.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ import (
1111
)
1212

1313
const (
14-
ReasonLabel = "reason"
14+
ReasonLabel = "reason"
15+
MissingStreamsErrorMsg = "error at least one valid stream is required for ingestion"
16+
1517
// InvalidLabels is a reason for discarding log lines which have labels that cannot be parsed.
1618
InvalidLabels = "invalid_labels"
1719
MissingLabels = "missing_labels"

0 commit comments

Comments
 (0)