Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
243 changes: 243 additions & 0 deletions docs-data/property-overrides.json

Large diffs are not rendered by default.

75 changes: 0 additions & 75 deletions docs-data/redpanda-property-changes-v25.3.1-to-v25.3.3.json

This file was deleted.

45 changes: 0 additions & 45 deletions docs-data/redpanda-property-changes-v25.3.9-to-v25.3.10.json

This file was deleted.

2 changes: 1 addition & 1 deletion modules/get-started/pages/architecture.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ As long as the leader and a majority of the replicas are stable, Redpanda can to

== Partition leadership elections

https://raft.github.io/[Raft^] uses a heartbeat mechanism to maintain leader authority and to trigger leader elections. The partition leader sends a periodic heartbeat to all followers to assert its leadership in the current term (default = 150 milliseconds). A term is an arbitrary period of time that starts when a leader election is triggered. If a follower does not receive a heartbeat over a period of time (default = 1.5 seconds), then it triggers an election to choose a new partition leader. The follower increments its term and votes for itself to be the leader for that term. It then sends a vote request to the other nodes and waits for one of the following scenarios:
https://raft.github.io/[Raft^] uses a heartbeat mechanism to maintain leader authority and to trigger leader elections. The partition leader sends a heartbeat to all followers every 150 milliseconds to assert its leadership in the current term (an election cycle). If a follower does not receive a heartbeat within the election timeout, it triggers an election to choose a new partition leader. Configure the election timeout with the xref:reference:properties/cluster-properties.adoc#election_timeout_ms[`election_timeout_ms`] cluster property (default: 1500 milliseconds). The follower increments its term and votes for itself to be the leader for that term. It then sends a vote request to the other nodes and waits for one of the following scenarios:

* It receives a majority of votes and becomes the leader. Raft guarantees that at most one candidate can be elected the leader for a given term.
* Another follower establishes itself as the leader. While waiting for votes, the candidate may receive communication from another node in the group claiming to be the leader. The candidate only accepts the claim if its term is greater than or equal to the candidate's term; otherwise, the communication is rejected and the candidate continues to wait for votes.
Expand Down
8 changes: 6 additions & 2 deletions modules/get-started/pages/licensing/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ IMPORTANT: To avoid startup issues with Redpanda Console when a trial or Enterpr
- **Redpanda Connect**: To evaluate enterprise features in Redpanda Connect, you must xref:redpanda-connect:get-started:licensing.adoc#apply-a-license-key-to-redpanda-connect[apply a trial license key]. After the 30-day evaluation period, you are blocked from using enterprise connectors unless you https://www.redpanda.com/upgrade[upgrade to an Enterprise Edition license^].

[[self-managed]]
=== Redpanda enterprise features
=== Redpanda Enterprise Edition features

The following table lists the enterprise features for Redpanda and how Redpanda behaves upon license expiration when each enterprise feature is enabled.

Expand Down Expand Up @@ -136,7 +136,7 @@ Continuous Intra-Broker Partition Balancing is enabled by default for all new cl
| Provides secure Kerberos-based authentication.
| No change.

| xref:manage:security/authentication.adoc#kerberos[Leader Pinning]
| xref:develop:produce-data/leader-pinning.adoc[Leader Pinning]
| Specifies the set of availability zones where the leaders of partitions of a given topic should be located.
| Leader Pinning is disabled on all topics.

Expand Down Expand Up @@ -164,6 +164,10 @@ Continuous Intra-Broker Partition Balancing is enabled by default for all new cl
| Provides enterprise-grade disaster recovery through asynchronous, offset-preserving replication between distinct Redpanda clusters for cross-region data protection.
| New shadow links cannot be created. Existing shadow links continue operating and can be updated.

| Topic Deletion Control (`delete_topic_enable`)
| When set to `false`, prevents all users, including superusers, from deleting topics through the Kafka DeleteTopics API. Use this as a cluster-wide safety setting to prevent accidental topic deletion.
| Topic deletion is re-enabled (reverts to `true`).

| xref:manage:topic-recovery.adoc[Topic Recovery]
| Allows restoring a single topic from Tiered Storage using remote recovery properties.
| You cannot create topics with the `redpanda.remote.recovery=true` property or perform topic recovery operations. To proceed, add a valid license to the target cluster. Without a valid license, topic recovery is blocked.
Expand Down
Loading
Loading