Open FatalReadError opened 4 years ago
These two data races seem rare and hard to trigger.
Could you share some of your code?
Unfortunately I can't right now, but I will try to dig up more information and possibly even a reproduction test case.
There are many things wrong, I'm working on a proper fix for the entire lib, but it will take a bit more time.
Don't know if this is relevant, but I've experienced some of this:
WARNING: DATA RACE
Write at 0x00c000284018 by goroutine 13:
github.com/alexandrevicenzi/go-sse.(*Channel).SendMessage()
/home/cw/go/pkg/mod/github.com/alexandrevicenzi/go-sse@v1.6.0/channel.go:26 +0x8c
github.com/alexandrevicenzi/go-sse.(*Server).SendMessage()
/home/cw/go/pkg/mod/github.com/alexandrevicenzi/go-sse@v1.6.0/sse.go:119 +0x21b
I was able to fix it by just wrapping a Lock() and Unlock() around that c.lastEventID = message.id in channel.go:26 like this:
// SendMessage broadcast a message to all clients in a channel.
func (c *Channel) SendMessage(message *Message) {
c.mu.Lock() // <-- new
c.lastEventID = message.id
c.mu.Unlock() // <-- new
c.mu.RLock()
for c, open := range c.clients {
if open {
c.send <- message
}
}
c.mu.RUnlock()
}
At least in initial testing, it resolves the data race.
In my case, it was very reproducible and this instantly fixed it.
Spoke too soon -- have another on sse.go:96:
msg.retry = s.options.RetryInterval
Yes, it can happen anywhere, the lib is using goroutines where it's not needed and for that needs locks everywhere. The way to fix it is by removing most and leave only when required.
Can reproduce issue with set last lastEventID. My pattern of usage send multiple messages of different time to the same client like multiple topics subscriptions. It easy appears in tests, due absence of significant delay.
Race log is follow:
WARNING: DATA RACE Write at 0x00c000436258 by goroutine 49: github.com/alexandrevicenzi/go-sse.(*Channel).SendMessage()
https://gist.github.com/iscander/9a144528e563dc5969346d5e0b61cd4f yet another sample which rises same data race but as a part of HTTPHandler
With
go-sse@v1.5.0
and when testing publishing from multiple browsers with race detector running, encountered race conditions.Sorry, don't have the dump handy but had another data race on msg.retry write, https://github.com/alexandrevicenzi/go-sse/blob/fcf9dcef90b06336afdab9ff5027d61279b39710/sse.go#L94
(which is being fed by
SSE.SendMessage(chName, sse.NewMessage(strconv.Itoa(time.Now().Second()), string(msg), "msg"))
)I'm using some complex code as well, so it's possible that I'm not 'doing it right', but these two data races under load seem to point at these two locations (channel.go:26 and sse.go:94)