Myles Scolnick
Myles Scolnick•9mo ago

Thread for Altair

Thread for Altair
2 Replies
Myles Scolnick
Myles ScolnickOP•9mo ago
@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 docs
Daniel Jones
Daniel Jones•9mo ago
Thanks @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.