I'm trying to run a kusto query in Jupyter using Kql magic version 0.1.114.post16. I would like to remove the 500k lines limit and I think that the notruncate option listed when running %kql --help "client-request-properties" should solve my problem, but I can't figure out how to insert it in kql magic. It doesn't work as other options or commands.
Use client-request-properties with Kql magic
167 views Asked by luigi At
1
I kind of solved this, even though I'm not sure whether this is the correct way to use Kql magic. I just added
set notruncation;at the top of my query, like soI'd like to have the
--helpspecify a bit better that these are not options of theKqlmagiccommands but rather have to be put inside the query.