2 Replies
@Daniel Jones the default limit is 5,000. we actually increased it to 20,000 ourselves because our serialization can handle it.
1. we can fix the bug to allow no-limit. we weren't trying to limit, but were trying to increase the default limit
2. You may also want to do
alt.data_transformers.enable("marimo")
which will let you get up to 100,000 comfortably. it's a custom transformer that passes the data in a separate request via CSV (columnar so much smaller)
2.b I'll add that to the docsThanks @Myles Scolnick! Yes, I couldn't figure out where the 20,000 was coming from, but that's what tipped me off that marimo was overwriting my setting before I eventually found it 🙂 Thanks for the tip about the marimo transformer, that's very cool - will take a look.