2020-04-20 06:37:04 +00:00
|
|
|
package log_buffer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-09-09 18:21:23 +00:00
|
|
|
"fmt"
|
2020-04-20 06:37:04 +00:00
|
|
|
"time"
|
|
|
|
|
2022-08-17 19:05:07 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
2020-04-20 06:37:04 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-04-20 06:37:04 +00:00
|
|
|
)
|
|
|
|
|
2020-09-09 18:21:23 +00:00
|
|
|
var (
|
2021-01-12 10:30:12 +00:00
|
|
|
ResumeError = fmt.Errorf("resume")
|
2021-01-11 10:08:55 +00:00
|
|
|
ResumeFromDiskError = fmt.Errorf("resumeFromDisk")
|
2020-09-09 18:21:23 +00:00
|
|
|
)
|
|
|
|
|
2024-01-08 08:03:08 +00:00
|
|
|
type MessagePosition struct {
|
|
|
|
time.Time // this is the timestamp of the message
|
|
|
|
BatchIndex int64 // this is only used when the timestamp is not enough to identify the next message, when the timestamp is in the previous batch.
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMessagePosition(tsNs int64, batchIndex int64) MessagePosition {
|
|
|
|
return MessagePosition{
|
|
|
|
Time: time.Unix(0, tsNs).UTC(),
|
|
|
|
BatchIndex: batchIndex,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-15 08:20:12 +00:00
|
|
|
func (logBuffer *LogBuffer) LoopProcessLogData(readerName string, startPosition MessagePosition, stopTsNs int64,
|
2024-01-08 08:03:08 +00:00
|
|
|
waitForDataFn func() bool, eachLogDataFn func(logEntry *filer_pb.LogEntry) error) (lastReadPosition MessagePosition, isDone bool, err error) {
|
2020-04-20 06:37:04 +00:00
|
|
|
// loop through all messages
|
|
|
|
var bytesBuf *bytes.Buffer
|
2024-01-08 08:03:08 +00:00
|
|
|
var batchIndex int64
|
|
|
|
lastReadPosition = startPosition
|
2024-01-11 15:55:26 +00:00
|
|
|
var entryCounter int64
|
2020-04-20 06:37:04 +00:00
|
|
|
defer func() {
|
|
|
|
if bytesBuf != nil {
|
2020-08-27 05:40:15 +00:00
|
|
|
logBuffer.ReleaseMemory(bytesBuf)
|
2020-04-20 06:37:04 +00:00
|
|
|
}
|
2024-01-11 15:55:26 +00:00
|
|
|
println("LoopProcessLogData", readerName, "sent messages total", entryCounter)
|
2020-04-20 06:37:04 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
|
|
|
if bytesBuf != nil {
|
2020-08-27 05:40:15 +00:00
|
|
|
logBuffer.ReleaseMemory(bytesBuf)
|
2020-04-20 06:37:04 +00:00
|
|
|
}
|
2024-01-15 08:20:12 +00:00
|
|
|
bytesBuf, batchIndex, err = logBuffer.ReadFromBuffer(lastReadPosition)
|
2021-01-11 10:08:55 +00:00
|
|
|
if err == ResumeFromDiskError {
|
2022-05-24 07:23:53 +00:00
|
|
|
time.Sleep(1127 * time.Millisecond)
|
2024-01-08 08:03:08 +00:00
|
|
|
return lastReadPosition, isDone, ResumeFromDiskError
|
|
|
|
}
|
|
|
|
readSize := 0
|
|
|
|
if bytesBuf != nil {
|
|
|
|
readSize = bytesBuf.Len()
|
2021-01-11 10:08:55 +00:00
|
|
|
}
|
2024-01-11 15:55:26 +00:00
|
|
|
glog.V(0).Infof("%s ReadFromBuffer at %v batch:%d, read bytes:%v batch:%d", readerName, lastReadPosition, lastReadPosition.BatchIndex, readSize, batchIndex)
|
2020-04-20 06:37:04 +00:00
|
|
|
if bytesBuf == nil {
|
2024-01-08 08:03:08 +00:00
|
|
|
if batchIndex >= 0 {
|
|
|
|
lastReadPosition = NewMessagePosition(lastReadPosition.UnixNano(), batchIndex)
|
|
|
|
}
|
2022-05-30 23:16:23 +00:00
|
|
|
if stopTsNs != 0 {
|
|
|
|
isDone = true
|
|
|
|
return
|
|
|
|
}
|
2020-04-20 06:37:04 +00:00
|
|
|
if waitForDataFn() {
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := bytesBuf.Bytes()
|
2024-01-08 08:03:08 +00:00
|
|
|
// fmt.Printf("ReadFromBuffer %s by %v size %d\n", readerName, lastReadPosition, len(buf))
|
2020-04-20 06:37:04 +00:00
|
|
|
|
|
|
|
batchSize := 0
|
|
|
|
|
|
|
|
for pos := 0; pos+4 < len(buf); {
|
|
|
|
|
|
|
|
size := util.BytesToUint32(buf[pos : pos+4])
|
2020-09-09 18:21:23 +00:00
|
|
|
if pos+4+int(size) > len(buf) {
|
|
|
|
err = ResumeError
|
2024-01-11 15:55:26 +00:00
|
|
|
glog.Errorf("LoopProcessLogData: %s read buffer %v read %d entries [%d,%d) from [0,%d)", readerName, lastReadPosition, batchSize, pos, pos+int(size)+4, len(buf))
|
2020-09-09 18:21:23 +00:00
|
|
|
return
|
|
|
|
}
|
2020-04-20 06:37:04 +00:00
|
|
|
entryData := buf[pos+4 : pos+4+int(size)]
|
|
|
|
|
|
|
|
logEntry := &filer_pb.LogEntry{}
|
|
|
|
if err = proto.Unmarshal(entryData, logEntry); err != nil {
|
2022-07-02 05:43:25 +00:00
|
|
|
glog.Errorf("unexpected unmarshal mq_pb.Message: %v", err)
|
2020-04-20 06:37:04 +00:00
|
|
|
pos += 4 + int(size)
|
|
|
|
continue
|
|
|
|
}
|
2022-05-30 22:25:21 +00:00
|
|
|
if stopTsNs != 0 && logEntry.TsNs > stopTsNs {
|
|
|
|
isDone = true
|
2024-01-11 15:55:26 +00:00
|
|
|
println("stopTsNs", stopTsNs, "logEntry.TsNs", logEntry.TsNs)
|
2022-05-30 22:25:21 +00:00
|
|
|
return
|
2020-04-20 06:37:04 +00:00
|
|
|
}
|
2024-01-08 08:03:08 +00:00
|
|
|
lastReadPosition = NewMessagePosition(logEntry.TsNs, batchIndex)
|
2020-04-20 06:37:04 +00:00
|
|
|
|
|
|
|
if err = eachLogDataFn(logEntry); err != nil {
|
2024-01-11 15:55:26 +00:00
|
|
|
glog.Errorf("LoopProcessLogData: %s process log entry %d %v: %v", readerName, batchSize+1, logEntry, err)
|
2020-04-20 06:37:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pos += 4 + int(size)
|
|
|
|
batchSize++
|
2024-01-11 15:55:26 +00:00
|
|
|
entryCounter++
|
2021-06-27 12:51:28 +00:00
|
|
|
|
2020-04-20 06:37:04 +00:00
|
|
|
}
|
|
|
|
|
2024-01-11 15:55:26 +00:00
|
|
|
glog.V(0).Infof("%s sent messages ts[%+v,%+v] size %d\n", readerName, startPosition, lastReadPosition, batchSize)
|
2020-04-20 06:37:04 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 00:48:06 +00:00
|
|
|
}
|