You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when a task try to read the data from a stream, if it cannot read more the data from the stream, it consider the task is finished. This strategy is
correct for stream like hdfs , S3. But it is not correct for stream like kafka , since the data can be avaiable after a period of time. How should we handle this situation.
In order to get the best performance , we should have an executor dedicate to a stream or task. This should avoid the task switch. But we need to have enough machine and thread to dedicate an executor to a thread or we switch the task when it complete only. Should we update the api, configuration to support different way of switching the task.
correct for stream like hdfs , S3. But it is not correct for stream like kafka , since the data can be avaiable after a period of time. How should we handle this situation.
@smorin @KingOfPoptart