seaweedfs/weed/filer/reader_at.go

180 lines
5.5 KiB
Go
Raw Normal View History

2020-09-01 07:21:19 +00:00
package filer
import (
"context"
"fmt"
2020-11-01 10:36:43 +00:00
"io"
"math/rand"
"sync"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2020-11-01 08:58:48 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
2020-04-11 19:45:24 +00:00
"github.com/chrislusf/seaweedfs/weed/util/chunk_cache"
"github.com/chrislusf/seaweedfs/weed/wdclient"
2020-10-11 03:09:43 +00:00
)
type ChunkReadAt struct {
2022-02-26 10:16:47 +00:00
masterClient *wdclient.MasterClient
chunkViews []*ChunkView
readerLock sync.Mutex
fileSize int64
readerCache *ReaderCache
readerPattern *ReaderPattern
lastChunkFid string
}
var _ = io.ReaderAt(&ChunkReadAt{})
var _ = io.Closer(&ChunkReadAt{})
func LookupFn(filerClient filer_pb.FilerClient) wdclient.LookupFileIdFunctionType {
2020-10-04 03:16:42 +00:00
vidCache := make(map[string]*filer_pb.Locations)
2020-10-22 02:28:59 +00:00
var vicCacheLock sync.RWMutex
return func(fileId string) (targetUrls []string, err error) {
2020-10-04 03:16:42 +00:00
vid := VolumeId(fileId)
2020-10-22 02:28:59 +00:00
vicCacheLock.RLock()
2020-10-04 03:16:42 +00:00
locations, found := vidCache[vid]
2020-10-22 02:28:59 +00:00
vicCacheLock.RUnlock()
2020-10-04 03:16:42 +00:00
2020-11-01 08:58:48 +00:00
if !found {
2020-11-01 10:36:43 +00:00
util.Retry("lookup volume "+vid, func() error {
err = filerClient.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
2020-11-01 08:58:48 +00:00
resp, err := client.LookupVolume(context.Background(), &filer_pb.LookupVolumeRequest{
VolumeIds: []string{vid},
})
if err != nil {
return err
}
locations = resp.LocationsMap[vid]
if locations == nil || len(locations.Locations) == 0 {
glog.V(0).Infof("failed to locate %s", fileId)
return fmt.Errorf("failed to locate %s", fileId)
}
vicCacheLock.Lock()
vidCache[vid] = locations
vicCacheLock.Unlock()
return nil
2020-10-04 03:16:42 +00:00
})
2020-11-01 08:58:48 +00:00
return err
})
2020-10-04 03:16:42 +00:00
}
2020-10-10 22:43:22 +00:00
if err != nil {
return nil, err
}
for _, loc := range locations.Locations {
2021-01-28 22:36:29 +00:00
volumeServerAddress := filerClient.AdjustedUrl(loc)
targetUrl := fmt.Sprintf("http://%s/%s", volumeServerAddress, fileId)
targetUrls = append(targetUrls, targetUrl)
}
2020-10-08 06:58:32 +00:00
for i := len(targetUrls) - 1; i > 0; i-- {
j := rand.Intn(i + 1)
targetUrls[i], targetUrls[j] = targetUrls[j], targetUrls[i]
}
return
}
}
func NewChunkReaderAtFromClient(lookupFn wdclient.LookupFileIdFunctionType, chunkViews []*ChunkView, chunkCache chunk_cache.ChunkCache, fileSize int64) *ChunkReadAt {
return &ChunkReadAt{
chunkViews: chunkViews,
fileSize: fileSize,
readerCache: newReaderCache(32, chunkCache, lookupFn),
readerPattern: NewReaderPattern(),
}
}
func (c *ChunkReadAt) Close() error {
2022-02-26 10:16:47 +00:00
c.readerCache.destroy()
return nil
}
func (c *ChunkReadAt) ReadAt(p []byte, offset int64) (n int, err error) {
c.readerPattern.MonitorReadAt(offset, len(p))
c.readerLock.Lock()
defer c.readerLock.Unlock()
2021-05-11 04:47:51 +00:00
// glog.V(4).Infof("ReadAt [%d,%d) of total file size %d bytes %d chunk views", offset, offset+int64(len(p)), c.fileSize, len(c.chunkViews))
2021-01-18 09:14:27 +00:00
return c.doReadAt(p, offset)
}
func (c *ChunkReadAt) doReadAt(p []byte, offset int64) (n int, err error) {
2020-08-18 03:14:40 +00:00
startOffset, remaining := offset, int64(len(p))
2022-02-26 11:06:17 +00:00
var nextChunks []*ChunkView
2020-08-17 23:05:40 +00:00
for i, chunk := range c.chunkViews {
2020-08-18 03:14:40 +00:00
if remaining <= 0 {
break
}
2020-10-04 08:31:04 +00:00
if i+1 < len(c.chunkViews) {
2022-02-26 11:06:17 +00:00
nextChunks = c.chunkViews[i+1:]
2020-10-04 08:31:04 +00:00
}
2020-08-18 03:14:40 +00:00
if startOffset < chunk.LogicOffset {
gap := int(chunk.LogicOffset - startOffset)
2022-01-13 14:20:33 +00:00
glog.V(4).Infof("zero [%d,%d)", startOffset, chunk.LogicOffset)
2020-08-18 07:32:01 +00:00
n += int(min(int64(gap), remaining))
2020-08-18 03:14:40 +00:00
startOffset, remaining = chunk.LogicOffset, remaining-int64(gap)
if remaining <= 0 {
break
}
2020-08-17 04:07:46 +00:00
}
2020-08-16 22:16:46 +00:00
// fmt.Printf(">>> doReadAt [%d,%d), chunk[%d,%d)\n", offset, offset+int64(len(p)), chunk.LogicOffset, chunk.LogicOffset+int64(chunk.Size))
2020-08-18 03:14:40 +00:00
chunkStart, chunkStop := max(chunk.LogicOffset, startOffset), min(chunk.LogicOffset+int64(chunk.Size), startOffset+remaining)
2020-08-17 04:07:46 +00:00
if chunkStart >= chunkStop {
continue
}
2021-05-11 04:47:51 +00:00
// glog.V(4).Infof("read [%d,%d), %d/%d chunk %s [%d,%d)", chunkStart, chunkStop, i, len(c.chunkViews), chunk.FileId, chunk.LogicOffset-chunk.Offset, chunk.LogicOffset-chunk.Offset+int64(chunk.Size))
bufferOffset := chunkStart - chunk.LogicOffset + chunk.Offset
2022-02-26 11:06:17 +00:00
copied, err := c.readChunkSliceAt(p[startOffset-offset:chunkStop-chunkStart+startOffset-offset], chunk, nextChunks, uint64(bufferOffset))
2020-08-17 04:07:46 +00:00
if err != nil {
glog.Errorf("fetching chunk %+v: %v\n", chunk, err)
2022-02-26 10:16:47 +00:00
return copied, err
}
2020-08-17 04:07:46 +00:00
n += copied
2020-08-18 03:20:08 +00:00
startOffset, remaining = startOffset+int64(copied), remaining-int64(copied)
}
2020-08-16 07:49:08 +00:00
2021-05-11 04:47:51 +00:00
// glog.V(4).Infof("doReadAt [%d,%d), n:%v, err:%v", offset, offset+int64(len(p)), n, err)
2020-08-16 07:49:08 +00:00
2020-08-18 15:50:14 +00:00
if err == nil && remaining > 0 && c.fileSize > startOffset {
2020-08-30 05:28:33 +00:00
delta := int(min(remaining, c.fileSize-startOffset))
2020-08-18 07:34:15 +00:00
glog.V(4).Infof("zero2 [%d,%d) of file size %d bytes", startOffset, startOffset+int64(delta), c.fileSize)
2020-08-18 05:46:32 +00:00
n += delta
}
2020-08-18 03:14:40 +00:00
if err == nil && offset+int64(len(p)) >= c.fileSize {
2020-08-16 07:49:08 +00:00
err = io.EOF
}
2020-08-16 22:16:46 +00:00
// fmt.Printf("~~~ filled %d, err: %v\n\n", n, err)
return
}
2022-02-26 11:06:17 +00:00
func (c *ChunkReadAt) readChunkSliceAt(buffer []byte, chunkView *ChunkView, nextChunkViews []*ChunkView, offset uint64) (n int, err error) {
2021-12-23 00:17:30 +00:00
if c.readerPattern.IsRandomMode() {
2022-02-26 10:16:47 +00:00
return c.readerCache.ReadChunkAt(buffer, chunkView.FileId, chunkView.CipherKey, chunkView.IsGzipped, int64(offset), int(chunkView.ChunkSize), chunkView.LogicOffset == 0)
}
2022-02-26 10:16:47 +00:00
n, err = c.readerCache.ReadChunkAt(buffer, chunkView.FileId, chunkView.CipherKey, chunkView.IsGzipped, int64(offset), int(chunkView.ChunkSize), chunkView.LogicOffset == 0)
if c.lastChunkFid != "" && c.lastChunkFid != chunkView.FileId {
if chunkView.Offset == 0 { // start of a new chunk
c.readerCache.UnCache(c.lastChunkFid)
c.readerCache.MaybeCache(nextChunkViews)
2022-02-26 11:06:17 +00:00
}
}
c.lastChunkFid = chunkView.FileId
2020-08-16 22:16:46 +00:00
return
}