Forum Discussion
Anonymous
5 years agoNot applicable
Expression.Error: Evaluation resulted in a stack overflow and cannot continue.
I am pulling in to queries from Kusto. I have used filters and sorts to pair down the queries within the query editor. These queries are pulling in data from two 4G controllers we have in the field. ...
nicpenning
4 years agoHelper I
I don't use Table.Combine, but I am wondering if this effects Text.Combine. We have a sample set of data that is less than 700MB but when we try to query the web source recursively the mashup processes use up over 20GB of RAM and then we get the crash error.
This is my line for Text.Combine in my function and in my Query:
Json.Document(Web.Contents("https://datasource:9200", [RelativePath=relativepa, Headers=[#"Authorization"=Text.Combine({"ApiKey ",apiKey,""}), #"Content-Type"="application/json"], Content = Text.ToBinary(urlBody)]))
urlBody = Text.Combine({"{""size"":",batchSize,",""query"":{""match_all"":{}}}"}),