Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-workhorse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-workhorse
Commits
6f9fa8c7
Commit
6f9fa8c7
authored
Feb 28, 2017
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Calculate histogram buckets from apiQueueDuration value
parent
304bc473
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
116 additions
and
74 deletions
+116
-74
internal/queueing/queue.go
internal/queueing/queue.go
+103
-61
internal/queueing/queue_test.go
internal/queueing/queue_test.go
+11
-11
internal/queueing/requests.go
internal/queueing/requests.go
+2
-2
No files found.
internal/queueing/queue.go
View file @
6f9fa8c7
...
...
@@ -13,113 +13,155 @@ type errQueueingTimedout struct{ error }
var
ErrTooManyRequests
=
&
errTooManyRequests
{
errors
.
New
(
"too many requests queued"
)}
var
ErrQueueingTimedout
=
&
errQueueingTimedout
{
errors
.
New
(
"queueing timedout"
)}
var
(
queueingLimit
=
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
type
queueMetrics
struct
{
queueingLimit
prometheus
.
Gauge
queueingQueueLimit
prometheus
.
Gauge
queueingQueueTimeout
prometheus
.
Gauge
queueingBusy
prometheus
.
Gauge
queueingWaiting
prometheus
.
Gauge
queueingWaitingTime
prometheus
.
Histogram
queueingErrors
*
prometheus
.
CounterVec
}
func
NewQueueMetrics
(
timeout
time
.
Duration
)
*
queueMetrics
{
waitingTimeBuckets
:=
[]
float64
{
timeout
.
Seconds
()
*
0.01
,
timeout
.
Seconds
()
*
0.05
,
timeout
.
Seconds
()
*
0.10
,
timeout
.
Seconds
()
*
0.25
,
timeout
.
Seconds
()
*
0.50
,
timeout
.
Seconds
()
*
0.75
,
timeout
.
Seconds
()
*
0.90
,
timeout
.
Seconds
()
*
0.95
,
timeout
.
Seconds
()
*
0.99
,
timeout
.
Seconds
(),
timeout
.
Seconds
()
*
1.5
,
timeout
.
Seconds
()
*
2
,
}
metrics
:=
&
queueMetrics
{
queueingLimit
:
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
Name
:
"gitlab_workhorse_queueing_limit"
,
Help
:
"Current limit set for the queueing mechanism"
,
})
}),
queueingQueueLimit
=
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
queueingQueueLimit
:
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
Name
:
"gitlab_workhorse_queueing_queue_limit"
,
Help
:
"Current queueLimit set for the queueing mechanism"
,
})
}),
queueingBusy
=
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
queueingQueueTimeout
:
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
Name
:
"gitlab_workhorse_queueing_queue_timeout"
,
Help
:
"Current queueTimeout set for the queueing mechanism"
,
}),
queueingBusy
:
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
Name
:
"gitlab_workhorse_queueing_busy"
,
Help
:
"How many queued requests are now processed"
,
})
}),
queueingWaiting
=
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
queueingWaiting
:
prometheus
.
NewGauge
(
prometheus
.
GaugeOpts
{
Name
:
"gitlab_workhorse_queueing_waiting"
,
Help
:
"How many requests are now queued"
,
})
}),
queueingWaitingTime
=
prometheus
.
NewHistogram
(
prometheus
.
HistogramOpts
{
queueingWaitingTime
:
prometheus
.
NewHistogram
(
prometheus
.
HistogramOpts
{
Name
:
"gitlab_workhorse_queueing_waiting_time"
,
Help
:
"How many time a request spent in queue"
,
Buckets
:
[]
float64
{
0.01
,
0.02
,
0.05
,
0.10
,
0.20
,
0.50
,
1.00
,
2.00
,
5.00
,
10.00
,
30.00
,
60.00
}
,
})
Buckets
:
waitingTimeBuckets
,
}),
queueingErrors
=
prometheus
.
NewCounterVec
(
queueingErrors
:
prometheus
.
NewCounterVec
(
prometheus
.
CounterOpts
{
Name
:
"gitlab_workhorse_queueing_errors"
,
Help
:
"How many times the TooManyRequests or QueueintTimedout errors were returned while queueing, partitioned by error type"
,
},
[]
string
{
"type"
},
)
)
),
}
prometheus
.
MustRegister
(
metrics
.
queueingLimit
)
prometheus
.
MustRegister
(
metrics
.
queueingQueueLimit
)
prometheus
.
MustRegister
(
metrics
.
queueingQueueTimeout
)
prometheus
.
MustRegister
(
metrics
.
queueingBusy
)
prometheus
.
MustRegister
(
metrics
.
queueingWaiting
)
prometheus
.
MustRegister
(
metrics
.
queueingWaitingTime
)
prometheus
.
MustRegister
(
metrics
.
queueingErrors
)
return
metrics
}
type
Queue
struct
{
*
queueMetrics
busyCh
chan
struct
{}
waitingCh
chan
time
.
Time
}
func
init
()
{
prometheus
.
MustRegister
(
queueingErrors
)
prometheus
.
MustRegister
(
queueingLimit
)
prometheus
.
MustRegister
(
queueingBusy
)
prometheus
.
MustRegister
(
queueingWaiting
)
prometheus
.
MustRegister
(
queueingWaitingTime
)
prometheus
.
MustRegister
(
queueingQueueLimit
)
timeout
time
.
Duration
}
// NewQueue creates a new queue
// limit specifies number of requests run concurrently
// queueLimit specifies maximum number of requests that can be queued
// timeout specifies the time limit of storing the request in the queue
// if the number of requests is above the limit
func
NewQueue
(
limit
,
queueLimit
uint
)
*
Queue
{
queueingLimit
.
Set
(
float64
(
limit
))
queueingQueueLimit
.
Set
(
float64
(
queueLimit
))
return
&
Queue
{
func
NewQueue
(
limit
,
queueLimit
uint
,
timeout
time
.
Duration
)
*
Queue
{
queue
:=
&
Queue
{
busyCh
:
make
(
chan
struct
{},
limit
),
waitingCh
:
make
(
chan
time
.
Time
,
limit
+
queueLimit
),
timeout
:
timeout
,
}
queue
.
queueMetrics
=
NewQueueMetrics
(
timeout
)
queue
.
queueingLimit
.
Set
(
float64
(
limit
))
queue
.
queueingQueueLimit
.
Set
(
float64
(
queueLimit
))
queue
.
queueingQueueTimeout
.
Set
(
timeout
.
Seconds
())
return
queue
}
// Acquire takes one slot from the Queue
// and returns when a request should be processed
// it allows up to (limit) of requests running at a time
// it allows to queue up to (queue-limit) requests
func
(
s
*
Queue
)
Acquire
(
timeout
time
.
Duration
)
(
err
error
)
{
func
(
s
*
Queue
)
Acquire
()
(
err
error
)
{
// push item to a queue to claim your own slot (non-blocking)
select
{
case
s
.
waitingCh
<-
time
.
Now
()
:
queueingWaiting
.
Inc
()
s
.
queueingWaiting
.
Inc
()
break
default
:
queueingErrors
.
WithLabelValues
(
"too_many_requests"
)
.
Inc
()
s
.
queueingErrors
.
WithLabelValues
(
"too_many_requests"
)
.
Inc
()
return
ErrTooManyRequests
}
defer
func
()
{
if
err
!=
nil
{
waitStarted
:=
<-
s
.
waitingCh
queueingWaiting
.
Dec
()
queueingWaitingTime
.
Observe
(
float64
(
time
.
Since
(
waitStarted
)
.
Seconds
()))
s
.
queueingWaiting
.
Dec
()
s
.
queueingWaitingTime
.
Observe
(
float64
(
time
.
Since
(
waitStarted
)
.
Seconds
()))
}
}()
// fast path: push item to current processed items (non-blocking)
select
{
case
s
.
busyCh
<-
struct
{}{}
:
queueingBusy
.
Inc
()
s
.
queueingBusy
.
Inc
()
return
nil
default
:
break
}
timer
:=
time
.
NewTimer
(
timeout
)
timer
:=
time
.
NewTimer
(
s
.
timeout
)
defer
timer
.
Stop
()
// push item to current processed items (blocking)
select
{
case
s
.
busyCh
<-
struct
{}{}
:
queueingBusy
.
Inc
()
s
.
queueingBusy
.
Inc
()
return
nil
case
<-
timer
.
C
:
queueingErrors
.
WithLabelValues
(
"queueing_timedout"
)
.
Inc
()
s
.
queueingErrors
.
WithLabelValues
(
"queueing_timedout"
)
.
Inc
()
return
ErrQueueingTimedout
}
}
...
...
@@ -129,9 +171,9 @@ func (s *Queue) Acquire(timeout time.Duration) (err error) {
func
(
s
*
Queue
)
Release
()
{
// dequeue from queue to allow next request to be processed
waitStarted
:=
<-
s
.
waitingCh
queueingWaiting
.
Dec
()
queueingWaitingTime
.
Observe
(
float64
(
time
.
Since
(
waitStarted
)
.
Seconds
()))
s
.
queueingWaiting
.
Dec
()
s
.
queueingWaitingTime
.
Observe
(
float64
(
time
.
Since
(
waitStarted
)
.
Seconds
()))
<-
s
.
busyCh
queueingBusy
.
Dec
()
s
.
queueingBusy
.
Dec
()
}
internal/queueing/queue_test.go
View file @
6f9fa8c7
...
...
@@ -6,46 +6,46 @@ import (
)
func
TestNormalQueueing
(
t
*
testing
.
T
)
{
q
:=
NewQueue
(
2
,
1
)
err1
:=
q
.
Acquire
(
time
.
Microsecond
)
q
:=
NewQueue
(
2
,
1
,
time
.
Microsecond
)
err1
:=
q
.
Acquire
()
if
err1
!=
nil
{
t
.
Fatal
(
"we should acquire a new slot"
)
}
err2
:=
q
.
Acquire
(
time
.
Microsecond
)
err2
:=
q
.
Acquire
()
if
err2
!=
nil
{
t
.
Fatal
(
"we should acquire a new slot"
)
}
err3
:=
q
.
Acquire
(
time
.
Microsecond
)
err3
:=
q
.
Acquire
()
if
err3
!=
ErrQueueingTimedout
{
t
.
Fatal
(
"we should timeout"
)
}
q
.
Release
()
err4
:=
q
.
Acquire
(
time
.
Microsecond
)
err4
:=
q
.
Acquire
()
if
err4
!=
nil
{
t
.
Fatal
(
"we should acquire a new slot"
)
}
}
func
TestQueueLimit
(
t
*
testing
.
T
)
{
q
:=
NewQueue
(
1
,
0
)
err1
:=
q
.
Acquire
(
time
.
Microsecond
)
q
:=
NewQueue
(
1
,
0
,
time
.
Microsecond
)
err1
:=
q
.
Acquire
()
if
err1
!=
nil
{
t
.
Fatal
(
"we should acquire a new slot"
)
}
err2
:=
q
.
Acquire
(
time
.
Microsecond
)
err2
:=
q
.
Acquire
()
if
err2
!=
ErrTooManyRequests
{
t
.
Fatal
(
"we should fail because of not enough slots in queue"
)
}
}
func
TestQueueProcessing
(
t
*
testing
.
T
)
{
q
:=
NewQueue
(
1
,
1
)
err1
:=
q
.
Acquire
(
time
.
Microsecond
)
q
:=
NewQueue
(
1
,
1
,
time
.
Second
)
err1
:=
q
.
Acquire
()
if
err1
!=
nil
{
t
.
Fatal
(
"we should acquire a new slot"
)
}
...
...
@@ -55,7 +55,7 @@ func TestQueueProcessing(t *testing.T) {
q
.
Release
()
}()
err2
:=
q
.
Acquire
(
time
.
Second
)
err2
:=
q
.
Acquire
()
if
err2
!=
nil
{
t
.
Fatal
(
"we should acquire slot after the previous one finished"
)
}
...
...
internal/queueing/requests.go
View file @
6f9fa8c7
...
...
@@ -17,10 +17,10 @@ func QueueRequests(h http.Handler, limit, queueLimit uint, queueTimeout time.Dur
queueTimeout
=
DefaultTimeout
}
queue
:=
NewQueue
(
limit
,
queueLimit
)
queue
:=
NewQueue
(
limit
,
queueLimit
,
queueTimeout
)
return
http
.
HandlerFunc
(
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
err
:=
queue
.
Acquire
(
queueTimeout
)
err
:=
queue
.
Acquire
()
switch
err
{
case
nil
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment