This repository was archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
migrations: add insights_query_runner_jobs table #18265
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Query metadata for points. * Improve formatting of test data. * Change incorrect `Series *int32` to `Series *string` * Add TODOs for improved filtering abilities in the future. Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
This PR adds support for the store to record data points. Stacked on top of #18254 Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
This adds the DB schema needed for the query runner worker, which will execute search queries and record insights about them. Stacked on top of #18255 Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
27 tasks
This was referenced Feb 13, 2021
Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
emidoots
pushed a commit
that referenced
this pull request
Feb 13, 2021
…re insights One challenge here is how to best test this code outside of an actual working dev server. Some parts (DB actions) are easy to test and I will add tests for them soon, while others are merely wiring up different components of the system so testing them is not obvioous. Stacked on top of #18265 Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
efritz
reviewed
Feb 15, 2021
efritz
reviewed
Feb 15, 2021
migrations/frontend/1528395783_insights_query_runner_jobs.up.sql
Outdated
Show resolved
Hide resolved
efritz
approved these changes
Feb 15, 2021
Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
Contributor
|
Notifying subscribers in CODENOTIFY files for diff f2d1300...b5090c3. No notifications. |
emidoots
pushed a commit
that referenced
this pull request
Feb 15, 2021
…re insights One challenge here is how to best test this code outside of an actual working dev server. Some parts (DB actions) are easy to test and I will add tests for them soon, while others are merely wiring up different components of the system so testing them is not obvioous. Stacked on top of #18265 Signed-off-by: Stephen Gutekanst <stephen@sourcegraph.com>
1 task
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds the DB schema needed for the query runner worker, which will execute search
queries and record insights about them.
Stacked on top of #18255
Signed-off-by: Stephen Gutekanst stephen@sourcegraph.com