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
Copy file name to clipboardExpand all lines: app/faq/page.tsx
+55Lines changed: 55 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,14 @@ export default function FAQPage() {
88
88
text: "Postgresus is installed in /opt/postgresus/",
89
89
},
90
90
},
91
+
{
92
+
"@type": "Question",
93
+
name: "Why doesn't Postgresus support PITR (Point-in-Time Recovery)?",
94
+
acceptedAnswer: {
95
+
"@type": "Answer",
96
+
text: "Postgresus intentionally focuses on logical backups rather than PITR for several practical reasons: PITR tools typically need to be installed on the same server as your database; incremental backups cannot be restored without direct access to the database storage drive; managed cloud databases don't allow restoring external PITR backups; cloud providers already offer native PITR capabilities; and for 99% of projects, hourly or daily logical backups provide adequate recovery points without the operational complexity of WAL archiving.",
97
+
},
98
+
},
91
99
],
92
100
}),
93
101
}}
@@ -249,6 +257,53 @@ export default function FAQPage() {
249
257
Postgresus is installed in <code>/opt/postgresus/</code>{" "}
250
258
directory.
251
259
</p>
260
+
261
+
<h2id="why-no-pitr">
262
+
Why doesn't Postgresus support PITR (Point-in-Time
263
+
Recovery)?
264
+
</h2>
265
+
266
+
<p>
267
+
Postgresus intentionally focuses on logical backups rather than
@@ -1218,6 +1207,51 @@ export default function Index() {
1218
1207
question="Is Postgresus an alternative to pg_dump?"
1219
1208
answer="Yes, Postgresus is a modern alternative to pg_dump. Under the hood, Postgresus uses pg_dump for creating backups, but extends it with a user-friendly web interface, automated scheduling, multiple storage destinations, real-time notifications, health monitoring and backup encryption. Think of Postgresus as pg_dump with superpowers — you get all the reliability of pg_dump plus enterprise features without writing shell scripts."
1220
1209
/>
1210
+
<FaqItem
1211
+
number="14"
1212
+
question="Why doesn't Postgresus support PITR (Point-in-Time Recovery)?"
1213
+
answer={
1214
+
<>
1215
+
Postgresus intentionally focuses on logical backups rather
0 commit comments