prclin commented on code in PR #9524:
URL: https://github.com/apache/seatunnel/pull/9524#discussion_r2181530003
##########
seatunnel-engine/seatunnel-engine-storage/imap-storage-plugins/imap-storage-file/src/main/java/org/apache/seatunnel/engine/imap/storage/file/IMapFileStorage.java:
##########
@@ -221,7 +210,6 @@ public Set<Object> deleteAll(Collection<Object> keys) {
try {
IMapFileData data = buildDeleteIMapFileData(key);
long requestId = sendToDisruptorQueue(data,
WALEventType.APPEND);
- walDisruptor.tryAppendPublish(data, requestId);
Review Comment:
It repeatedly sent the event, sendToDisruptorQueue had sent event to
disruptor by WALDisruptor.tryPublish method,and tryAppendPublish call
tryPublish too; so sendToDisruptorQueue and tryAppendPublish do the same
behavior.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]