You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: drop figures in estimations costs and say it's expensive for large dataset (#703)
* docs: drop figures in estimations costs and say it's expensive
Signed-off-by: David Dal Busco <david.dalbusco@outlook.com>
* 📄 Update LLMs.txt snapshot for PR review
---------
Signed-off-by: David Dal Busco <david.dalbusco@outlook.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .llms-snapshots/llms-full.txt
+16-27Lines changed: 16 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -13949,46 +13949,31 @@ Each module is provisioned with approximately 1.5 T Cycles in usable resources.
13949
13949
13950
13950
* Additional transaction fees may be introduced in the future, and pricing and models are subject to change.
13951
13951
13952
+
* Transaction costs were last reviewed on Jan. 7, 2026.
13953
+
13952
13954
13953
13955
---
13954
13956
13955
13957
## Estimating Costs
13956
13958
13957
-
Below are a few examples of costs provided for explanatory purposes only. Actual costs may vary depending on network conditions and usage patterns.
13958
-
13959
-
**Tip:**
13960
-
13961
-
You can use the [Pricing Calculator](https://internetcomputer.org/docs/current/developer-docs/cost-estimations-and-examples) to get a better rough estimate of how much your project might cost.
13962
-
13963
-
### Storage
13964
-
13965
-
The estimated annual cost of storing 1 gigabyte of data on the Internet Computer is $5.
13959
+
We don't have reliable up-to-date numbers to share here. Costs on the Internet Computer vary depending on subnet configuration, network conditions, and your specific usage patterns. Rather than giving you figures that may mislead, we encourage you to run your own experiments and calculations using the official resources:
13966
13960
13967
-
To calculate the estimated monthly cost for 1 gigabyte of storage, you can refer to the table provided on the Internet Computer [website](https://internetcomputer.org/docs/current/developer-docs/gas-cost).
| GB Storage Per Second | $0.000000169749 | $0.000000443960 |
13972
-
| Derived to a 30-day month | $0.439 | $1.149 |
13973
-
| Derived to a 12-month year | $5.268 | $13.788 |
13974
-
13975
-
### Deployment
13964
+
### What to expect broadly
13976
13965
13977
-
Based on our experimentation, deploying an entire website, such as the website [http://juno.build](http://juno.build), which consists of approximately 900 files (including compressed versions of the files) and is 40 MB in size, is estimated to cost around 0.114 T Cycles, which converts to 0.0105 ICP ($0.15).
13966
+
Hosting static assets and running lightweight workloads is generally competitive. However, compute and storage costs for data-heavy applications are significantly higher than traditional cloud infrastructure. To put it plainly: the infrastructure, the Internet Computer, is likely more expensive compared to conventional alternatives, and it is better suited for small datasets than for large-scale data-intensive workloads.
13978
13967
13979
-
It's important to note that subsequent deployments of your project can have significantly lower costs if the build consistency of your application is maintained. Juno only uploads new files to your Satellites, which helps reduce costs compared to initial deployments.
13968
+
That said, the free tier gives you a solid starting point. You'll have enough resources to build, experiment, and evaluate whether ICP's cost model works for your use case before spending anything.
13980
13969
13981
-
### Data
13970
+
And again, we recommend doing your own research. DYOR prevails.
13982
13971
13983
-
Querying data on the Internet Computer is currently free, so there are no additional costs to expect when reading data.
13972
+
### A note on emulator metrics
13984
13973
13985
-
In terms of persisting data, based on our experience, storing 100 instances of a JSON sample data with approximately 90 fields, totaling around 900 bytes, costs approximately 0.0005 TCycles ($0.000675). This means that the cost for a single transaction of this nature would be approximately 0.000005 TCycles or 0.0000017 ICP ($0.00000675).
13986
-
13987
-
**Note:**
13974
+
If you use the [local emulator](/docs/guides/local-development.md) during development, be aware that any cycles metrics you observe there should **not** be used as a proxy for mainnet costs.
13988
13975
13989
-
Pricing information was last reviewed on Jan. 7, 2026.
13990
-
13991
-
Figures are estimates and may change as the Internet Computer evolves.
13976
+
The emulator runs on a single [node](/docs/terminology.md#node), whereas on mainnet your data is replicated across all nodes in a [subnet](/docs/terminology.md#subnet). This replication is what makes the Internet Computer resilient, but it also means real-world costs are meaningfully higher than what local testing suggests.
13992
13977
13993
13978
# Terminology
13994
13979
@@ -14051,6 +14036,10 @@ It acts as a comprehensive entity, encompassing memory, permission checks, and o
14051
14036
14052
14037

14053
14038
14039
+
## Node
14040
+
14041
+
A node is an individual machine that participates in the Internet Computer network. Nodes are grouped into ([subnets](#subnet)), and data is replicated across all nodes within a subnet, which is what makes the network resilient.
14042
+
14054
14043
## Orbiter
14055
14044
14056
14045
An Orbiter is an optional module you can enable for analytics. It helps you gather valuable, anonymous insights about your users.
Copy file name to clipboardExpand all lines: docs/pricing.md
+14-31Lines changed: 14 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@ keywords:
11
11
deployment costs,
12
12
data costs
13
13
]
14
+
toc_min_heading_level: 2
15
+
toc_max_heading_level: 2
14
16
---
15
17
16
18
# Pricing
@@ -55,51 +57,32 @@ Each module is provisioned with approximately 1.5 T Cycles in usable resources.
55
57
56
58
- Additional transaction fees may be introduced in the future, and pricing and models are subject to change.
57
59
60
+
- Transaction costs were last reviewed on Jan. 7, 2026.
61
+
58
62
:::
59
63
60
64
---
61
65
62
66
## Estimating Costs
63
67
64
-
Below are a few examples of costs provided for explanatory purposes only. Actual costs may vary depending on network conditions and usage patterns.
65
-
66
-
:::tip
67
-
68
-
You can use the [Pricing Calculator](https://internetcomputer.org/docs/current/developer-docs/cost-estimations-and-examples) to get a better rough estimate of how much your project might cost.
69
-
70
-
:::
71
-
72
-
### Storage
73
-
74
-
The estimated annual cost of storing 1 gigabyte of data on the Internet Computer is $5.
68
+
We don't have reliable up-to-date numbers to share here. Costs on the Internet Computer vary depending on subnet configuration, network conditions, and your specific usage patterns. Rather than giving you figures that may mislead, we encourage you to run your own experiments and calculations using the official resources:
75
69
76
-
To calculate the estimated monthly cost for 1 gigabyte of storage, you can refer to the table provided on the Internet Computer [website](https://internetcomputer.org/docs/current/developer-docs/gas-cost).
| GB Storage Per Second | $0.000000169749 | $0.000000443960 |
81
-
| Derived to a 30-day month | $0.439 | $1.149 |
82
-
| Derived to a 12-month year | $5.268 | $13.788 |
73
+
### What to expect broadly
83
74
84
-
### Deployment
75
+
Hosting static assets and running lightweight workloads is generally competitive. However, compute and storage costs for data-heavy applications are significantly higher than traditional cloud infrastructure. To put it plainly: the infrastructure, the Internet Computer, is likely more expensive compared to conventional alternatives, and it is better suited for small datasets than for large-scale data-intensive workloads.
85
76
86
-
Based on our experimentation, deploying an entire website, such as the website http://juno.build, which consists of approximately 900 files (including compressed versions of the files) and is 40 MB in size, is estimated to cost around 0.114 T Cycles, which converts to 0.0105 ICP ($0.15).
77
+
That said, the free tier gives you a solid starting point. You'll have enough resources to build, experiment, and evaluate whether ICP's cost model works for your use case before spending anything.
87
78
88
-
It's important to note that subsequent deployments of your project can have significantly lower costs if the build consistency of your application is maintained. Juno only uploads new files to your Satellites, which helps reduce costs compared to initial deployments.
79
+
And again, we recommend doing your own research. DYOR prevails.
89
80
90
-
### Data
81
+
### A note on emulator metrics
91
82
92
-
Querying data on the Internet Computer is currently free, so there are no additional costs to expect when reading data.
83
+
If you use the [local emulator](./guides/local-development.mdx) during development, be aware that any cycles metrics you observe there should **not** be used as a proxy for mainnet costs.
93
84
94
-
In terms of persisting data, based on our experience, storing 100 instances of a JSON sample data with approximately 90 fields, totaling around 900 bytes, costs approximately 0.0005 TCycles ($0.000675). This means that the cost for a single transaction of this nature would be approximately 0.000005 TCycles or 0.0000017 ICP ($0.00000675).
95
-
96
-
:::note
97
-
98
-
Pricing information was last reviewed on Jan. 7, 2026.
99
-
100
-
Figures are estimates and may change as the Internet Computer evolves.
101
-
102
-
:::
85
+
The emulator runs on a single [node](./terminology.mdx#node), whereas on mainnet your data is replicated across all nodes in a [subnet](./terminology.mdx#subnet). This replication is what makes the Internet Computer resilient, but it also means real-world costs are meaningfully higher than what local testing suggests.
Copy file name to clipboardExpand all lines: docs/terminology.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,10 @@ It acts as a comprehensive entity, encompassing memory, permission checks, and o
52
52
53
53

54
54
55
+
## Node
56
+
57
+
A node is an individual machine that participates in the Internet Computer network. Nodes are grouped into [subnets](#subnet), and data is replicated across all nodes within a subnet, which is what makes the network resilient.
58
+
55
59
## Orbiter
56
60
57
61
An Orbiter is an optional module you can enable for analytics. It helps you gather valuable, anonymous insights about your users.
0 commit comments