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
146 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
--help
specify a bit better that these are not options of theKqlmagic
commands but rather have to be put inside the query.