Timeout
The timeout middleware enforces a deadline on handler execution. It wraps handlers with
context.WithTimeout, exposes the derived context through c.Context(), and
returns 408 Request Timeout when the deadline is exceeded.
How It Worksβ
When a timeout occurs, the middleware returns immediately without waiting for the handler to finish. This is achieved through Fiber's Abandon mechanism:
- The handler runs in a goroutine with a timeout context
- On timeout, the middleware marks the context as "abandoned" and returns
408immediately - The handler goroutine can continue safely (e.g., for cleanup) without blocking the response
- A background cleanup goroutine waits for the handler to finish and performs context cleanup
Handlers can detect the timeout by listening on c.Context().Done() and return early.
This is the recommended pattern for cooperative cancellation.
If a handler panics, the middleware catches it and returns 500 Internal Server Error.
Known limitationsβ
- Timed-out requests abandon their
fiber.Ctxto avoid data races with the core request handler (including theErrorHandler). These contexts are not returned to the pool, so each timed-out request leaks a context. CallingForceReleaseis only safe if you can guarantee that no goroutine (including Fiber internals) will touch the context anymore; the timeout middleware intentionally does not call it.
timeout.New wraps your final handler and can't be added with app.Use or
used in a middleware chain. Register it per route and avoid calling
c.Next() inside the wrapped handlerβdoing so will panic.
Signaturesβ
func New(handler fiber.Handler, config ...timeout.Config) fiber.Handler
Examplesβ
Basic exampleβ
The following program times out any request that takes longer than two seconds.
The handler simulates work with sleepWithContext, which stops when the
context is canceled:
package main
import (
"context"
"fmt"
"log"
"time"
"github.com/gofiber/fiber/v3"
"github.com/gofiber/fiber/v3/middleware/timeout"
)
func sleepWithContext(ctx context.Context, d time.Duration) error {
select {
case <-time.After(d):
return nil
case <-ctx.Done():
return ctx.Err()
}
}
func main() {
app := fiber.New()
handler := func(c fiber.Ctx) error {
delay, _ := time.ParseDuration(c.Params("delay") + "ms")
if err := sleepWithContext(c.Context(), delay); err != nil {
return fmt.Errorf("%w: execution error", err)
}
return c.SendString("finished")
}
app.Get("/sleep/:delay", timeout.New(handler, timeout.Config{
Timeout: 2 * time.Second,
}))
log.Fatal(app.Listen(":3000"))
}
Use these requests to see the middleware in action:
curl -i http://localhost:3000/sleep/1000 # finishes within the timeout
curl -i http://localhost:3000/sleep/3000 # returns 408 Request Timeout
Configβ
| Property | Type | Description | Default |
|---|---|---|---|
| Next | func(fiber.Ctx) bool | Function to skip this middleware when it returns true. | nil |
| Timeout | time.Duration | Timeout duration for requests. 0 or a negative value disables the timeout. | 0 |
| OnTimeout | fiber.Handler | Handler executed when a timeout occurs. Defaults to returning fiber.ErrRequestTimeout. | nil |
| Errors | []error | Custom errors treated as timeout errors. | nil |
Use with a custom errorβ
var ErrFooTimeOut = errors.New("foo context canceled")
func main() {
app := fiber.New()
h := func(c fiber.Ctx) error {
sleepTime, _ := time.ParseDuration(c.Params("sleepTime") + "ms")
if err := sleepWithContextWithCustomError(c.Context(), sleepTime); err != nil {
return fmt.Errorf("%w: execution error", err)
}
return nil
}
app.Get("/foo/:sleepTime", timeout.New(h, timeout.Config{Timeout: 2 * time.Second, Errors: []error{ErrFooTimeOut}}))
log.Fatal(app.Listen(":3000"))
}
func sleepWithContextWithCustomError(ctx context.Context, d time.Duration) error {
timer := time.NewTimer(d)
select {
case <-ctx.Done():
if !timer.Stop() {
<-timer.C
}
return ErrFooTimeOut
case <-timer.C:
}
return nil
}
Sample usage with a database callβ
func main() {
app := fiber.New()
db, _ := gorm.Open(postgres.Open("postgres://localhost/foodb"), &gorm.Config{})
handler := func(ctx fiber.Ctx) error {
tran := db.WithContext(ctx.Context()).Begin()
if tran = tran.Exec("SELECT pg_sleep(50)"); tran.Error != nil {
return tran.Error
}
if tran = tran.Commit(); tran.Error != nil {
return tran.Error
}
return nil
}
app.Get("/foo", timeout.New(handler, timeout.Config{Timeout: 10 * time.Second}))
log.Fatal(app.Listen(":3000"))
}