WeblWabl
@devanbenz
Joined on 27 September 2016
doing computer things
GitHub Stats
73
Followers
107
Repositories
1
Organizations
2
Gists
240
Pull Requests
57
Issues
155
Commits
0
Sponsors
10
Contributed To
50
Star Earned
Most Used Languages
64.77%
Rust
10.21%
TypeScript
9.80%
Swift
6.19%
C++
5.17%
Go
2.04%
JavaScript
1.64%
CMake
0.15%
HTML
Popular Projects
packrat
Tiny LSM key value data store
Rust
6
0
0
0
simpledb-rs
Rust implementation of SimpleDB from "Database Design & Implementation"
Rust
4
0
0
0
tm-scheduler
The tadashi-mizu distributed task scheduler
C++
4
0
0
5
hampter.io
No description
HTML
4
2
0
3
warnicke
Warnicke is a query engine written in go
Go
2
0
0
0
geotagz-service
Backend web server and worker binary for geotagz
Rust
2
0
0
1
Top Contributions
Top contributions made by the user in the last year.
Charts
Follow Up
Activity Graph
Contributions Calendar
Contributions made by the user in the last 365 days.
Recent Activity
10/4/2025, 3:18:44 AM
10/4/2025, 3:17:38 AM
- feat: Adds 'cq' diagnostics to /debug/vars (#26874) This PR adds continuous query diags to our /debug/vars endpoint Example ``` "cq": { "queryFail": 0, "queryOk": 2 }, ```
10/4/2025, 3:17:37 AM
10/4/2025, 12:10:59 AM
- fix: Add error handling for ignored errs
10/3/2025, 9:31:55 PM
10/3/2025, 9:24:41 PM
- feat: Just use statistics, we don't have diags from cq currently
10/3/2025, 1:25:06 AM
- feat: Adds statistics measurement for compact-throughput (#26754) This PR adds the following as an available `/debug/vars` field. ``` "stats" : { "compact-throughput-usage-percentage" : <percentage used> } ``` This will show the current compaction throughput usage WRT the available limiter tokens as defined by the golang rate limiter. https://pkg.go.dev/golang.org/x/time/rate#Limiter.Limit https://pkg.go.dev/golang.org/x/time/rate#Limiter.Tokens The algorithm for finding our usage is the following ``` percentage = 100 * (1 - (tokens) / limit) ```
- Merge branch 'master-1.x' into db/514/cq-debugvars
10/3/2025, 1:20:39 AM
10/3/2025, 1:20:13 AM
10/1/2025, 11:28:19 PM
10/1/2025, 11:28:05 PM
10/1/2025, 10:21:37 PM
10/1/2025, 10:20:13 PM
10/1/2025, 10:19:20 PM
- feat: Adds statistics measurement for compact-throughput (#26754) This PR adds the following as an available `/debug/vars` field. ``` "stats" : { "compact-throughput-usage-percentage" : <percentage used> } ``` This will show the current compaction throughput usage WRT the available limiter tokens as defined by the golang rate limiter. https://pkg.go.dev/golang.org/x/time/rate#Limiter.Limit https://pkg.go.dev/golang.org/x/time/rate#Limiter.Tokens The algorithm for finding our usage is the following ``` percentage = 100 * (1 - (tokens) / limit) ```