Library.db size more than doubled in latest version

I have the latest Beta installed (Plex Media Server - #673 by chris_decker08 - 1.41.7.9795) and the DB is still growing significantly faster than it ever has. Up until today mine was 250 MB

At 5:05PM US Mountain time it was 246.35 MB. At 8:02 PM US Mountain time it is 278.2 MB with 2 people watching (1 remote, one local). Logging in and its definitely the statistics_bandwidth table still.

Adding some more data from just now. Earlier I deleted all of the statistics for 2025-05. I just now re-rant the following:

sqlite> SELECT
   ...> strftime('%Y-%m', datetime(at, 'unixepoch')) AS month,
   ...> COUNT() AS count,
   ...> COUNT() * 100.0 / (SELECT COUNT(*) FROM statistics_bandwidth) AS percentage
   ...> FROM statistics_bandwidth
   ...> GROUP BY month
   ...> ORDER BY month DESC;
2025-05|2024012|76.2083125305453
2025-04|5675|0.21367569639451
2025-03|1280|0.0481946945171758
2025-02|1158|0.0436011376960074
2025-01|584366|22.0026100439249
2024-12|1067|0.040174796132677
2024-11|1062|0.0399865356072193
2024-10|908|0.0341881114231216
2024-09|762|0.0286909040797562
2024-08|844|0.0317783766972628
2024-07|962|0.0362213250980649
2024-06|860|0.0323808103787275
....(continues with similar numbers)