Adjust rename events metadata format (#8854)
* rename metadata events * fix subscription filter to use NewEntry.Name for rename path matching The server-side subscription filter constructed the new path using OldEntry.Name instead of NewEntry.Name when checking if a rename event's destination matches the subscriber's path prefix. This could cause events to be incorrectly filtered when a rename changes the file name. * fix bucket events to handle rename of bucket directories onBucketEvents only checked IsCreate and IsDelete. A bucket directory rename via AtomicRenameEntry now emits a single rename event (both OldEntry and NewEntry non-nil), which matched neither check. Handle IsRename by deleting the old bucket and creating the new one. * fix replicator to handle rename events across directory boundaries Two issues fixed: 1. The replicator filtered events by checking if the key (old path) was under the source directory. Rename events now use the old path as key, so renames from outside into the watched directory were silently dropped. Now both old and new paths are checked, and cross-boundary renames are converted to create or delete. 2. NewParentPath was passed to the sink without remapping to the sink's target directory structure, causing the sink to write entries at the wrong location. Now NewParentPath is remapped alongside the key. * fix filer sync to handle rename events crossing directory boundaries The early directory-prefix filter only checked resp.Directory (old parent). Rename events now carry the old parent as Directory, so renames from outside the source path into it were dropped before reaching the existing cross-boundary handling logic. Check both old and new directories against sourcePath and excludePaths so the downstream old-key/new-key logic can properly convert these to create or delete operations. * fix metadata event path matching * fix metadata event consumers for rename targets * Fix replication rename target keys Logical rename events now reach replication sinks with distinct source and target paths.\n\nHandle non-filer sinks as delete-plus-create on the translated target key, and make the rename fallback path create at the translated target key too.\n\nAdd focused tests covering non-filer renames, filer rename updates, and the fallback path.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix filer sync rename path scoping Use directory-boundary matching instead of raw prefix checks when classifying source and target paths during filer sync.\n\nAlso apply excludePaths per side so renames across excluded boundaries downgrade cleanly to create/delete instead of being misclassified as in-scope updates.\n\nAdd focused tests for boundary matching and rename classification.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix replicator directory boundary checks Use directory-boundary matching instead of raw prefix checks when deciding whether a source or target path is inside the watched tree or an excluded subtree.\n\nThis prevents sibling paths such as /foo and /foobar from being misclassified during rename handling, and preserves the earlier rename-target-key fix.\n\nAdd focused tests for boundary matching and rename classification across sibling/excluded directories.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix etc-remote rename-out handling Use boundary-safe source/target directory membership when classifying metadata events under DirectoryEtcRemote.\n\nThis prevents rename-out events from being processed as config updates, while still treating them as removals where appropriate for the remote sync and remote gateway command paths.\n\nAdd focused tests for update/removal classification and sibling-prefix handling.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Defer rename events until commit Queue logical rename metadata events during atomic and streaming renames and publish them only after the transaction commits successfully.\n\nThis prevents subscribers from seeing delete or logical rename events for operations that later fail during delete or commit.\n\nAlso serialize notification.Queue swaps in rename tests and add failure-path coverage.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Skip descendant rename target lookups Avoid redundant target lookups during recursive directory renames once the destination subtree is known absent.\n\nThe recursive move path now inserts known-absent descendants directly, and the test harness exercises prefixed directory listing so the optimization is covered by a directory rename regression test.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Tighten rename review tests Return filer_pb.ErrNotFound from the bucket tracking store test stub so it follows the FilerStore contract, and add a webhook filter case for same-name renames across parent directories.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix HardLinkId format verb in InsertEntryKnownAbsent error HardLinkId is a byte slice. %d prints each byte as a decimal number which is not useful for an identifier. Use %x to match the log line two lines above. * only skip descendant target lookup when source and dest use same store moveFolderSubEntries unconditionally passed skipTargetLookup=true for every descendant. This is safe when all paths resolve to the same underlying store, but with path-specific store configuration a child's destination may map to a different backend that already holds an entry at that path. Use FilerStoreWrapper.SameActualStore to check per-child and fall back to the full CreateEntry path when stores differ. * add nil and create edge-case tests for metadata event scope helpers * extract pathIsEqualOrUnder into util.IsEqualOrUnder Identical implementations existed in both replication/replicator.go and command/filer_sync.go. Move to util.IsEqualOrUnder (alongside the existing FullPath.IsUnder) and remove the duplicates. * use MetadataEventTargetDirectory for new-side directory in filer sync The new-side directory checks and sourceNewKey computation used message.NewParentPath directly. If NewParentPath were empty (legacy events, older filer versions during rolling upgrades), sourceNewKey would be wrong (/filename instead of /dir/filename) and the UpdateEntry parent path rewrite would panic on slice bounds. Derive targetDir once from MetadataEventTargetDirectory, which falls back to resp.Directory when NewParentPath is empty, and use it consistently for all new-side checks and the sink parent path.
This commit is contained in:
@@ -5,6 +5,7 @@ import (
|
||||
|
||||
"github.com/seaweedfs/seaweedfs/weed/glog"
|
||||
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
||||
"github.com/seaweedfs/seaweedfs/weed/util"
|
||||
)
|
||||
|
||||
type filter struct {
|
||||
@@ -40,25 +41,37 @@ func newFilter(cfg *config) *filter {
|
||||
}
|
||||
|
||||
func (f *filter) shouldPublish(key string, notification *filer_pb.EventNotification) bool {
|
||||
if !f.matchesPath(key) {
|
||||
if !f.matchesPath(key, notification) {
|
||||
return false
|
||||
}
|
||||
|
||||
eventType := detectEventType(notification)
|
||||
eventType := detectEventType(key, notification)
|
||||
|
||||
return f.eventTypes[eventType]
|
||||
}
|
||||
|
||||
func (f *filter) matchesPath(key string) bool {
|
||||
func (f *filter) matchesPath(key string, notification *filer_pb.EventNotification) bool {
|
||||
if len(f.pathPrefixes) == 0 {
|
||||
return true
|
||||
}
|
||||
|
||||
if f.matchesAnyPathPrefix(key) {
|
||||
return true
|
||||
}
|
||||
|
||||
if notification != nil && notification.NewEntry != nil && notification.NewParentPath != "" {
|
||||
newKey := string(util.FullPath(notification.NewParentPath).Child(notification.NewEntry.Name))
|
||||
return f.matchesAnyPathPrefix(newKey)
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
func (f *filter) matchesAnyPathPrefix(key string) bool {
|
||||
for _, prefix := range f.pathPrefixes {
|
||||
if strings.HasPrefix(key, prefix) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@ import (
|
||||
func TestFilterEventTypes(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
key string
|
||||
eventTypes []string
|
||||
notification *filer_pb.EventNotification
|
||||
expectedType eventType
|
||||
@@ -16,6 +17,7 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
}{
|
||||
{
|
||||
name: "create event - allowed",
|
||||
key: "/test/test.txt",
|
||||
eventTypes: []string{"create", "delete"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
NewEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
@@ -25,6 +27,7 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
},
|
||||
{
|
||||
name: "create event - not allowed",
|
||||
key: "/test/test.txt",
|
||||
eventTypes: []string{"delete", "update"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
NewEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
@@ -34,6 +37,7 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
},
|
||||
{
|
||||
name: "delete event - allowed",
|
||||
key: "/test/test.txt",
|
||||
eventTypes: []string{"create", "delete"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
OldEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
@@ -43,16 +47,19 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
},
|
||||
{
|
||||
name: "update event - allowed",
|
||||
key: "/test/test.txt",
|
||||
eventTypes: []string{"update"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
OldEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
NewEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
OldEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
NewEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
NewParentPath: "/test",
|
||||
},
|
||||
expectedType: eventTypeUpdate,
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "rename event - allowed",
|
||||
key: "/old/path/old.txt",
|
||||
eventTypes: []string{"rename"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
OldEntry: &filer_pb.Entry{Name: "old.txt"},
|
||||
@@ -62,8 +69,21 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
expectedType: eventTypeRename,
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "rename event same name different parent - allowed",
|
||||
key: "/old/path/file.txt",
|
||||
eventTypes: []string{"rename"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
OldEntry: &filer_pb.Entry{Name: "file.txt"},
|
||||
NewEntry: &filer_pb.Entry{Name: "file.txt"},
|
||||
NewParentPath: "/new/path",
|
||||
},
|
||||
expectedType: eventTypeRename,
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "rename event - not allowed",
|
||||
key: "/old/path/old.txt",
|
||||
eventTypes: []string{"create", "delete", "update"},
|
||||
notification: &filer_pb.EventNotification{
|
||||
OldEntry: &filer_pb.Entry{Name: "old.txt"},
|
||||
@@ -75,6 +95,7 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
},
|
||||
{
|
||||
name: "all events allowed when empty",
|
||||
key: "/test/test.txt",
|
||||
eventTypes: []string{},
|
||||
notification: &filer_pb.EventNotification{
|
||||
NewEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
@@ -89,12 +110,12 @@ func TestFilterEventTypes(t *testing.T) {
|
||||
cfg := &config{eventTypes: tt.eventTypes}
|
||||
f := newFilter(cfg)
|
||||
|
||||
eventType := detectEventType(tt.notification)
|
||||
eventType := detectEventType(tt.key, tt.notification)
|
||||
if eventType != tt.expectedType {
|
||||
t.Errorf("detectEventType() = %v, want %v", eventType, tt.expectedType)
|
||||
}
|
||||
|
||||
shouldPublish := f.shouldPublish("/test/path", tt.notification)
|
||||
shouldPublish := f.shouldPublish(tt.key, tt.notification)
|
||||
if shouldPublish != tt.shouldPublish {
|
||||
t.Errorf("shouldPublish() = %v, want %v", shouldPublish, tt.shouldPublish)
|
||||
}
|
||||
@@ -106,60 +127,82 @@ func TestFilterPathPrefixes(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
pathPrefixes []string
|
||||
eventTypes []string
|
||||
key string
|
||||
notification *filer_pb.EventNotification
|
||||
shouldPublish bool
|
||||
}{
|
||||
{
|
||||
name: "matches single prefix",
|
||||
pathPrefixes: []string{"/data/"},
|
||||
eventTypes: []string{"create"},
|
||||
key: "/data/file.txt",
|
||||
notification: &filer_pb.EventNotification{NewEntry: &filer_pb.Entry{Name: "file.txt"}},
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "matches one of multiple prefixes",
|
||||
pathPrefixes: []string{"/data/", "/logs/", "/tmp/"},
|
||||
eventTypes: []string{"create"},
|
||||
key: "/logs/app.log",
|
||||
notification: &filer_pb.EventNotification{NewEntry: &filer_pb.Entry{Name: "app.log"}},
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "no match",
|
||||
pathPrefixes: []string{"/data/", "/logs/"},
|
||||
eventTypes: []string{"create"},
|
||||
key: "/other/file.txt",
|
||||
notification: &filer_pb.EventNotification{NewEntry: &filer_pb.Entry{Name: "file.txt"}},
|
||||
shouldPublish: false,
|
||||
},
|
||||
{
|
||||
name: "empty prefixes allows all",
|
||||
pathPrefixes: []string{},
|
||||
eventTypes: []string{"create"},
|
||||
key: "/any/path/file.txt",
|
||||
notification: &filer_pb.EventNotification{NewEntry: &filer_pb.Entry{Name: "file.txt"}},
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "exact prefix match",
|
||||
pathPrefixes: []string{"/data"},
|
||||
eventTypes: []string{"create"},
|
||||
key: "/data",
|
||||
notification: &filer_pb.EventNotification{NewEntry: &filer_pb.Entry{Name: "data"}},
|
||||
shouldPublish: true,
|
||||
},
|
||||
{
|
||||
name: "partial match not allowed",
|
||||
pathPrefixes: []string{"/data/"},
|
||||
eventTypes: []string{"create"},
|
||||
key: "/database/file.txt",
|
||||
notification: &filer_pb.EventNotification{NewEntry: &filer_pb.Entry{Name: "file.txt"}},
|
||||
shouldPublish: false,
|
||||
},
|
||||
{
|
||||
name: "rename matches destination prefix",
|
||||
pathPrefixes: []string{"/watched/"},
|
||||
eventTypes: []string{"rename"},
|
||||
key: "/outside/old.txt",
|
||||
notification: &filer_pb.EventNotification{
|
||||
OldEntry: &filer_pb.Entry{Name: "old.txt"},
|
||||
NewEntry: &filer_pb.Entry{Name: "new.txt"},
|
||||
NewParentPath: "/watched",
|
||||
},
|
||||
shouldPublish: true,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
cfg := &config{
|
||||
pathPrefixes: tt.pathPrefixes,
|
||||
eventTypes: []string{"create"},
|
||||
eventTypes: tt.eventTypes,
|
||||
}
|
||||
f := newFilter(cfg)
|
||||
|
||||
notification := &filer_pb.EventNotification{
|
||||
NewEntry: &filer_pb.Entry{Name: "test.txt"},
|
||||
}
|
||||
|
||||
shouldPublish := f.shouldPublish(tt.key, notification)
|
||||
shouldPublish := f.shouldPublish(tt.key, tt.notification)
|
||||
if shouldPublish != tt.shouldPublish {
|
||||
t.Errorf("shouldPublish() = %v, want %v", shouldPublish, tt.shouldPublish)
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ func newWebhookMessage(key string, message proto.Message) *webhookMessage {
|
||||
return nil
|
||||
}
|
||||
|
||||
eventType := string(detectEventType(notification))
|
||||
eventType := string(detectEventType(key, notification))
|
||||
|
||||
return &webhookMessage{
|
||||
Key: key,
|
||||
@@ -157,10 +157,9 @@ func (c *config) validate() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func detectEventType(notification *filer_pb.EventNotification) eventType {
|
||||
func detectEventType(key string, notification *filer_pb.EventNotification) eventType {
|
||||
hasOldEntry := notification.OldEntry != nil
|
||||
hasNewEntry := notification.NewEntry != nil
|
||||
hasNewParentPath := notification.NewParentPath != ""
|
||||
|
||||
if !hasOldEntry && hasNewEntry {
|
||||
return eventTypeCreate
|
||||
@@ -171,7 +170,12 @@ func detectEventType(notification *filer_pb.EventNotification) eventType {
|
||||
}
|
||||
|
||||
if hasOldEntry && hasNewEntry {
|
||||
if hasNewParentPath {
|
||||
oldDir, _ := util.FullPath(key).DirAndName()
|
||||
newDir := notification.NewParentPath
|
||||
if newDir == "" {
|
||||
newDir = oldDir
|
||||
}
|
||||
if oldDir != newDir || notification.OldEntry.Name != notification.NewEntry.Name {
|
||||
return eventTypeRename
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user