Skip to content

Commit a90ec81

Browse files
committed
Copied Redis Open Source name to RS 7.8 version
1 parent 148ccd7 commit a90ec81

File tree

26 files changed

+49
-49
lines changed

26 files changed

+49
-49
lines changed

content/operate/rs/7.8/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To view documentation earlier than version 7.4, see the archived website:
7575

7676
## Related info
7777
- [Redis Cloud]({{< relref "/operate/rc" >}})
78-
- [Redis Community Edition]({{< relref "/operate/oss_and_stack" >}})
78+
- [Redis Open Source]({{< relref "/operate/oss_and_stack" >}})
7979
- [Redis Stack]({{< relref "/operate/oss_and_stack/stack-with-enterprise" >}})
8080
- [Glossary]({{< relref "/glossary" >}})
8181

content/operate/rs/7.8/databases/active-active/develop/data-types/hyperloglog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Because it estimates the cardinality by probability, the HyperLogLog algorithm c
1818

1919
## HyperLogLog in Redis
2020

21-
Redis Community Edition implements [HyperLogLog](https://redislabs.com/redis-best-practices/counting/hyperloglog/) (HLL) as a native data structure.
21+
Redis Open Source implements [HyperLogLog](https://redislabs.com/redis-best-practices/counting/hyperloglog/) (HLL) as a native data structure.
2222
It supports adding elements ([PFADD]({{< relref "/commands/pfadd" >}}) to an HLL, counting elements ([PFCOUNT]({{< relref "/commands/pfcount" >}}) of HLLs, and merging of ([PFMERGE]({{< relref "/commands/pfmerge" >}}) HLLs.
2323

2424
Here is an example of a simple write case:
@@ -48,7 +48,7 @@ If a DEL request is received at the same time as any other request (ADD/MERGE/EX
4848
the replicas consistently converge to delete key.
4949
In the observed remove method used by other collections (sets, lists, sorted-sets and hashes),
5050
only the replica that received the DEL request removes the elements, but elements added concurrently in other replicas exist in the consistently converged collection.
51-
We chose to use the DEL-wins method for the CRDT-HLL to maintain the original time and space complexity of the HLL in Redis Community Edition.
51+
We chose to use the DEL-wins method for the CRDT-HLL to maintain the original time and space complexity of the HLL in Redis Open Source.
5252

5353
Here is an example of a DEL-wins case:
5454

@@ -67,7 +67,7 @@ Here is an example of a DEL-wins case:
6767
| t8 | Exists h --> 0 | Exists h --> 0 | \| | t8 | Exists s --> 1 | Exists s --> 1 |
6868
| | | | \| | t9 | SMEMBERS s --> {e2} | SMEMBERS s --> {e2} |
6969

70-
## HLL in Active-Active databases versus HLL in Redis Community Edition
70+
## HLL in Active-Active databases versus HLL in Redis Open Source
7171

7272
In Active-Active databases, we implemented HLL within the CRDT on the basis of the Redis implementation with a few exceptions:
7373

content/operate/rs/7.8/databases/active-active/develop/data-types/streams.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ In the example below, we write to a stream concurrently from two regions. Notice
6565
Notice also that the synchronized streams contain no duplicate IDs. As long as you allow the database to generate your stream IDs, you'll never have more than one stream entry with the same ID.
6666

6767
{{< note >}}
68-
Redis Community Edition uses one radix tree (referred to as `rax` in the code base) to implement each stream. However, Active-Active databases implement a single logical stream using one `rax` per region.
68+
Redis Open Source uses one radix tree (referred to as `rax` in the code base) to implement each stream. However, Active-Active databases implement a single logical stream using one `rax` per region.
6969
Each region adds entries only to its associated `rax` (but can remove entries from all `rax` trees).
7070
This means that XREAD and XREADGROUP iterate simultaneously over all `rax` trees and return the appropriate entry by comparing the entry IDs from each `rax`.
7171
{{< /note >}}
@@ -147,7 +147,7 @@ Because Active-Active databases replicate asynchronously, providing your own IDs
147147
In this scenario, two entries with the ID `100-1` are added at _t1_. After syncing, the stream `x` contains two entries with the same ID.
148148

149149
{{< note >}}
150-
Stream IDs in Redis Community Edition consist of two integers separated by a dash ('-'). When the server generates the ID, the first integer is the current time in milliseconds, and the second integer is a sequence number. So, the format for stream IDs is MS-SEQ.
150+
Stream IDs in Redis Open Source consist of two integers separated by a dash ('-'). When the server generates the ID, the first integer is the current time in milliseconds, and the second integer is a sequence number. So, the format for stream IDs is MS-SEQ.
151151
{{< /note >}}
152152

153153
To prevent duplicate IDs and to comply with the original Redis streams design, Active-Active databases provide three ID modes for XADD:
@@ -181,7 +181,7 @@ rladmin tune db crdb crdt_xadd_id_uniqueness_mode liberal
181181

182182
### Iterating a stream with XREAD
183183

184-
In Redis Community Edition and in non-Active-Active databases, you can use XREAD to iterate over the entries in a Redis Stream. However, with an Active-Active database, XREAD may skip entries. This can happen when multiple regions write to the same stream.
184+
In Redis Open Source and in non-Active-Active databases, you can use XREAD to iterate over the entries in a Redis Stream. However, with an Active-Active database, XREAD may skip entries. This can happen when multiple regions write to the same stream.
185185

186186
In the example below, XREAD skips entry `115-2`.
187187

@@ -211,7 +211,7 @@ Active-Active databases fully support consumer groups with Redis Streams. Here i
211211

212212

213213
{{< note >}}
214-
Redis Community Edition uses one radix tree (`rax`) to hold the global pending entries list and another `rax` for each consumer's PEL.
214+
Redis Open Source uses one radix tree (`rax`) to hold the global pending entries list and another `rax` for each consumer's PEL.
215215
The global PEL is a unification of all consumer PELs, which are disjoint.
216216

217217
An Active-Active database stream maintains a global PEL and a per-consumer PEL for each region.
@@ -302,7 +302,7 @@ In traffic redirection, XREADGROUP may return entries that have been read but no
302302

303303
## Summary
304304

305-
With Active-Active streams, you can write to the same logical stream from multiple regions. As a result, the behavior of Active-Active streams differs somewhat from the behavior you get with Redis Community Edition. This is summarized below:
305+
With Active-Active streams, you can write to the same logical stream from multiple regions. As a result, the behavior of Active-Active streams differs somewhat from the behavior you get with Redis Open Source. This is summarized below:
306306

307307
### Stream commands
308308

content/operate/rs/7.8/databases/active-active/syncer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The syncer process:
2121
1. Reads data from that database instance
2222
1. Writes the data to the local cluster's primary(master) shard
2323

24-
Some replication capabilities are also included in [Redis Community Edition]({{< relref "/operate/oss_and_stack/management/replication" >}}).
24+
Some replication capabilities are also included in [Redis Open Source]({{< relref "/operate/oss_and_stack/management/replication" >}}).
2525

2626
The primary (also known as master) shard at the top of the primary-replica tree creates a replication ID.
2727
This replication ID is identical for all replicas in that tree.

content/operate/rs/7.8/databases/configure/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can manage your Redis Enterprise Software databases with several tools:
2323

2424
- [`crdb-cli`]({{< relref "/operate/rs/7.8/references/cli-utilities/crdb-cli" >}}) for Active-Active database configuration
2525

26-
- [`redis-cli`]({{< relref "/develop/tools/cli" >}}) for Redis Community Edition configuration
26+
- [`redis-cli`]({{< relref "/develop/tools/cli" >}}) for Redis Open Source configuration
2727

2828
- [REST API]({{< relref "/operate/rs/7.8/references/rest-api/_index.md" >}})
2929

@@ -142,7 +142,7 @@ To change capabilities' parameters for an existing database using the Cluster Ma
142142
You must use a client that supports the cluster API to connect to a database that has the cluster API enabled.
143143
{{</note>}}
144144

145-
- **Hashing policy** - You can accept the [standard hashing policy]({{<relref "/operate/rs/7.8/databases/durability-ha/clustering#standard-hashing-policy">}}), which is compatible with Redis Community Edition, or define a [custom hashing policy]({{<relref "/operate/rs/7.8/databases/durability-ha/clustering#custom-hashing-policy">}}) to define where keys are located in the clustered database.
145+
- **Hashing policy** - You can accept the [standard hashing policy]({{<relref "/operate/rs/7.8/databases/durability-ha/clustering#standard-hashing-policy">}}), which is compatible with Redis Open Source, or define a [custom hashing policy]({{<relref "/operate/rs/7.8/databases/durability-ha/clustering#custom-hashing-policy">}}) to define where keys are located in the clustered database.
146146

147147
- [**Database proxy**]({{< relref "/operate/rs/7.8/databases/configure/proxy-policy" >}}) - Determines the number and location of active proxies, which manage incoming database operation requests.
148148

content/operate/rs/7.8/databases/durability-ha/clustering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ is 3, you can increase the number of shards to 6, 9, or 12.
6262

6363
### Standard hashing policy
6464

65-
When using the standard hashing policy, a clustered Redis Enterprise database behaves similarly to a standard [Redis Community Edition cluster]({{< relref "/operate/oss_and_stack/reference/cluster-spec" >}}#hash-tags), except when using multiple hash tags in a key's name. We recommend using only a single hash tag in a key name for hashing in Redis Enterprise.
65+
When using the standard hashing policy, a clustered Redis Enterprise database behaves similarly to a standard [Redis Open Source cluster]({{< relref "/operate/oss_and_stack/reference/cluster-spec" >}}#hash-tags), except when using multiple hash tags in a key's name. We recommend using only a single hash tag in a key name for hashing in Redis Enterprise.
6666

6767
- **Keys with a hash tag**: a key's hash tag is any substring between
6868
`{` and `}` in the key's name. When a key's name

content/operate/rs/7.8/databases/import-export/migrate-to-active-active.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ To migrate a database to Active-Active in different Redis Enterprise clusters:
102102

103103
1. Click **Save**.
104104

105-
## Migrate from Redis Community Edition
105+
## Migrate from Redis Open Source
106106

107-
To migrate a Redis Community Edition database to Active-Active:
107+
To migrate a Redis Open Source database to Active-Active:
108108

109109
1. Create a new Active-Active database. For prerequisites and detailed instructions, see [Create an Active-Active geo-replicated database]({{< relref "/operate/rs/7.8/databases/active-active/create" >}}).
110110

content/operate/rs/7.8/databases/import-export/replica-of/create.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Sources databases can be:
1919
- Located in the same Redis Enterprise Software cluster
2020
- Located in a different Redis Enterprise cluster
2121
- Hosted by a different deployment, e.g. Redis Cloud
22-
- Redis Community Edition databases
22+
- Redis Open Source databases
2323

2424
Your apps can connect to the source database to read and write data; they can also use any replica for read-only access.
2525

@@ -38,7 +38,7 @@ You can configure a database as a Replica Of, where the source database is in on
3838

3939
- [Different Redis Enterprise cluster](#different-cluster)
4040

41-
- [Redis Community Edition cluster](#source-available-cluster)
41+
- [Redis Open Source cluster](#source-available-cluster)
4242

4343
The order of the multiple Replica Of sources has no material impact on replication.
4444

@@ -106,9 +106,9 @@ To configure a Replica Of database in a different Redis Enterprise cluster from
106106

107107
For source databases on different clusters, you can [compress replication data]({{< relref "/operate/rs/7.8/databases/import-export/replica-of/#data-compression-for-replica-of" >}}) to save bandwidth.
108108

109-
### Redis Community Edition cluster {#source-available-cluster}
109+
### Redis Open Source cluster {#source-available-cluster}
110110

111-
To use a database from a Redis Community Edition cluster as a Replica Of source:
111+
To use a database from a Redis Open Source cluster as a Replica Of source:
112112

113113
1. [Create a new database]({{< relref "/operate/rs/7.8/databases/create" >}}) or select an existing database from the **Databases** screen.
114114

content/operate/rs/7.8/networking/cluster-dns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ weight: $weight
1111
url: '/operate/rs/7.8/networking/cluster-dns/'
1212
---
1313

14-
By default, Redis Enterprise Software deployments use DNS to communicate between nodes. You can also use the [Discovery Service]({{< relref "/operate/rs/7.8/databases/durability-ha/discovery-service.md" >}}), which uses IP addresses to connect and complies with the [Redis Sentinel API]({{< relref "/operate/oss_and_stack/management/sentinel" >}}) supported by Redis Community Edition.
14+
By default, Redis Enterprise Software deployments use DNS to communicate between nodes. You can also use the [Discovery Service]({{< relref "/operate/rs/7.8/databases/durability-ha/discovery-service.md" >}}), which uses IP addresses to connect and complies with the [Redis Sentinel API]({{< relref "/operate/oss_and_stack/management/sentinel" >}}) supported by Redis Open Source.
1515

1616
Each node in a Redis Enterprise cluster includes a small DNS server to manage internal functions, such as high availability, automatic failover, automatic migration, and so on.
1717
Nodes should only run the DNS server included with the software. Running additional DNS servers can lead to unexpected behavior.

content/operate/rs/7.8/references/cli-utilities/redis-cli/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ If you want to run Redis commands without `redis-cli`, you can [connect to a dat
2020

2121
## Install `redis-cli`
2222

23-
When you install Redis Enterprise Software or Redis Community Edition, it also installs the `redis-cli` command-line utility.
23+
When you install Redis Enterprise Software or Redis Open Source, it also installs the `redis-cli` command-line utility.
2424

2525
To learn how to install Redis and `redis-cli`, see the following installation guides:
2626

27-
- [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-redis/" >}})
27+
- [Redis Open Source]({{< relref "/operate/oss_and_stack/install/install-stack/" >}})
2828

2929
- [Redis Enterprise Software]({{< relref "/operate/rs/7.8/installing-upgrading/quickstarts/redis-enterprise-software-quickstart" >}})
3030

0 commit comments

Comments
 (0)