Unfortunately, these large outliers come from unrealistic high uncertainties inside the ecoinvent exchanges. In upcoming ecoinvent versions we will correct this by setting a threshold to remove unrealistic high uncertainties, as it is done by others, too.
It is not a perfect solutions, since these values are inherent / original to the ecoinvent database and it would be better that these wrong values get corrected, but it will be a good intermediate solution until these too high uncertainties are updated by ecoinvent.
A threshold could be for example to remove the gsigma (geometric sigma in log-normal) values above 2.5. If you want to remove uncertainties above 2.5 in the mean time, you can run try the following SQL command and check your MCS results:
UPDATE TBL_EXCHANGES
SET PARAMETER2_VALUE = 1.0
WHERE PARAMETER2_VALUE > 2.5
AND DISTRIBUTION_TYPE = 1;