-
Notifications
You must be signed in to change notification settings - Fork 1.1k
enable getSamples and getRow in shrex #4288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
vgonkivs
wants to merge
15
commits into
main
Choose a base branch
from
enable_endpoints_in_shrex
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+833
−185
Open
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d9f1d9e
feat(getters/shrex): enable endpoints in shrex
vgonkivs 9cedb98
fix lint
vgonkivs e01d02b
remove requestType
vgonkivs e376f33
parallel sample requests
vgonkivs 7e9800c
update tests
vgonkivs 594a311
update shwap
vgonkivs 1846653
update shrex
vgonkivs cd50cf2
apply suggestion
vgonkivs 5e8b9a6
remove json marshalling for ids
vgonkivs cf6ac2a
add metric for total requested data
vgonkivs 6f336f8
resolve comments left by @walldiss
vgonkivs 61b2cd4
rework get range ns data read/write methods
vgonkivs 2a7eba2
remove metric
vgonkivs b7e8870
enable partial response + add test
vgonkivs 004e561
send data row by row
vgonkivs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| package shrex_getter | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
| "go.opentelemetry.io/otel/attribute" | ||
| "go.opentelemetry.io/otel/metric" | ||
|
|
||
| "github.com/celestiaorg/celestia-node/libs/utils" | ||
| ) | ||
|
|
||
| type metrics struct { | ||
| requestAttempt metric.Int64Histogram | ||
| } | ||
walldiss marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| func (sg *Getter) WithMetrics() error { | ||
| requestAttempt, err := meter.Int64Histogram( | ||
| "getters_shrex_attempts_per_request", | ||
| metric.WithDescription("Number of attempts per shrex request"), | ||
| ) | ||
| if err != nil { | ||
| return err | ||
| } | ||
|
|
||
| sg.metrics = &metrics{ | ||
| requestAttempt: requestAttempt, | ||
| } | ||
| return nil | ||
| } | ||
|
|
||
| func (m *metrics) recordAttempts(ctx context.Context, requestName string, attempt int, success bool) { | ||
| if m == nil { | ||
| return | ||
| } | ||
| ctx = utils.ResetContextOnError(ctx) | ||
|
|
||
| m.requestAttempt.Record(ctx, int64(attempt), | ||
| metric.WithAttributes( | ||
| attribute.String("request_type", requestName), | ||
| attribute.Bool("success", success)), | ||
| ) | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.