172

How fast is Ethereum blockchain growing and how big is it likely to get in the future? Is it still about 1 GB per month? Are there any data pruning or compression algorithms in place or planned to be used?

2
  • 2
    And on pruning.
    – q9f
    Commented Feb 2, 2016 at 1:14
  • 1
    Fun fact - as of Oct 2022, Ethereum smart contracts have risen from 0 smart contracts in 2015 to a high of 44,023 smart contracts during the 2018 bull market, to All-Time-Highs in 2022 with 117,922 smart contracts, a 50% increase since 2021. So basically, the # of blocks are increasing and at a faster and faster rate. (source: alchemy.com/blog/web3-developer-report-q3-2022)
    – A. Gupta
    Commented Oct 20, 2022 at 20:51

8 Answers 8

186

Update on Dec 9th, 2018 / Block ~ 6_850_000 - It's quite an annoyance to keep this answer updated.

Geth (Go)

Last Update: May 14th, 2018 / Block ~ 5_600_000

Client / Mode         | Block Number   | Disk Space
======================|================|===========
geth light            | 5_600_000      | 363M
geth fast full        | 5_600_000      | 142G
geth full full        | ?_???_??? [1]  | 239G + [1]
geth full archive     | 4_980_000 [2]  | 671G
  • [1] My disk was full, I didn't expect this to run out of space and wasn't able to repeat this sync mode
  • [2] I didn't manage to sync the archive node within six weeks, unfortunately fully.
  • Geth 1.8.3
  • Ubuntu 16.4 LTS, VPS instance with SSD backed storage

Parity (Rust)

Last Update: May 14th, 2018 / Block ~ 5_600_000

Client / Mode         | Block Number   | Disk Space
======================|================|===========
parity light          | 5_600_000      |  89M
parity warp fast      | 5_600_000      |  82G
parity full fast      | 5_600_000      |  78G
parity full archive   | 5_600_000      | 1.1T
  • Parity 1.10.0
  • Ubuntu 16.4 LTS, VPS instance with SSD backed storage

Update: Nov 29th, 2017. Afri has written a blog post about this, esp. parity pruning modes: The Ethereum-blockchain size will not exceed 1TB anytime soon.

Some Sheet.

11
  • 2
    If ethereum gets used as much as bitcoin is today (around 5tx/sec), that 28x the growth rate. Assuming people use more smart contracts and don't just speculate like they do with Bitcoin, you will see lots of smaller transactions. There will be some consolidation as more transactions are mined in a block (which uses a bit fewer bytes per transaction), but overall, I would expect 600gb-1TB per year of block chain growth if Ethereum gets popular. Commented Feb 2, 2016 at 18:04
  • 1
    @5chdn Assuming these figures are still correct, if I were to set up a new wallet and did my first sync using geth -fast, the bandwidth I would use for that first sync would be around 4.348GB ??? Is that right?
    – TryHarder
    Commented Nov 22, 2016 at 23:14
  • 2
    Yes. Should be a little bit more by now.
    – q9f
    Commented Nov 23, 2016 at 11:31
  • 4
    Post your ETH address, I'll send you a donation.
    – firescar96
    Commented Jul 9, 2017 at 18:24
  • 1
    @alper one is a full node (pruned historical states) and the other one is an archive node (all historical states), see dev.to/5chdn/…
    – q9f
    Commented Aug 6, 2019 at 9:28
37

Currently, the network is growing at around 1GB per month. It's hard to anticipate how large it could grow and at what pace, but there are already efforts underway to implement state-tree pruning in various clients. These techniques will contribute towards so-called "light-clients".

In linked chart above, Block size evolution estimating block size in bytes over time that can be used to estimate velocity (rate). The most appropriate graph depends on what you mean specifically by block growth rate.

3
  • 2
    which one (or combination?) of the charts linked above shows the block growth rate? None of the individual charts seems to show this directly.
    – zanzu
    Commented Feb 18, 2016 at 17:03
  • "Block size evolution" will be an estimate of block size in bytes over time that can be used to estimate velocity (rate). The most appropriate graph depends on what you mean specifically by "block growth rate" Commented Feb 18, 2016 at 17:09
  • 1
    I tried to find a definition of what etherchain.org means by "block size evolution", but I failed to find any. My interpretation (possibly wrong) is that this represents size of individual blocks averaged on a daily basis. To translate this to an estimate of the blockchain size growth rate over a month (which is what I meant to write in my previous message), we'd need to multiply this by the number of blocks added in a month.
    – zanzu
    Commented Feb 18, 2016 at 17:18
20

As of 11/01/2016, ethereum blockchain (ETH, i.e. supporting DAO fork) downloaded in full mode occupies 75GB on my drive. Client is geth (go-ethereum), version 1.4.18, built from source cloned from https://github.com/ethereum/go-ethereum, running on CentOS Linux release 7.2.1511.

1
  • As of today should be, as of mm/dd/yyyy for each and every answer... Commented May 3, 2018 at 20:39
18

I've stumbled upon the links bellow :

1- provides an online chart which presents the Ethereum's blockchain current size evolution alongside the Bitcoin blockchain's size.

http://bc.daniel.net.nz/ enter image description here

2- provides details about the Ethereum network including the blockchain size https://bitinfocharts.com/ethereum/

10

Benchmarks done on Homestead in june 2016

Geth 1.4.9 on i7 3720QM 16GB ram and SSD

-----------------------------------------
|      -    |  Full  |  Fast  |  Light  |
|-----------|--------|--------|---------|
| Disk      |  22GB  | 4.8GB  |  600 Mo |
| Time      |  5h    | 21m    |  21m    |
-----------------------------------------

Parity 1.2 on i7 3720QM 16GB ram and SSD

-------------------------------------------
| -         | Archive  |  Fast  |  Light  |
|-----------|----------|--------|---------|
| Disk      |  22GB    | 3.7GB  |  2.5GB  |
| Time      |  2h      | 1h30   |  2h     |
-------------------------------------------
2
  • 1
    I wonder why my results disk space needs from one month ago are higher than yours now...
    – q9f
    Commented Jul 1, 2016 at 9:04
  • i will update them in few hours
    – Ellis
    Commented Jul 1, 2016 at 9:07
9

As of February 1, the blockchain size is ~940k blocks, with a new block being created every 17.2 seconds. This means, on average, the blockchain increases by 152,790 blocks every month.

A rough average block size, at this time, is around 1,225 bytes. With this average block size, the blockchain size increase is 187MB per month (152,790 blocks x 1,225 bytes).

Reference used: https://www.etherscan.io

6

I'm syncing a node in full mode. At the moment it' on block 5005306 (end of January 2018) and it is 700Gb. It's probably been running for more than 20 days

5
  • Did you use geth or parity. If geth did you use --gcmode=archive option? Commented Mar 4, 2018 at 18:02
  • geth with the syncmode=full option. I did not use the gcmode option. I dindt even know what it was before your commet. It seems something new on geth 1.8? Im using 1.7
    – Diego
    Commented Mar 4, 2018 at 20:20
  • Yes in Geth 1.8 there is automatic pruning enabled by default. gcmode=archive disables it. Commented Mar 4, 2018 at 20:35
  • am I correct in assuming that's new to 1.8? because on 1.7 sync mode full is enough to avoid prunning
    – Diego
    Commented Mar 4, 2018 at 22:00
  • Yes that’s correct. Commented Mar 4, 2018 at 22:38
4

2023 update.

You can now use chainstats, a page made by Chainstack, a blockchain infrastructure provider (full disclosure, I'm a dev advocate at Chainstack and worked on this page).

This app displays the current size of all the public network Chainstack support based on the Protocol, node type (full or archive), and blockchain client.

It is automatically updated when the size changes in the resources required by the servers.

Not the answer you're looking for? Browse other questions tagged or ask your own question.