Ah, there it is, in archive_day_rainRate. I had to change from hex to int, and included maxtime so you can see the corresponding archive records.
sqlite> select dateTime, datetime(dateTime, 'unixepoch', 'localtime'), rain, rainRate from archive where rainRate==0xffff;
sqlite> select dateTime, datetime(dateTime, 'unixepoch', 'localtime'), min, max from archive_day_rainRate where max==0xffff;
sqlite> select dateTime, datetime(dateTime, 'unixepoch', 'localtime'), min, max, maxtime, datetime(maxtime, 'unixepoch', 'localtime') from archive_day_rainRate where max > 10;
dateTime datetime(dateTime, 'unixepoch', 'localtime') min max maxtime datetime(maxtime, 'unixepoch', 'localtime')
---------- -------------------------------------------- ---------- ---------- ---------- -------------------------------------------
1572494400 2019-10-31 00:00:00 0.0 24.0 1572573900 2019-10-31 22:05:00
1581051600 2020-02-07 00:00:00 0.0 11.76 1581081900 2020-02-07 08:25:00
1688356800 2023-07-03 00:00:00 0.0 655.35 1688357458 2023-07-03 00:10:58
Still not finding any smoking gun in archive though.
sqlite> select dateTime, datetime(dateTime, 'unixepoch', 'localtime'), rain, rainRate from archive where rainRate > 10;
dateTime datetime(dateTime, 'unixepoch', 'localtime') rain rainRate
---------- -------------------------------------------- ---------- ----------
1572573900 2019-10-31 22:05:00 0.37 24.0
1581081900 2020-02-07 08:25:00 0.19 11.76
The records webpage says the 655.35 record occurred at 00:10 local time on 7/3/23, but there's nothing interesting there in archive.
sqlite> select dateTime,datetime(dateTime, 'unixepoch', 'localtime'),barometer,outTemp,outHumidity,rain,rainRate from archive where dateTime > 1688356000 and dateTime < 1688361500;
dateTime datetime(dateTime, 'unixepoch', 'localtime') barometer outTemp outHumidity rain rainRate
---------- -------------------------------------------- ---------- ---------- ----------- ---------- ----------
1688356200 2023-07-02 23:50:00 29.879 72.8 96.0 0.0 0.0
1688356500 2023-07-02 23:55:00 29.875 72.8 96.0 0.0 0.0
1688356800 2023-07-03 00:00:00 29.874 72.8 96.0 0.0 0.0
1688357100 2023-07-03 00:05:00 29.875 72.8 96.0 0.0 0.0
1688357400 2023-07-03 00:10:00 29.876 72.8 96.0 0.0 0.0
1688357700 2023-07-03 00:15:00 29.879 72.8 96.0 0.0 0.0
1688358000 2023-07-03 00:20:00 29.879 0.0 0.0
1688358300 2023-07-03 00:25:00 29.875 0.0 0.0
1688358600 2023-07-03 00:30:00 29.873 0.0 0.0
1688358900 2023-07-03 00:35:00 29.875 0.0 0.0
1688359200 2023-07-03 00:40:00 29.872 0.0 0.0
1688359500 2023-07-03 00:45:00 29.868 72.6 0.0 0.0
1688359800 2023-07-03 00:50:00 29.867 72.7 97.0 0.0 0.0
1688360100 2023-07-03 00:55:00 29.866 72.8 97.0 0.0 0.0
1688360400 2023-07-03 01:00:00 29.865 72.8 97.0 0.0 0.0
1688360700 2023-07-03 01:05:00 29.866 72.8 97.0 0.0 0.0
1688361000 2023-07-03 01:10:00 29.867 72.8 97.0 0.0 0.0
1688361300 2023-07-03 01:15:00 29.869 72.8 97.0 0.0 0.0