-
Notifications
You must be signed in to change notification settings - Fork 698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JetStream ConsumerContext Drain
function not waiting for in flight requests to be done processing
#1672
Comments
Drain
function not waiting for in flight requests to be done processingDrain
function not waiting for in flight requests to be done processing
I'm dealing with the same exact issue. |
me too |
We are using the new API too and you are having the same issue. But off-topic one: why do you call _, err = js.CreateOrUpdateConsumer(context.Background(), "programatic-stream", jetstream.ConsumerConfig{
Durable: "programatic-consumer",
Name: "programatic-consumer",
AckPolicy: jetstream.AckExplicitPolicy,
MaxDeliver: 10,
DeliverPolicy: jetstream.DeliverNewPolicy,
})
if err != nil {
logrus.WithError(err).Fatal("could not create consumer")
}
consumer, err := js.Consumer(context.Background(), "programatic-stream", "programatic-consumer")
if err != nil {
logrus.WithError(err).Fatal("could not get the consumer")
} |
Please see my comment on the other issue: #1673 (comment) |
That's an oversight of my part i could just get the consumer from that line, I put it together in a hurry for the example @piotrpio nice, I'll check it out thanks ! |
I would like to add a bit more input to that, I tried as suggested by @typecampo on Slack calling As an example here is the code I used to test it: package main
import (
"context"
"os"
"os/signal"
"sync"
"syscall"
"time"
"github.com/nats-io/nats.go"
"github.com/nats-io/nats.go/jetstream"
"github.com/sirupsen/logrus"
)
const (
NATS_URL = "nats://localhost:4222"
)
func main() {
closedWg := &sync.WaitGroup{}
closedWg.Add(1)
consumerConn, err := nats.Connect(NATS_URL, nats.ClosedHandler(func(c *nats.Conn) {
closedWg.Done()
}))
if err != nil {
logrus.WithError(err).Panic("could not connect to NATS")
}
js, err := jetstream.New(consumerConn)
if err != nil {
logrus.WithError(err).Fatal("could not open jetstream")
}
_, err = js.CreateOrUpdateStream(context.Background(), jetstream.StreamConfig{
Name: "programatic-stream",
Description: "Some description",
Subjects: []string{"hello.>"},
Retention: jetstream.LimitsPolicy,
MaxBytes: 2 * 1024 * 1024 * 1024,
MaxMsgs: 10000,
Discard: jetstream.DiscardOld,
MaxAge: time.Hour * 24 * 14,
Storage: jetstream.FileStorage,
Replicas: 1,
})
if err != nil {
logrus.WithError(err).Fatal("could not create stream")
}
consumer, err := js.CreateOrUpdateConsumer(context.Background(), "programatic-stream", jetstream.ConsumerConfig{
Durable: "programatic-consumer",
Name: "programatic-consumer",
AckPolicy: jetstream.AckExplicitPolicy,
MaxDeliver: 10,
DeliverPolicy: jetstream.DeliverNewPolicy,
})
if err != nil {
logrus.WithError(err).Fatal("could not create consumer")
}
_, err = consumer.Consume(func(msg jetstream.Msg) {
logrus.Info("artificially wait 5s")
time.Sleep(time.Second * 5)
logrus.Info("waited 5s")
logrus.Infof("got a message %s\n", string(msg.Data()))
msg.Ack()
})
if err != nil {
logrus.WithError(err).Fatal("could not create consumer")
}
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGTERM, syscall.SIGINT)
<-sigs
logrus.Info("got interrupted")
consumerConn.Drain()
closedWg.Wait()
logrus.Info("drained consumer")
} By sending two consecutive messages to the subject here is the output I get
Hope it helps! |
Observed behavior
I am observing that the
ConsumerContext.Drain
function does not wait for the processing of in flight requests to finish before returning.Expected behavior
I would expect the Drain function to wait for the processing of the current in flight message to finish before returning, allowing to cleanly exit the consumer.
This is especially odd because the documentation states the following:
So I would expect that the
Drain
function would block until the buffer is empty, then return. I am observing the same behaviour with theStop
function (though I would expect it to only wait for the currentConsume
run to finish)It would be really neat if either Drain & Stop functions could block until the buffer/current inflight are processed (or after a timeout has passed if it is taking too long), or if we could have a method in the Consumer or ConsumerContext that could provide us with the number of requests being processed or still waiting for processing so we could determine when it is safe to shutdown the program, if I am not mistaking right now there are none
Server and client version
Host environment
OSX 14.4.1 on M1 Max
Reproduced on a framework 13 AMD, running Arch with the latest linux kernel
Steps to reproduce
You can use the following code to validate the behaviour. This creates a stream and a consumer listening on the subjects
hello.>
, theConsume
function takes an artificially long amount of time to process the requests (5s).By running this program, sending a message through one of the listened to subjects like so
nats pub hello.foo hello
and killing the program right after the wait started, we notice that it exits before the Consume run has finished.The console output I get is the following
When I would have expected something like this
Am I doing something wrong or is it actually a bug ?
The text was updated successfully, but these errors were encountered: