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
For MPPTask with table scan, if some regions are not in current TiFlash node, we use CoprocessorReader to pull the data from other TiFlash nodes. Current implementation will start coprocessor read immediately after CoprocessorReader is constructed. After #4044 we introduce a scheduler for MPP queries, a MPP task should only get started after it is scheduled, since CoprocessorReader is part of mpp task, we should make sure that the coprocessor read should not get started before related MPPTask get scheduled.
The text was updated successfully, but these errors were encountered:
Enhancement
For MPPTask with table scan, if some regions are not in current TiFlash node, we use CoprocessorReader to pull the data from other TiFlash nodes. Current implementation will start coprocessor read immediately after
CoprocessorReader
is constructed. After #4044 we introduce a scheduler for MPP queries, a MPP task should only get started after it is scheduled, sinceCoprocessorReader
is part of mpp task, we should make sure that the coprocessor read should not get started before related MPPTask get scheduled.The text was updated successfully, but these errors were encountered: