Manage billing with consumption limits
Learn how to set usage quotas per project with the Neon API
When setting up your billing solution with Neon, you may want to impose some hard limits on how much storage or compute resources a given project can consume. For example, you may want to cap how much usage your free tier users can consume versus pro or enterprise users. With the Neon API, you can use the quota
key to set usage limits for a variety of consumption metrics. These limits act as thresholds after which all active computes for a project are suspended.
Metrics and quotas
By default, Neon tracks a variety of consumption metrics at the project level. If you want to set quotas (max limits) for these metrics, you need to explicitly configure them.
Available metrics
Here are the relevant metrics that you can track in order to understand your users' current consumption levels.
Project-level metrics
active_time_seconds
compute_time_seconds
written_data_bytes
data_transfer_bytes
These consumption metrics represent total cumulative usage across all branches and computes in a given project, accrued so far in a given monthly billing period. Metrics are refreshed on the first day of the following month, when the new billing period starts.
Branch-level metric
There is an additional value that you also might want to track: logical_size
, which gives you the current size of a particular branch.
Neon updates all metrics every 15 minutes but it could take up to 1 hour before they are reportable.
To find the current usage level for any of these metrics, see retrieving details about a project. You can read more about these metrics and how they impact billing here.
Corresponding quotas
You can set quotas for these consumption metrics per project using the quote
object in the Create project or Update project API.
The quota
object includes an array of parameters used to set threshold limits. Their names generally match their corresponding metric:
active_time_seconds
— Sets the maximum amount of time your project's total compute endpoints are allowed to be active during the current billing period. It excludes time when computes are in anIdle
state due to auto-suspension.compute_time_seconds
— Sets the maximum amount of CPU seconds allowed in total across all of a project's compute endpoints. This includes any endpoints deleted during the current billing period. Note that the larger the compute size per endpoint, the faster the project consumescompute_time_seconds
. For example, 1 second at .25 vCPU costs .25 compute seconds, while 1 second at 4 vCPU costs 4 compute seconds.vCPUs active_time_seconds compute_time_seconds 0.25 1 0.25 4 1 4 written_data_bytes
— Sets the maximum amount of data in total, measured in bytes, that can be written across all of a project's branches for the month.data_transfer_bytes
— Sets the maximum amount of egress data, measured in bytes, that can be transferred out of Neon from across all of a project's branches using the proxy.
There is one additional quota
parameter, logical_size_bytes
, which applies to individual branches, not to the overall project. You can use logical_size_bytes
to set the maximum size (measured in bytes) that any one individual branch is allowed to reach. Once this threshold is met, the compute for that particular branch (and only that particular branch) is suspended. Note that this limit is not refreshed once per month: it is a strict size limit that applies for the life of the branch.
Sample quotas
Let's say you want to set limits for an application with two tiers, Trial and Pro, you might set limits like the following:
Parameter (project) | Trial (.25 vCPU) | Pro (max 4 vCPU) |
---|---|---|
active_time_seconds | 633,600 (business month 22 days) | 2,592,000 (30 days) |
compute_time_seconds | 158,400 (approx 44 hours) | 10,368,000 (4 times the active hours for 4 vCPUs) |
written_data_bytes | 1,000,000,000 (approx. 1 GiB) | 50,000,000,000 (approx. 50 GiB) |
data_transfer_bytes | 500,000,000 (approx. 500 MiB) | 10,000,000,000 (approx. 10 GiB) |
Parameter (branch) | Trial | Pro |
---|---|---|
logical_size_bytes | 100,000,000 (approx. 100 MiB) | 10,000,000,000 (approx. 10 GiB) |
Guidelines
Generally, the most effective quotas for controlling spend per project are those controlling maximum compute (active_time_seconds
and compute_time_seconds
) and maximum written storage (written_data_bytes
). In practice, it is possible that data_transfer_bytes
could introduce unintended logical constraints against your usage. For example, let's say you want to run a cleanup operation to reduce your storage. If part of this cleanup operation involves moving data across the network (for instance, to create an offsite backup before deletion), the data_transfer_bytes
limit could prevent you from completing the operation — an undesirable situation where two measures meant to control cost interfere with one another.
Neon default limits
In addition to the configurable limits that you can set, Neon also sets certain branch size limits by default. You might notice these limits in a Get Project response:
branch_logical_size_limit
(MiB)branch_logical_size_limit_bytes
(Bytes)
These limits are not directly configurable. The Free Tier branch size limit is 512 MiB (0.5 GiB). The Launch and Scale plans support any data size but have a "failsafe" logical data size limit of 200 GiB to prevent runaway branch size growth due to possible issues with your application. If you require larger limits, you can request large database support.
The Neon Free Tier logical data size limit is approximately 512 MiB:
branch_logical_size_limit
: 512branch_logical_size_limit_bytes
: 536870912
The Neon Launch and Scale plan failsafe limit is 200 GiB:
branch_logical_size_limit
: 204800branch_logical_size_limit_bytes
: 214748364800
Suspending active computes
What happens when the quota is met?
When any configured metric reaches its quota limit, all active computes for that project are automatically suspended. It is important to understand, this suspension is persistent. It works differently than the inactivity-based autosuspend, where computes restart at the next interaction: this suspend will not restart at the next API call or incoming connection. If you don't take explicit action otherwise, the suspension remains in place until the end of the current billing period starts (consumption_period_end
).
See Querying metrics and quotas to find your reset date, billing period, and other values related to the project's consumption.
note
Neon tracks these consumption metrics on a monthly cycle. If you want to track metrics on a different cycle, you need to take snapshots of your metrics at the desired interval and store the data externally. You can also use the Preview Consumption API to collect metrics from across a range of billing periods.
Configuring quotas
You can set quotas using the Neon API either in a POST
when you create a project or a PATCH
to update an existing project:
Set quotas when you create the project
For performance reasons, you might want to configure these quotas at the same time that you create a new project for your user using the Create a project API, reducing the number of API calls you need to make.
Here is a sample POST
in curl
that creates a new project called UserNew
and sets the active_time_seconds
quota to a total allowed time of 10 hours (36,000 seconds) for the month, and a total allowed compute_time_seconds
set to 2.5 hours (9,000 seconds) for the month. This 4:1 ratio between active and compute time is suitable for a fixed compute size of 0.25 vCPU.
Update an existing project
If you need to change the quota limits for an existing project — for example, if a user switches their plan to a higher usage tier — you can reset those limits via PATCH
request. See Update a project in the Neon API.
Here is a sample PATCH
that updates both the active_time_seconds
and compute_time_seconds
quotas to 30 hours (108,000):
Querying metrics and quotas
You can get metrics and quota details for a single project or a list of metrics for all projects at once:
Retrieving details about a project
Using a GET
request from the Neon API (see Get project details), you can find the following consumption details for a given project:
- Current consumption metrics accumulated for the billing period
- Start and end dates for the billing period
- Current usage quotas (max limits) configured for the project
Using these details, you can set up the logic for when to send notification warnings, when to reset a quota, and other possible actions related to the pending or current suspension of a project's active computes.
Here is an example a GET
request for an individual project.
And here is what the response might look like. The key fields are highlighted.
Response body
Looking at this response, here are some conclusions we can draw:
-
This project is 1 hour away from being suspended.
With current
compute_time_seconds
at 68,400 (19 hours) and the quota for that metric set at 72,000 (20 hours), the project is only 1 hour of compute time away from being suspended. -
This project is 1 day away from a quota refresh.
If today's date is October 31st, 2023, and the
consumption_period_end
parameter is 2023-11-01T00:00:00Z (November 1st, 2023), then the project has 1 day left before all quota parameters (except forlogical_byte_size
) are refreshed.
Retrieving metrics for all projects
Instead of retrieving metrics for a single project per request, you can use the Consumption API to get a full list of key consumption metrics for all the projects in your Neon account in a single API request. You can specify a date range to get metrics from across multiple billing periods and control pagination for large result sets.
Preview API
This functionality is part of the preview API and is subject to change in the future.
Here is the URL in the Neon API where you can get details for all projects in your account:
This API endpoint accepts the following query parameters: from
,to
, limit
, and cursor
.
Set a date range across multiple billing periods
You can set from
and to
query parameters to define a time range that can span across multiple billing periods.
from
— Sets the start date and time of the time period for which you are seeking metrics.to
— Sets the end date and time for the the interval for which you desire metrics.
The response is organized by project and billing period: one object per project, per active billing period within the range. For example, if you choose a 6-month time range you will get up to 6 objects for every project active within those months. The response includes any projects deleted within that time range.
If you do not include these parameters, the query defaults to the current consumption period.
Here is an example query that returns metrics from September 1st and December 1st, 2023. Time values must be provided in ISO 8601 format. You can use this timestamp converter.
And here is a sample response (with key lines highlighted):
Response body
Key details:
- The
period_id
key andprevious_period_id
are unique values used to identify and connect periods across the time range. - The
period_start
andperiod_end
keys show the dates for that particular billing period. Anull
value indicates that the object is for the current billing period. - The
cursor
object underpagination
shows the last project Id in the response. See more about pagination in the next section.
Control pagination for large result sets
To control pagination (number of results per response), you can include these query parameters:
limit
— sets the number of project objects to be included in the responsecursor
— by default, the response uses the projectid
from the last project in the list as thecursor
value (included in thepagination
object at the end of the response). Generally, it is up to the application to collect and use this cursor value when setting up the next request.
Here is an example GET
request asking for the next 100 projects, starting with project id divine-tree-77657175
:
note
To learn more about using pagination to control large response sizes, the Keyset pagination page in the Microsoft docs gives a helpful overview.
Resetting a project after suspend
Projects remain suspended until the next billing period. It is good practice to notify your users when they are close to reaching a limit; if the user is then suspended and loses access to their database, it will not be unexpected. If you have configured no further actions, the user will have to wait until the next billing period starts to resume usage.
Alternatively, you can actively reset a suspended compute by changing the impacted quota to 0
: this effectively removes the limit entirely. You will need to reset this quota at some point if you want to maintain limits.
Using quotas to actively suspend a user
If you want to suspend a user for any reason — for example, suspicious activity or payment issues — you can use these quotas to actively suspend a given user. For example, setting active_time_limit
to a very low threshold (e.g., 1
) will force a suspension if the user has 1 second of active compute for that month. To remove this suspension, you can set the threshold temporarily to 0
(infinite) or some value larger than their currently consumed usage.
Other consumption related settings
In addition to setting quota limits against the project as a whole, there are other sizing-related settings you might want to use to control the amount of resources any particular endpoint is able to consume:
autoscaling_limit_min_cu
— Sets the minimium compute size for the endpoint. The default minimum is .25 vCPU but can be increased if your user's project could benefit from a larger compute start size.autoscaling_limit_max_cu
— Sets a hard limit on how much compute an endpoint can consume in response to increased demand. For more info on min and max cpu limits, see Autoscaling.suspend_timeout_seconds
— Sets how long an endpoint's allotted compute will remain active with no current demand. After the timeout period, the endpoint is suspended until demand picks up. For more info, see Autosuspend.
There are several ways you can set these endpoint settings using the Neon API: you can set project-level defaults that apply for any new computes created in the project, you can define the endpoint settings when creating a new branch, or you can adjust these settings when creating or updating an endpoint for an existing branch.
See these sample CURL requests for each method.
Last updated on