-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce dedicated event publisher per document (#1052)
Before: - PushPullChanges and WatchDocument routines directly published events - Event publishing was not controllable per document - Network issues could block event publishing routines This change introduces a dedicated event publisher per document. - Centralize event publishing control - Prevent publishing routines from being blocked - Future improvements: Event throttling, Duplicate event prevention --------- Co-authored-by: Yourim Cha <yourim.cha@navercorp.com>
- Loading branch information
1 parent
4485a28
commit 6c15a3b
Showing
11 changed files
with
451 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/* | ||
* Copyright 2024 The Yorkie Authors. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package memory | ||
|
||
import ( | ||
"strconv" | ||
gosync "sync" | ||
"sync/atomic" | ||
time "time" | ||
|
||
"go.uber.org/zap" | ||
|
||
"github.com/yorkie-team/yorkie/server/backend/sync" | ||
"github.com/yorkie-team/yorkie/server/logging" | ||
) | ||
|
||
var id loggerID | ||
|
||
type loggerID int32 | ||
|
||
func (c *loggerID) next() string { | ||
next := atomic.AddInt32((*int32)(c), 1) | ||
return "p" + strconv.Itoa(int(next)) | ||
} | ||
|
||
// BatchPublisher is a publisher that publishes events in batch. | ||
type BatchPublisher struct { | ||
logger *zap.SugaredLogger | ||
mutex gosync.Mutex | ||
events []sync.DocEvent | ||
|
||
window time.Duration | ||
closeChan chan struct{} | ||
subs *Subscriptions | ||
} | ||
|
||
// NewBatchPublisher creates a new BatchPublisher instance. | ||
func NewBatchPublisher(subs *Subscriptions, window time.Duration) *BatchPublisher { | ||
bp := &BatchPublisher{ | ||
logger: logging.New(id.next()), | ||
window: window, | ||
closeChan: make(chan struct{}), | ||
subs: subs, | ||
} | ||
|
||
go bp.processLoop() | ||
return bp | ||
} | ||
|
||
// Publish adds the given event to the batch. If the batch is full, it publishes | ||
// the batch. | ||
func (bp *BatchPublisher) Publish(event sync.DocEvent) { | ||
bp.mutex.Lock() | ||
defer bp.mutex.Unlock() | ||
|
||
// TODO(hackerwins): If DocumentChangedEvent is already in the batch, we don't | ||
// need to add it again. | ||
bp.events = append(bp.events, event) | ||
} | ||
|
||
func (bp *BatchPublisher) processLoop() { | ||
ticker := time.NewTicker(bp.window) | ||
defer ticker.Stop() | ||
|
||
for { | ||
select { | ||
case <-ticker.C: | ||
bp.publish() | ||
case <-bp.closeChan: | ||
return | ||
} | ||
} | ||
} | ||
|
||
func (bp *BatchPublisher) publish() { | ||
bp.mutex.Lock() | ||
|
||
if len(bp.events) == 0 { | ||
bp.mutex.Unlock() | ||
return | ||
} | ||
|
||
events := bp.events | ||
bp.events = nil | ||
|
||
bp.mutex.Unlock() | ||
|
||
if logging.Enabled(zap.DebugLevel) { | ||
bp.logger.Infof( | ||
"Publishing batch of %d events for document %s", | ||
len(bp.events), | ||
bp.subs.docKey, | ||
) | ||
} | ||
|
||
for _, sub := range bp.subs.Values() { | ||
for _, event := range events { | ||
if sub.Subscriber().Compare(event.Publisher) == 0 { | ||
continue | ||
} | ||
|
||
if ok := sub.Publish(event); !ok { | ||
bp.logger.Infof( | ||
"Publish(%s,%s) to %s timeout or closed", | ||
event.Type, | ||
event.Publisher, | ||
sub.Subscriber(), | ||
) | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Close stops the batch publisher | ||
func (bp *BatchPublisher) Close() { | ||
close(bp.closeChan) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.