In the parent ticket, information about thumbnail requests is being moved from the upload cluster to text. This means queries like:
SELECT ... FROM wmf.webrequest WHERE webrequest_source = 'upload' AND ... // Logic that expects to include thumbnails
needs to change, temporarily, to remove the webrequest_source line, as thumbnail information will be split across clusters during the rollout of the change.
Then, once that is done, we can reintroduce the line with webrequest_source = 'text'.
The most obvious example is the mediarequest pipeline, which is tracked in T431475.
In this ticket, we should look for the above pattern in other pipelines under analytics-refinery and migrate them, if any.