This is an automated email from the ASF dual-hosted git repository.
xushiyan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 4f5cad8029 [MINOR][RFC-53] Fix typos (#5764)
4f5cad8029 is described below
commit 4f5cad80293c9ac6232593f3c968c1369bb02c4c
Author: YueZhang <[email protected]>
AuthorDate: Tue Jun 7 08:28:28 2022 +0800
[MINOR][RFC-53] Fix typos (#5764)
Co-authored-by: yuezhang <[email protected]>
---
rfc/rfc-53/rfc-53.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rfc/rfc-53/rfc-53.md b/rfc/rfc-53/rfc-53.md
index b59768ab9e..d4d739a883 100644
--- a/rfc/rfc-53/rfc-53.md
+++ b/rfc/rfc-53/rfc-53.md
@@ -92,7 +92,7 @@ The Disruptor is a library that provides a concurrent ring
buffer data structure
We use the Disruptor multi-producer single-consumer working model:
- Define `DisruptorPublisher` to register producers into Disruptor and control
the produce behaviors including life cycle.
- Define `DisruptorMessageHandler` to register consumers into Disruptor and
write consumption data from disruptor to hudi data file.
-For example we will clear clear out the event after processing it to avoid to
avoid unnecessary memory and GC pressure
+For example we will clear out the event after processing it to avoid
unnecessary memory and GC pressure
- Define `HoodieDisruptorEvent` as the carrier of the hoodie message
- Define `HoodieDisruptorEventFactory`: Pre-populate all the hoodie events to
fill the RingBuffer.
We can use `HoodieDisruptorEventFactory` to create `HoodieDisruptorEvent`
storing the data for sharing during exchange or parallel coordination of an
event.