Skip to content

Commit 2e09e75

Browse files
committed
add content; rename page; formatting
1 parent 8054586 commit 2e09e75

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

develop/parachains/maintenance/.pages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ nav:
66
# - 'Debug Production Issues': debug-prod-issues.md
77
- 'Runtime Metrics and Monitoring': runtime-metrics-monitoring.md
88
- 'Unlock Parachain': unlock-parachain.md
9-
- 'Asynchronous Backing': asynchronous-backing.md
9+
- 'Configure Asynchronous Backing': configure-asynchronous-backing.md

develop/parachains/maintenance/asynchronous-backing.md renamed to develop/parachains/maintenance/configure-asynchronous-backing.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Asynchronous Backing
3-
description: Learn how to increase the efficiency and throughput of your parachain by upgrading it to leverage asynchronous backing.
2+
title: Configure Asynchronous Backing
3+
description: Learn how to increase the efficiency and throughput of your parachain by configuring it to leverage asynchronous backing.
44
---
55

6-
# Upgrade Parachain for Asynchronous Backing Compatibility
6+
# Configure Parachain for Asynchronous Backing Compatibility
77

88
## Introduction
99

@@ -93,6 +93,8 @@ This phase involves configuring your parachain's runtime `/runtime/src/lib.rs` t
9393

9494
5. Configure [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} in the runtime.
9595

96+
[`pallet_aura`]((https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank}) implements Authority Round (Aura) - a deterministic [consensus](https://docs.polkadot.com/polkadot-protocol/glossary/#consensus){target=\_blank} protocol where block production is limited to a rotating list of authorities that take turns creating blocks. [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} uses [`pallet_timestamp`](https://paritytech.github.io/polkadot-sdk/master/pallet_timestamp/index.html){target=\_blank} to track consensus rounds (via [`slots`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.SlotDuration){target=\_blank}).
97+
9698
- Set [`AllowMultipleBlocksPerSlot`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.AllowMultipleBlocksPerSlot){target=\_blank} to `false`
9799
- We will set it to `true` when we activate async backing in phase 3
98100

llms.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Doc-Page: https://docs.polkadot.com/develop/parachains/deployment/obtain-coretim
2828
Doc-Page: https://docs.polkadot.com/develop/parachains/
2929
Doc-Page: https://docs.polkadot.com/develop/parachains/install-polkadot-sdk/
3030
Doc-Page: https://docs.polkadot.com/develop/parachains/intro-polkadot-sdk/
31-
Doc-Page: https://docs.polkadot.com/develop/parachains/maintenance/asynchronous-backing/
31+
Doc-Page: https://docs.polkadot.com/develop/parachains/maintenance/configure-asynchronous-backing/
3232
Doc-Page: https://docs.polkadot.com/develop/parachains/maintenance/
3333
Doc-Page: https://docs.polkadot.com/develop/parachains/maintenance/runtime-metrics-monitoring/
3434
Doc-Page: https://docs.polkadot.com/develop/parachains/maintenance/runtime-upgrades/
@@ -5383,14 +5383,14 @@ graph LR
53835383
Each stage is covered in detail in its respective guide, walking you through the process from initial setup to final deployment.
53845384
--- END CONTENT ---
53855385

5386-
Doc-Content: https://docs.polkadot.com/develop/parachains/maintenance/asynchronous-backing/
5386+
Doc-Content: https://docs.polkadot.com/develop/parachains/maintenance/configure-asynchronous-backing/
53875387
--- BEGIN CONTENT ---
53885388
---
5389-
title: Asynchronous Backing
5390-
description: Learn how to increase the efficiency and throughput of your parachain by upgrading it to leverage asynchronous backing.
5389+
title: Configure Asynchronous Backing
5390+
description: Learn how to increase the efficiency and throughput of your parachain by configuring it to leverage asynchronous backing.
53915391
---
53925392

5393-
# Upgrade Parachain for Asynchronous Backing Compatibility
5393+
# Configure Parachain for Asynchronous Backing Compatibility
53945394

53955395
## Introduction
53965396

@@ -5480,6 +5480,8 @@ This phase involves configuring your parachain's runtime `/runtime/src/lib.rs` t
54805480

54815481
5. Configure [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} in the runtime.
54825482

5483+
[`pallet_aura`]((https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank}) implements Authority Round (Aura) - a deterministic [consensus](https://docs.polkadot.com/polkadot-protocol/glossary/#consensus){target=\_blank} protocol where block production is limited to a rotating list of authorities that take turns creating blocks. [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} uses [`pallet_timestamp`](https://paritytech.github.io/polkadot-sdk/master/pallet_timestamp/index.html){target=\_blank} to track consensus rounds (via [`slots`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.SlotDuration){target=\_blank}).
5484+
54835485
- Set [`AllowMultipleBlocksPerSlot`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.AllowMultipleBlocksPerSlot){target=\_blank} to `false`
54845486
- We will set it to `true` when we activate async backing in phase 3
54855487

0 commit comments

Comments
 (0)