The relation between task-canal/task-canal-adapter and task-syncer #155
-
After read the docs, i know that the task-canal/task-canal-adapter modules are used to sync schedule data to compass. So, my question is what's the difference between task-canal-adapter and task-syncer? why there are two diff sync logic in two modules? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
(Question 1)Task-canal-adapter synchronizes the raw data to compass locally while task-syncer synchronize the bin log data as event to trigger work flow. And one important point there is initialization in task-syncer module which will synchize data too but it will convert to compass table data but not origin scheduler raw table data. (Question 2) Actually it is best to combine two modules into one and we have not optimize it yet since it needs more time. |
Beta Was this translation helpful? Give feedback.
(Question 1)Task-canal-adapter synchronizes the raw data to compass locally while task-syncer synchronize the bin log data as event to trigger work flow. And one important point there is initialization in task-syncer module which will synchize data too but it will convert to compass table data…