From 192672f1a5b682873f3a1f700710d716fcd94e41 Mon Sep 17 00:00:00 2001 From: Suresh Srinivas Date: Mon, 16 Aug 2021 15:58:44 -0700 Subject: [PATCH] Add ingestion docs to implement a connector --- .../developer/build-a-connector/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/open-source-community/developer/build-a-connector/README.md b/docs/open-source-community/developer/build-a-connector/README.md index 78d4f907ed6..2523b855912 100644 --- a/docs/open-source-community/developer/build-a-connector/README.md +++ b/docs/open-source-community/developer/build-a-connector/README.md @@ -19,8 +19,8 @@ It consists of [Source](./source.md) ,[Processor](./processor.md), [Sink](./sink Workflow execution happens in serial fashion. -1. It runs **source** component first. Source component retrieves a record from external sources and emits the record downstream. -2. if **processor** component is configured it sends the record to processor first +1. It runs **source** component first. **Source** component retrieves a record from external sources and emits the record downstream. +2. if the **processor** component is configured **workflow** sends the record to processor next 3. There can be multiple processors attached to the workflow it passes them in the order they are configurd 4. Once the **processors** finished , it sends the modified to record to Sink. 5. The above steps repeats per record emitted from source component