Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
daleiz committed Jan 8, 2024
1 parent 680937c commit 7413987
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/platform/create-connectors-in-platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ After filling in the configuration, click the **Create** button to create the so

::: tip

For more details about the configuration of each source connector, please refer to [Connectors](../ingest-and-distribute/connectors.md).
For more details about the configuration of each source connector, please refer to [Connectors](../develop/ingest-and-distribute/connectors.md).

:::

Expand Down
6 changes: 3 additions & 3 deletions docs/platform/stream-in-platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ This tutorial guides you on how to create and manage streams in HStream Platform

After clicking the **New stream** button, you will be directed to the **New Stream** page. You need to set some necessary properties for your stream and create it:

1. Specify the **stream name**. You can refer to [Guidelines to name a resource](../write/stream.md#guidelines-to-name-a-resource) to name a stream.
1. Specify the **stream name**. You can refer to [Guidelines to name a resource](../develope/write/stream.md#guidelines-to-name-a-resource) to name a stream.

2. Fill in with the number of **shards** you want this stream to have. The default value is **1**.

> Shard is the primary storage unit for the stream. For more details, please refer to [Sharding in HStreamDB](../write/shards.md#sharding-in-hstreamdb).
> Shard is the primary storage unit for the stream. For more details, please refer to [Sharding in HStreamDB](../develope/write/shards.md#sharding-in-hstreamdb).
3. Fill in with the number of **replicas** for each stream. The default value is **3**.

Expand All @@ -27,7 +27,7 @@ After clicking the **New stream** button, you will be directed to the **New Stre
5. Click the **Confirm** button to create a stream.

::: tip
For more details about **replicas** and **retention**, please refer to [Attributes of a Stream](../write/stream.md#attributes-of-a-stream).
For more details about **replicas** and **retention**, please refer to [Attributes of a Stream](../develope/write/stream.md#attributes-of-a-stream).
:::

::: warning
Expand Down
4 changes: 2 additions & 2 deletions docs/platform/subscription-in-platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This tutorial guides you on how to create and manage subscriptions in HStream Pl

After clicking the **New subscription** button, you will be directed to the **New subscription** page. You need to set some necessary properties for your stream and create it:

1. Specify the **Subscription ID**. You can refer to [Guidelines to name a resource](../write/stream.md#guidelines-to-name-a-resource) to name a subscription.
1. Specify the **Subscription ID**. You can refer to [Guidelines to name a resource](../develope/write/stream.md#guidelines-to-name-a-resource) to name a subscription.

2. Select a stream as the source from the dropdown list.

Expand All @@ -25,7 +25,7 @@ After clicking the **New subscription** button, you will be directed to the **Ne
5. Click the **Confirm** button to create a subscription.

::: tip
For more details about **ACK timeout** and **max unacked records**, please refer to [Attributes of a Subscription](../receive/subscription.md#attributes-of-a-subscription).
For more details about **ACK timeout** and **max unacked records**, please refer to [Attributes of a Subscription](../develop/receive/subscription.md#attributes-of-a-subscription).
:::

::: warning
Expand Down
2 changes: 1 addition & 1 deletion docs/platform/write-in-platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A record is like a piece of JSON data. You can add arbitrary fields to a record,
A record also ships with a partition key, which is used to determine which shard the record will be allocated to and improve the read/write performance.

::: tip
For more details about the partition key, please refer to [Partition Key](../write/write.md#write-records-with-partition-keys).
For more details about the partition key, please refer to [Partition Key](../develope/write/write.md#write-records-with-partition-keys).
:::

Take the following steps to write records to a stream:
Expand Down
4 changes: 2 additions & 2 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ In particular, this release provides connectors listed below:
- [sink-mysql](https://github.com/hstreamdb/hstream-connectors/blob/main/docs/specs/sink_mysql_spec.md)
- [sink-postgresql](https://github.com/hstreamdb/hstream-connectors/blob/main/docs/specs/sink_postgresql_spec.md)

You can refer to [the documentation](./ingest-and-distribute/overview.md) to learn more about
You can refer to [the documentation](./develope/ingest-and-distribute/overview.md) to learn more about
HStream IO.

#### New Stream Processing Engine
Expand All @@ -451,7 +451,7 @@ magnificently. The new engine also supports **multi-way join**, **sub-queries**,
and **more** general materialized views.

The feature is still experimental. For try-outs, please refer to
[the SQL guides](./process/sql.md).
[the SQL guides](./develop/process/sql.md).

#### Gossip-based HServer Clusters

Expand Down
6 changes: 3 additions & 3 deletions docs/start/hstream-console.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ you can intuitively visualize the resource status, and easily find out the bottl
### Data synchronization

With connectors in HStream Console, you can gain the ability to synchronize data between HStreamDB and other data sources, such as MySQL, PostgreSQL, and Elasticsearch.
Check out [HStream IO Overview](../ingest-and-distribute/overview.md) to learn more about connectors.
Check out [HStream IO Overview](../develop/ingest-and-distribute/overview.md) to learn more about connectors.

## Next steps

To learn more about HStreamDB's resources, follow the links below:

- [Streams](../write/stream.md)
- [Subscriptions](../receive/subscription.md)
- [Streams](../develop/write/stream.md)
- [Subscriptions](../develop/receive/subscription.md)

0 comments on commit 7413987

Please sign in to comment.