Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c54060c
thomasgauvin: Hyperdrive pool placement improvement + ip address egress
thomasgauvin Feb 24, 2025
a3971ad
thomasgauvin: add details to how hyperdrive works with changes
thomasgauvin Feb 24, 2025
b70a3cc
Update src/content/changelog/hyperdrive/2025-02-26-hyperdrive-pooling…
thomasgauvin Feb 24, 2025
cb753ab
thomasgauvin: add docs on networking, firewall and ip addresses
thomasgauvin Feb 25, 2025
409dd16
small changes to phrasing, update date, include screenshot
thomasgauvin Mar 6, 2025
925deb8
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
2e85d45
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
70edf81
Update src/content/release-notes/hyperdrive.yaml
thomasgauvin Mar 6, 2025
13132d0
Update src/content/docs/hyperdrive/reference/faq.mdx
thomasgauvin Mar 6, 2025
17380d8
Update src/content/docs/hyperdrive/configuration/how-hyperdrive-works…
thomasgauvin Mar 6, 2025
6b4263d
Update src/content/release-notes/hyperdrive.yaml
thomasgauvin Mar 6, 2025
912000e
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
687dac9
Update src/content/release-notes/hyperdrive.yaml
thomasgauvin Mar 6, 2025
56a4817
Update src/content/release-notes/hyperdrive.yaml
thomasgauvin Mar 6, 2025
6443d45
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
f346d3b
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
85a4861
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
82c8047
Update src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling…
thomasgauvin Mar 6, 2025
3f74dc6
Update src/content/docs/hyperdrive/configuration/firewall-and-network…
thomasgauvin Mar 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Hyperdrive improves pool placement, uses Cloudflare's IP addresses for egress
description: Hyperdrive now pools database connections closer to your database to reduce latency and connects using Cloudflare's IP address ranges.
products:
- hyperdrive
date: 2025-02-26T18:00:00Z
---

Hyperdrive pools database connections in one or more regions closest to your database. This means that your uncached queries and new connections have up to 50% less latency. In aggregate, we observed a decrease on average of \<ENTER NUMBER\>.

With this update, Hyperdrive also uses [Cloudflare's standard IP address ranges](https://www.cloudflare.com/ips/) to connect to your database. This enables you to configure the firewall policies of your database to allow access to this limited IP address range.

Refer to [documentation on how Hyperdrive makes connecting to regional databases from Cloudflare Workers fast](/hyperdrive/configuration/how-hyperdrive-works/).

This improvement is enabled on all Hyperdrive configurations.
16 changes: 16 additions & 0 deletions src/content/release-notes/hyperdrive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ productLink: "/hyperdrive/"
productArea: Developer platform
productAreaLink: /workers/platform/changelog/platform/
entries:
- publish_date: "2025-02-26"
title: Hyperdrive egresses using Cloudflare's IP address ranges
description: |-
Hyperdrive now connects to your databases using [Cloudflare's IP address ranges]((https://www.cloudflare.com/ips/).

This enables you to configure the firewall policies on your database to allow access to this limited IP address range.

Refer to the [full list of Cloudflare IP ranges](https://www.cloudflare.com/ips/) that Hyperdrive uses.
- publish_date: "2025-02-25"
title: Hyperdrive improves connection pool placement decreasing query latency by up to 50%
description: |-
Hyperdrive now pools all database connections in one or more regions as close to your database as possible. This means that you uncached queries resolve faster by up to 50%.

In aggregate, we observed a decrease on average of \<ENTER NUMBER\>.

Refer to [documentation on how Hyperdrive caches query results](/hyperdrive/configuration/how-hyperdrive-works/#query-caching).
- publish_date: "2025-01-28"
title: Hyperdrive automatically configures your Cloudflare Tunnel to connect to your private database.
description: |-
Expand Down