Yeah, sorry about that. It's a temporary hack to keep crt.sh afloat while I finish working on a bunch of other changes (that I'm not quite ready to announce yet).
Too many people were doing too many
https://crt.sh/ searches for domains with lots of certificates, and the underlying SQL queries were attempting to retrieve all of the results every time. These long-running queries were hurting performance for everyone and were usually being killed off by the database replication before they could complete.
The temporary hack limits the number of certificate_identity records considered by the query to a maximum of 10000. You can see the SQL here:
It's a hack because there's no control over _which_ 10000 certificate_identity records are considered (so presumably the %.
google.com search is picking up 10000 records relating to expired certs, which are then all being filtered out). There aren't currently any suitable indexes, so this is the best I can do for the time being, I'm afraid.