For starters, I'm not sure whether it's really necessary to test which tiles are used. I suspect it may add overhead. I would also recommend testing this on a small sample of the data first, if you limit the DGN reader to say the first 1000 features you can test whether this is working before letting it run through the entire set of 1M features.
If you make sure the shapefile gets read first and set the Clipper's 'Clipper Type' parameter to Clippers First you'll be able to more quickly work through the data, that way it doesn't need to chache all data before it can start clipping.
In your sample you've set the accumulation mode to 'Only use Clipper', that means you'll lose all original DGN attributes. If that's what you want then fine, otherwise maybe change it to one of the other options.
The attribute KACHEL is coming out of the Clipper, so you should be able to fan out on that. You just need to send the original tiles to the same writer, which should have that same attribute. Hope this helps.