mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-17 12:46:59 +00:00
Blanking preferred kept route-by-key reads from dialing a flagged owner first, but withFilerClientFailover always re-adds the current filer, so when the owner is the gateway's current filer it stayed in the candidate list and got dialed anyway. Treat a recently-unreachable filer as unhealthy in the health partition so it is deferred to the last-resort tail instead of tried before healthy replicas; preferred is still tried first, and a live owner is unaffected.
153 lines
5.2 KiB
Go
153 lines
5.2 KiB
Go
package s3api
|
|
|
|
import (
|
|
"context"
|
|
"encoding/base64"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3err"
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
)
|
|
|
|
var _ = filer_pb.FilerClient(&S3ApiServer{})
|
|
|
|
func (s3a *S3ApiServer) WithFilerClient(streamingMode bool, fn func(filer_pb.SeaweedFilerClient) error) error {
|
|
// Use filerClient for proper connection management and failover
|
|
if s3a.filerClient != nil {
|
|
return s3a.withFilerClientFailover("", streamingMode, fn)
|
|
}
|
|
|
|
// Fallback to direct connection if filerClient not initialized
|
|
// This should only happen during initialization or testing
|
|
return pb.WithGrpcClient(context.Background(), streamingMode, s3a.randomClientId, func(grpcConnection *grpc.ClientConn) error {
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
|
return fn(client)
|
|
}, s3a.getFilerAddress().ToGrpcAddress(), false, s3a.option.GrpcDialOption)
|
|
|
|
}
|
|
|
|
// withFilerClientFailover runs fn against preferred (if set) first, then the
|
|
// remaining filers (current, then the rest) with healthy ones before unhealthy.
|
|
// Failover is for transport errors only: a reached filer's ErrNotFound is
|
|
// authoritative (no
|
|
// fan-out, no resurrecting a peer's not-yet-replicated tombstone). preferred lets a
|
|
// caller route to a key's ring owner for read-after-write; it may be a filer outside
|
|
// the static list (the bookkeeping no-ops for untracked addresses). A failover
|
|
// updates the current filer; a preferred read does not, as its owner is per-key.
|
|
func (s3a *S3ApiServer) withFilerClientFailover(preferred pb.ServerAddress, streamingMode bool, fn func(filer_pb.SeaweedFilerClient) error) error {
|
|
currentFiler := s3a.filerClient.GetCurrentFiler()
|
|
|
|
candidates := make([]pb.ServerAddress, 0, 2+len(s3a.option.Filers))
|
|
seen := make(map[pb.ServerAddress]bool)
|
|
addCandidate := func(filer pb.ServerAddress) {
|
|
if filer == "" || seen[filer] {
|
|
return
|
|
}
|
|
seen[filer] = true
|
|
candidates = append(candidates, filer)
|
|
}
|
|
addCandidate(preferred)
|
|
addCandidate(currentFiler)
|
|
for _, filer := range s3a.filerClient.GetAllFilers() {
|
|
addCandidate(filer)
|
|
}
|
|
|
|
// preferred (the routed owner) is tried first even when health-flagged, so a
|
|
// replica's authoritative NotFound can't mask a write that only reached the owner.
|
|
// A recently-unreachable filer counts as unhealthy, deferring a dead owner that is
|
|
// also the current filer to the tail rather than dialing it before healthy replicas.
|
|
var healthy, unhealthy []pb.ServerAddress
|
|
for _, filer := range candidates {
|
|
if filer == preferred {
|
|
continue
|
|
}
|
|
if s3a.filerClient.ShouldSkipUnhealthyFiler(filer) || s3a.ownerRecentlyUnreachable(filer) {
|
|
unhealthy = append(unhealthy, filer)
|
|
} else {
|
|
healthy = append(healthy, filer)
|
|
}
|
|
}
|
|
ordered := make([]pb.ServerAddress, 0, len(candidates))
|
|
if preferred != "" {
|
|
ordered = append(ordered, preferred)
|
|
}
|
|
ordered = append(ordered, healthy...)
|
|
ordered = append(ordered, unhealthy...)
|
|
|
|
var lastErr error
|
|
for _, filer := range ordered {
|
|
err := pb.WithGrpcClient(context.Background(), streamingMode, s3a.randomClientId, func(grpcConnection *grpc.ClientConn) error {
|
|
return fn(filer_pb.NewSeaweedFilerClient(grpcConnection))
|
|
}, filer.ToGrpcAddress(), false, s3a.option.GrpcDialOption)
|
|
|
|
if err == nil {
|
|
s3a.filerClient.RecordFilerSuccess(filer)
|
|
if filer != currentFiler && filer != preferred {
|
|
s3a.filerClient.SetCurrentFiler(filer)
|
|
glog.V(1).Infof("WithFilerClient: failover from %s to %s succeeded", currentFiler, filer)
|
|
}
|
|
return nil
|
|
}
|
|
if errors.Is(err, filer_pb.ErrNotFound) {
|
|
return err
|
|
}
|
|
|
|
s3a.filerClient.RecordFilerFailure(filer)
|
|
// A preferred owner is often outside the static filer list, where the health
|
|
// tracking above no-ops; flag it so route-by-key reads skip it briefly.
|
|
if filer == preferred {
|
|
s3a.markOwnerUnreachable(filer)
|
|
}
|
|
glog.V(2).Infof("WithFilerClient: filer %s failed: %v", filer, err)
|
|
lastErr = err
|
|
}
|
|
|
|
if lastErr == nil {
|
|
lastErr = fmt.Errorf("no filer available")
|
|
}
|
|
return fmt.Errorf("all filers failed, last error: %w", lastErr)
|
|
}
|
|
|
|
func (s3a *S3ApiServer) AdjustedUrl(location *filer_pb.Location) string {
|
|
return location.Url
|
|
}
|
|
|
|
func (s3a *S3ApiServer) GetDataCenter() string {
|
|
return s3a.option.DataCenter
|
|
}
|
|
|
|
func writeSuccessResponseXML(w http.ResponseWriter, r *http.Request, response interface{}) {
|
|
s3err.WriteXMLResponse(w, r, http.StatusOK, response)
|
|
s3err.PostLog(r, http.StatusOK, s3err.ErrNone)
|
|
}
|
|
|
|
func writeSuccessResponseXMLBytes(w http.ResponseWriter, r *http.Request, response []byte) {
|
|
s3err.WriteResponse(w, r, http.StatusOK, response, s3err.MimeXML)
|
|
s3err.PostLog(r, http.StatusOK, s3err.ErrNone)
|
|
}
|
|
|
|
func writeSuccessResponseEmpty(w http.ResponseWriter, r *http.Request) {
|
|
s3err.WriteEmptyResponse(w, r, http.StatusOK)
|
|
}
|
|
|
|
func writeFailureResponse(w http.ResponseWriter, r *http.Request, errCode s3err.ErrorCode) {
|
|
s3err.WriteErrorResponse(w, r, errCode)
|
|
}
|
|
|
|
func validateContentMd5(h http.Header) ([]byte, error) {
|
|
md5B64, ok := h["Content-Md5"]
|
|
if ok {
|
|
if md5B64[0] == "" {
|
|
return nil, fmt.Errorf("Content-Md5 header set to empty value")
|
|
}
|
|
return base64.StdEncoding.DecodeString(md5B64[0])
|
|
}
|
|
return []byte{}, nil
|
|
}
|