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
As an application writer, I would like to be able to receive all my query results sorted in ascending order of time.
Notes
A query writer can indicate sort @timestamp asc.
In multi-chunk queries, the chunks are started in time order.
However in multi-chunk queries, the completed chunks are sent to the stream in the order the completion occurs which may not be the time order.
Task List
Add field to QuerySpec to request this, or perhaps request turning it off instead, and have it on by default.
Add some kind of queuing system for completed chunks that are "early" and can't be sent to the stream because a predecessor chunk isn't finished yet.
Example
typeQuerySpecstruct {
...// Jumble indicates that results from completed chunks may be// sent to the stream as soon as they are finished even if the// results from an earlier chunk have not been sent yet.//// Setting Jumble to true may improve performance of// applications which don't need the results in time order, or// which need to post-process the results in any case.Jumblebool...
}
The text was updated successfully, but these errors were encountered:
User Story
As an application writer, I would like to be able to receive all my query results sorted in ascending order of time.
Notes
sort @timestamp asc
.Task List
QuerySpec
to request this, or perhaps request turning it off instead, and have it on by default.Example
The text was updated successfully, but these errors were encountered: