Skip to content

Commit c16172a

Browse files
committed
Fixes typo in hyper_process.md
1 parent 53d059d commit c16172a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

website/docs/hyper-api/hyper_process.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ with HyperProcess(telemetry=Telemetry.SEND_USAGE_DATA_TO_TABLEAU) as hyper:
1515
This starts up a local Hyper database server, and then prints the connection string (`endpoint`).
1616
This connection string describes the used protocol (TCP, domain sockets, ...) and the corresponding information like port numbers.
1717
The `Connection` class can then be used to connect against this endpoint.
18-
While the `HyperProcess` is running,, you can create and connect to as many `.hyper` files as you want.
18+
While the `HyperProcess` is running, you can create and connect to as many `.hyper` files as you want.
1919

2020
After you no longer need a Hyper database server, you should shutdown the `HyperProcess`.
2121
If you call the `HyperProcess` in a `with` statement (Python), `using` statement (C#), scope (C++), or `try-with-resources` statement (Java), the `hyperd` process will safely shutdown automatically at the end of the `with` statement.
2222

2323
## Performance best practices {#performance}
2424

2525
Compared to other database systems, Hyper starts up very fast (in the order of 100 milliseconds).
26-
Still, starting up and shutting down the server takes time
26+
Still, starting up and shutting down the server takes time.
2727
Hence, you should keep the process running and only close or shutdown the `HyperProcess` when your application is finished.
2828
E.g., when updating multiple tables inside a `.hyper` file, do not restart the `HyperProcess` for every table, but instead use the same process for updating all of your tables.
2929

30-
Futhermore, you should only have one instance of Hyper running at any given time.
30+
Furthermore, you should only have one instance of Hyper running at any given time.
3131
Hyper internally monitors its memory assumption, and makes sure that it only uses up to 80% of your system's RAM memory, such that your overall system stays responsive.
3232
If multiple Hyper processes are running at the same time, they might overload the system, and Hyper's internal resource management mechanisms will not be able to counteract this.
3333

@@ -39,7 +39,7 @@ To opt out, set `telemetry` to `Telemetry.DO_NOT_SEND_USAGE_DATA_TO_TABLEAU`.
3939

4040
To help us improve Hyper and justify further investments into Hyper API, you can share usage data with us.
4141
Tableau collects data that helps us learn how our products are being used so we can improve existing features and develop new ones.
42-
All usage data is collected and handled according to the [Tableau Privacy Policy](https://tableau.com/privacy)
42+
All usage data is collected and handled according to the [Tableau Privacy Policy](https://tableau.com/privacy).
4343

4444
## Locating the `hyperd` binary
4545

@@ -60,7 +60,7 @@ HyperProcess(telemetry=Telemetry.DO_NOT_SEND_USAGE_DATA_TO_TABLEAU,
6060

6161
Using the `hyper_path`, you can also instruct Hyper API to interact with a different version of `hyperd`.
6262
Thereby, you can use Hyper API to quickly script a benchmark or more extensive test cases for your
63-
new feature or performance improvement
63+
new feature or performance improvement.
6464

6565
:::
6666

@@ -258,7 +258,7 @@ To create a new Hyper database file with this version, set
258258
:::note
259259
The database file format version `3` is supported by Tableau Desktop
260260
2022.4.1 and Server 2023.1 and newer product versions. It is supported by
261-
Tableau Prep 2022.4.1 and newer versions.
261+
Tableau Prep 2022.4.1 and newer versions.
262262
:::
263263

264264
#### version 4
@@ -275,7 +275,7 @@ To create a new Hyper database file with this version, set
275275

276276
:::note
277277
The database file format version `4` will be supported
278-
by Tableau Desktop/Server/Prep 2024.3 and never product versions.
278+
by Tableau Desktop/Server/Prep 2024.3 and newer product versions.
279279
:::
280280

281281
<!-- ### Experimental Settings {#experimentalsettings}

0 commit comments

Comments
 (0)