Re: TF card for PGDATA

From: Christophe Pettus <xof(at)thebuild(dot)com>
To: stercor(at)gmail(dot)com
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: TF card for PGDATA
Date: 2022-10-09 02:00:28
Message-ID: 8D74BE7C-EE86-484E-A859-6861BC27CC48@thebuild.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> On Oct 8, 2022, at 17:14, Theodore M Rolle, Jr. <stercor(at)gmail(dot)com> wrote:
>
> What are the pros and cons of using a TF card to store data?

Assuming by TF you mean Transflash, a trade name for SD cards, the bandwidth on them is not particularly spectacular. The absolute fastest is an SDUC card at ~980Mb/s, and real-life performance of them will be considerably lower than that (especially given that the interfaces that SDUC cards tend to be mounted with are not really design for high speed).

The performance is going to be especially bad in a PostgreSQL environment with constant fsync()-like operations, and the file systems that typically are used on SD cards are not really designed for high performance. (exFAT is not exactly a speed demon.)

Write wear on SD media is also going to be an issue pretty fast.

PostgreSQL will run on SD cards (I've build and run PostgreSQL on Raspberry Pi systems that use SD cards as their secondary storage), but it's not something I'd consider for a serious server.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Kouber Saparev 2022-10-09 07:10:22 Re: Cannot convert partitioned table to a view
Previous Message Theodore M Rolle, Jr. 2022-10-09 00:14:01 TF card for PGDATA