You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
take a long time to error, if (say) the limit is 5000 series and there are 3000 of each of these; the first one to be evaluated will completion in about 5 seconds, and the second will be instantly rejected for exceeding the number of allowable series. The overall query will thus take about 5 seconds, even though it could instantly return an error instead (and cancel its request).
This only matters if the query is going to return an error anyway, so optimizing this is not a priority.
The text was updated successfully, but these errors were encountered:
Nathan-Fenner
changed the title
MakeFunction waits for arguments to finish, even when one argument returns an error fast
MakeFunction waits for all arguments to finish, even when one argument returns an error fast
Jul 1, 2016
This can make some queries like
take a long time to error, if (say) the limit is 5000 series and there are 3000 of each of these; the first one to be evaluated will completion in about 5 seconds, and the second will be instantly rejected for exceeding the number of allowable series. The overall query will thus take about 5 seconds, even though it could instantly return an error instead (and cancel its request).
This only matters if the query is going to return an error anyway, so optimizing this is not a priority.
The text was updated successfully, but these errors were encountered: