[skip ci] Fix typo in datanode recovery design doc (#11439)

Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
pull/11444/head
edward.zeng 2021-11-08 18:51:08 +08:00 committed by GitHub
parent 34b535a678
commit 27eeb53703
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ The detailed design can be found at [datanode flowgraph recovery design](datanod
After DataNode subscribes to a stateful vchannel, DataNode starts to work, or more specifically, flowgraph starts to work.
Vchannel is stateful because we don't want to process twice what's already processed. And a "processed" message means its
already persistant. In DataNode's terminology, a message is processed if it's been flushed.
already persistent. In DataNode's terminology, a message is processed if it's been flushed.
DataCoord tells DataNode stateful vchannel info through RPC `WatchDmChannels`, so that DataNode won't process
the same messages over and over again. So flowgraph needs ability to consume messages in the middle of a vchannel.