Skip to content

Commit df038d8

Browse files
Getting Started image updates (#1565)
1 parent 6c0a09d commit df038d8

File tree

7 files changed

+99
-5
lines changed

7 files changed

+99
-5
lines changed

pgml-cms/docs/.gitbook/assets/Getting-Started_FDW-Diagram.svg

Lines changed: 47 additions & 0 deletions
Loading

pgml-cms/docs/.gitbook/assets/Getting-Started_Logical-Replication-Diagram.svg

Lines changed: 47 additions & 0 deletions
Loading
-35.3 KB
Binary file not shown.
Binary file not shown.

pgml-cms/docs/introduction/getting-started/import-your-data/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Just like any PostgreSQL database, PostgresML can be configured as the primary a
1212

1313
If your intention is to use PostgresML as your primary database, your job here is done. You can use the connection credentials provided and start building your application on top of in-database AI right away.
1414

15-
## [Logical replica](logical-replication/)
15+
## [Logical replication](logical-replication/)
1616

1717
If your primary database is hosted elsewhere, for example AWS RDS, or Azure Postgres, you can get your data replicated to PostgresML in real time using logical replication.
1818

19-
<figure class="my-3 py-3"><img src="../../../.gitbook/assets/logical_replication_1.png" alt="Logical replication" width="80%"><figcaption></figcaption></figure>
19+
<figure class="my-3 py-3"><img src="../../../.gitbook/assets/Getting-Started_Logical-Replication-Diagram.svg" alt="Logical replication" width="80%"><figcaption></figcaption></figure>
2020

2121
Having access to your data immediately is very useful to
2222
accelerate your machine learning use cases and removes the need for moving data multiple times between microservices. Latency-sensitive applications should consider using this approach.
@@ -25,7 +25,7 @@ accelerate your machine learning use cases and removes the need for moving data
2525

2626
Foreign data wrappers are a set of PostgreSQL extensions that allow making direct connections from inside the database directly to other databases, even if they aren't running on Postgres. For example, Postgres has foreign data wrappers for MySQL, S3, Snowflake and many others.
2727

28-
<figure class="my-3 py-3"><img src="../../../.gitbook/assets/fdw_1.png" alt="Foreign data wrappers" width="80%"><figcaption></figcaption></figure>
28+
<figure class="my-3 py-3"><img src="../../../.gitbook/assets/Getting-Started_FDW-Diagram.svg" alt="Foreign data wrappers" width="80%"><figcaption></figcaption></figure>
2929

3030
FDWs are useful when data access is infrequent and not latency-sensitive. For many use cases, like offline batch workloads and not very busy websites, this approach is suitable and easy to get started with.
3131

pgml-cms/docs/introduction/getting-started/import-your-data/foreign-data-wrappers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Connect your production database to PostgresML using Foreign Data W
66

77
Foreign data wrappers are a set of Postgres extensions that allow making direct connections to other databases from inside your PostgresML database. Other databases can be your production Postgres database on RDS or Azure, or another database engine like MySQL, Snowflake, or even an S3 bucket.
88

9-
<figure class="my-3 py-3"><img src="../../../.gitbook/assets/fdw_1.png" alt="Foreign data wrappers" width="80%"><figcaption></figcaption></figure>
9+
<figure class="my-3 py-3"><img src="../../../.gitbook/assets/Getting-Started_FDW-Diagram.svg" alt="Foreign data wrappers" width="80%"><figcaption></figcaption></figure>
1010

1111
## Getting started
1212

pgml-cms/docs/introduction/getting-started/import-your-data/logical-replication/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Stream data from your primary database to PostgresML in real time u
66

77
Logical replication allows your PostgresML database to copy data from your primary database to PostgresML in real time. As soon as your customers make changes to their data on your website, those changes will become available in PostgresML.
88

9-
<figure class="my-3 py-3"><img src="../../../../.gitbook/assets/logical_replication_1.png" alt="Logical replication" width="80%"><figcaption></figcaption></figure>
9+
<figure class="my-3 py-3"><img src="../../../../.gitbook/assets/Getting-Started_Logical-Replication-Diagram.svg" alt="Logical replication" width="80%"><figcaption></figcaption></figure>
1010

1111
## Getting started
1212

0 commit comments

Comments
 (0)