Skip to content

Commit 9e4561a

Browse files
committed
final updates
1 parent a178db6 commit 9e4561a

File tree

7 files changed

+38
-38
lines changed

7 files changed

+38
-38
lines changed

_partials/_livesync-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To sync data from your $PG database to your $SERVICE_LONG using $CONSOLE:
9191
![Postgres connector start](https://assets.timescale.com/docs/images/tiger-cloud-console/pg-connector-start-tiger-cloud.png)
9292

9393
1. In the `Select table` dropdown, select the tables to sync.
94-
1. To select the tables to sync, click `Select table +` .
94+
1. Click `Select tables +` .
9595

9696
$CONSOLE checks the table schema and, if possible, suggests the column to use as the time dimension in a $HYPERTABLE.
9797
1. Click `Create Connector`.

_partials/_livesync-limitations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
* There is WAL volume growth on the source $PG instance during large table copy.
1717

18-
* Continuous Aggregates Invalidation
18+
* Continuous aggregate invalidation
1919

20-
LiveSync uses `session_replication_role=replica` during data replication,
20+
The connector uses `session_replication_role=replica` during data replication,
2121
which prevents table triggers from firing. This includes the internal
2222
triggers that mark continuous aggregates as invalid when underlying data
2323
changes.
@@ -35,7 +35,7 @@
3535
- Queries returning incomplete results.
3636

3737
If the continuous aggregate exists in the source database, best
38-
practice is to add it to the live-sync publication. If it only exists on the
38+
practice is to add it to the $PG connector publication. If it only exists on the
3939
target database, manually refresh the continuous aggregate using the `force`
4040
option of [refresh_continuous_aggregate][refresh-caggs].
4141

migrate/livesync-for-postgresql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Connect a Postgres data source to your service
2+
title: Sync data from a Postgres data source to your service
33
excerpt: Synchronize updates to your primary Postgres database with the corresponding Tiger Cloud service in real time
44
products: [cloud]
55
keywords: [migration, low-downtime, backup]
@@ -12,7 +12,7 @@ import LivesyncConsole from "versionContent/_partials/_livesync-console.mdx"
1212
import LivesyncTerminal from "versionContent/_partials/_livesync-terminal.mdx"
1313
import EarlyAccessNoRelease from "versionContent/_partials/_early_access.mdx";
1414

15-
# Connect a $PG data source to your $SERVICE_SHORT
15+
# Sync data from a $PG data source to your $SERVICE_SHORT
1616

1717
You use the $PG_CONNECTOR in $CLOUD_LONG to synchronize all data or specific tables from a $PG database instance to your
1818
$SERVICE_SHORT, in real time. You run the connector continuously, turning $PG into a primary database with your

migrate/livesync-for-s3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Connect an S3 data source to your service
2+
title: Sync data from an S3 data source to your service
33
excerpt: Synchronize data from S3 to Tiger Cloud service in real time
44
products: [cloud]
55
keywords: [migration, low-downtime, backup]
@@ -9,7 +9,7 @@ tags: [recovery, logical backup, replication]
99
import PrereqCloud from "versionContent/_partials/_prereqs-cloud-only.mdx";
1010
import EarlyAccessNoRelease from "versionContent/_partials/_early_access.mdx";
1111

12-
# Connect an S3 data source to your $SERVICE_SHORT
12+
# Sync data from an S3 data source to your $SERVICE_SHORT
1313

1414
You use the $S3_CONNECTOR in $CLOUD_LONG to synchronize CSV and Parquet files from an S3 bucket to your $SERVICE_LONG in real time. The connector runs continuously, enabling you to leverage $CLOUD_LONG as your analytics database with data constantly synced from S3. This lets you take full advantage of $CLOUD_LONG's real-time analytics capabilities without having to develop or manage custom ETL solutions between S3 and $CLOUD_LONG.
1515

migrate/page-index/page-index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ module.exports = [
1717
{
1818
title: "Upload a file using Console",
1919
href: "upload-file-using-console",
20-
excerpt: "Import data into a Tiger Cloud service using Console",
20+
excerpt: "Upload files into a Tiger Cloud service using Console",
2121
},
2222
{
2323
title: "Upload a file using the terminal",
2424
href: "upload-file-using-terminal",
25-
excerpt: "Import data into a Tiger Cloud service using the terminal",
25+
excerpt: "Upload files into a Tiger Cloud service using the terminal",
2626
},
2727
{
2828
title: "Migrate data",

migrate/upload-file-using-console.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Import data using Tiger Cloud Console
3-
excerpt:
2+
title: Upload a file into your service using Tiger Cloud Console
3+
excerpt: You can upload CSV, Parquet, and text files into your service using Tiger Cloud Console. Just drag and drop from your local machine, or provide a path to the file in S3
44
products: [cloud]
55
keywords: [import]
66
---
77

88
import ImportPrerequisitesCloudNoConnection from "versionContent/_partials/_prereqs-cloud-no-connection.mdx";
99
import EarlyAccessGeneral from "versionContent/_partials/_early_access.mdx";
1010

11-
# Import data into your $SERVICE_SHORT using $CONSOLE_LONG
11+
# Upload a file into your $SERVICE_SHORT using $CONSOLE_LONG
1212

13-
You can import data into your $SERVICE_SHORT using $CONSOLE_LONG. This page explains how to import CSV, Parquet, and text files, from your local machine and from an S3 bucket.
13+
You can upload files into your $SERVICE_SHORT using $CONSOLE_LONG. This page explains how to upload CSV, Parquet, and text files, from your local machine and from an S3 bucket.
1414

15-
<Tabs label="Import files using Tiger Cloud Console" persistKey="console-import">
15+
<Tabs label="Upload files using Tiger Cloud Console" persistKey="console-import">
1616

1717
<Tab title="From a local machine" label="local-import">
1818

@@ -32,20 +32,20 @@ To upload a CSV file to your $SERVICE_SHORT:
3232

3333
<Procedure>
3434

35-
1. **Select your $SERVICE_SHORT in [$CONSOLE_SHORT][console], then click `Actions` > `Import data` > `Upload .CSV`**
35+
1. **Select your $SERVICE_SHORT in [$CONSOLE_SHORT][console], then click `Actions` > `Import data` > `Upload your files` > `Upload CSV file`**
3636

37-
![Import from CSV into Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-csv.png)
37+
![Import from CSV into Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-csv-file.png)
3838

3939
1. **Click to browse, or drag the file to import**
4040
1. **Configure the import**
4141

42-
![Configure the CSV import in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-csv-import.png)
42+
![Configure the CSV import in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-csv-file-import.png)
4343

4444
- Set a delimiter.
4545
- Toggle to skip or keep the header.
4646
- Select to ingest the data into an existing table or create a new one.
4747
- Provide the new or existing table name.
48-
- <Optional /> For a new table with a time column, toggle the time column to create a $HYPERTABLE instead of a regular table.
48+
- <Optional /> For a new table with a time column, toggle the time column to create a hypertable instead of a regular table.
4949

5050
1. **Click `Process CSV file`**
5151

@@ -61,18 +61,18 @@ To upload a Parquet file to your $SERVICE_SHORT:
6161

6262
<Procedure>
6363

64-
1. **Select your $SERVICE_SHORT in [$CONSOLE_SHORT][console], then click `Actions` > `Import data` > `Upload Parquet`**
64+
1. **Select your $SERVICE_SHORT in [$CONSOLE_SHORT][console], then click `Actions` > `Import data` > `Upload your files` > `Upload Parquet file`**
6565

66-
![Import from Parquet into Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-parquet.png)
66+
![Import from Parquet into Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-parquet-file.png)
6767

6868
1. **Click to browse, or drag the file to import**
6969
1. **Configure the import**
7070

71-
![Configure the Parquet import in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-parquet-import.png)
71+
![Configure the Parquet import in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-parquet-file-import.png)
7272

7373
- Select to ingest the data into an existing table or create a new one.
7474
- Provide the new or existing table name.
75-
- <Optional /> For a new table with a time column, toggle the time column to create a $HYPERTABLE instead of a regular table.
75+
- <Optional /> For a new table with a time column, toggle the time column to create a hypertable instead of a regular table.
7676

7777
1. **Click `Process Parquet file`**
7878

@@ -88,16 +88,16 @@ To upload a TXT or MD file to your $SERVICE_SHORT:
8888

8989
<Procedure>
9090

91-
1. **Select your $SERVICE_SHORT in $CONSOLE_SHORT, then click `Actions` > `Import data` > `Upload text files`**
91+
1. **Select your $SERVICE_SHORT in $CONSOLE_SHORT, then click `Actions` > `Import data` > `Upload your files` > `Upload Text file`**
9292

93-
![Import from a text file into Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-txt.png)
93+
![Import from a text file into Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-txt-file.png)
9494

9595
1. **Click to browse, or drag and drop the file to import**
9696
1. **Configure the import**
9797

9898
Provide a name to create a new table, or select an existing table to add data to.
9999

100-
![Configure the text file import in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-txt-import.png)
100+
![Configure the text file import in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-txt-file-import.png)
101101

102102
1. **Click `Upload files`**
103103

@@ -132,11 +132,11 @@ To import a CSV file from an S3 bucket:
132132

133133
<Procedure>
134134

135-
1. **Select your $SERVICE_SHORT in $CONSOLE_SHORT, then click `Actions` > `Import from S3`**
135+
1. **Select your $SERVICE_SHORT in $CONSOLE_SHORT, then click `Actions` > `Import data` > `Explore import options` > `Import from S3`**
136136

137137
1. **Select your file in the S3 bucket**
138138

139-
![Import CSV from S3 in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-csv-from-s3.png)
139+
![Import CSV from S3 in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/import-csv-file-from-s3.png)
140140

141141
1. Provide your file path.
142142
1. Select `CSV` in the file type dropdown.
@@ -147,13 +147,13 @@ To import a CSV file from an S3 bucket:
147147

148148
1. **Configure the import**
149149

150-
![Configure CSV import from S3 in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-configure-csv-import-from-s3.png)
150+
![Configure CSV import from S3 in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/configure-csv-file-import-from-s3.png)
151151

152152
- Set a delimiter.
153153
- Toggle to skip or keep the header.
154154
- Select to ingest the data into an existing table or create a new one.
155155
- Provide the new or existing table name.
156-
- <Optional /> For a new table with a time column, toggle the time column to create a $HYPERTABLE instead of a regular table.
156+
- <Optional /> For a new table with a time column, toggle the time column to create a hypertable instead of a regular table.
157157

158158
1. **Click `Process CSV file`**
159159

@@ -173,7 +173,7 @@ To import a Parquet file from an S3 bucket:
173173

174174
1. **Select your file in the S3 bucket**
175175

176-
![Import Parquet from S3 in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-parquet-from-s3.png)
176+
![Import Parquet from S3 in Tiger Cloud](https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-cloud-import-parquet-file-from-s3.png)
177177

178178
1. Provide your file path.
179179
1. Select `Parquet` in the file type dropdown.
@@ -186,7 +186,7 @@ To import a Parquet file from an S3 bucket:
186186

187187
- Select `Create a new table for your data` or `Ingest data to an existing table`.
188188
- Provide the new or existing table name.
189-
- <Optional /> For a new table with a time column, toggle the time column to create a $HYPERTABLE instead of a regular table.
189+
- <Optional /> For a new table with a time column, toggle the time column to create a hypertable instead of a regular table.
190190

191191
1. **Click `Process Parquet file`**
192192

migrate/upload-file-using-terminal.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Import data using the terminal
3-
excerpt:
4-
products: [cloud, self_hosted]
2+
title: Upload a file into your service using the terminal
3+
excerpt: You can upload CSV, MySQL, and Parquet files into your service using the terminal.
4+
products: [cloud]
55
keywords: [import]
66
---
77

88
import ImportPrerequisites from "versionContent/_partials/_prereqs-cloud-and-self.mdx";
99
import SetupConnectionString from "versionContent/_partials/_migrate_import_setup_connection_strings_parquet.mdx";
1010

11-
# Import data into your $SERVICE_SHORT using the terminal
11+
# Upload a file into your $SERVICE_SHORT using the terminal
1212

13-
This page shows you how to import data in CSV, MySQL, and Parquet files from a source machine into your $SERVICE_SHORT using the terminal.
13+
This page shows you how to upload CSV, MySQL, and Parquet files from a source machine into your $SERVICE_SHORT using the terminal.
1414

15-
<Tabs label="Import data using the terminal" persistKey="file-import">
15+
<Tabs label="Upload files using the terminal" persistKey="file-import">
1616

1717
<Tab title="From CSV" label="import-csv">
1818

0 commit comments

Comments
 (0)