-
Notifications
You must be signed in to change notification settings - Fork 115
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
go/runtime: Remove tag indexer #4216
Conversation
63001bd
to
b8e9546
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
confirming that the runtime sdk didn't use this
(edit) to elaborate: watching blocks had been the way to go. may reconsider if we later reinstate this functionality with a more reliable implementation
pretty clean, that the removal is almost all deletions
I see that the end to end test is slightly enhanced to wait for a round
approving, but anyone else feel free to discuss too
github.com/btcsuite/btcutil v1.0.2 | ||
github.com/cenkalti/backoff/v4 v4.1.1 | ||
github.com/dgraph-io/badger/v2 v2.2007.2 | ||
github.com/dgraph-io/badger/v3 v3.2103.1 | ||
github.com/eapache/channels v1.1.0 | ||
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect | ||
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are these unrelated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the result of running go mod tidy
, let me look into it a bit.
b8e9546
to
9093c12
Compare
Codecov Report
@@ Coverage Diff @@
## master #4216 +/- ##
==========================================
- Coverage 68.67% 68.59% -0.08%
==========================================
Files 411 408 -3
Lines 47549 46936 -613
==========================================
- Hits 32652 32197 -455
+ Misses 10848 10750 -98
+ Partials 4049 3989 -60
Continue to review full report at Codecov.
|
9093c12
to
f69222c
Compare
Tag indexer was removed in #4216.
Tag indexer was removed in #4216.
See #3888
Closes #3388
Closes #1674
The tag indexer is slow, buggy and unused by the SDK. Runtime transaction
indexing and querying capabilities should be provided as part of the new
event streaming API.