Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade to polkadot 0.9.11 #272

Merged
merged 29 commits into from
Oct 22, 2021
Merged

chore: upgrade to polkadot 0.9.11 #272

merged 29 commits into from
Oct 22, 2021

Conversation

wischli
Copy link
Contributor

@wischli wischli commented Oct 18, 2021

fixes KILTProtocol/ticket#1630

  • Upgrades to Polkadot v0.9.11 which adds the TypeInfo to on chain data structs which automatically adds it to the metadata and removes the necessity of providing type data separately
  • Applies Vesting refactor which changed the StorageType from being a single struct to a BoundedVec

Changes for TypeInfo and metadata where inspired by the corresponding migration guide.

Note: We need to merge this ASAP and update our clients before 0.9.12 goes live on Kusama. Else we cannot sync anymore.

TODO

  • Unit tests
  • Bench pallet_vesting
  • Bench pallet_democracy
  • Bench pallet_balances
  • KILT Launch pallet

Checklist:

  • I have verified that the code works
    • No panics! (checked arithmetic ops, no indexing array[3] use get(3), ...)
  • I have verified that the code is easy to understand
    • If not, I have left a well-balanced amount of inline comments
  • This PR does not introduce new custom types
  • I have left the code in a better state
  • I have documented the changes (where applicable)
    ^

@wischli wischli marked this pull request as ready for review October 21, 2021 13:47
@@ -315,25 +316,33 @@ pub(crate) fn get_attestation_key_test_input() -> Vec<u8> {
[0u8; 32].to_vec()
}
pub(crate) fn get_attestation_key_call() -> Call {
Call::Ctype(ctype::Call::add(get_attestation_key_test_input()))
Call::Ctype(ctype::Call::add {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: All calls had to be converted to named structs, see migration guide

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is actually amazing!

@@ -220,7 +221,9 @@ impl DidVerifiableIdentifier for kilt_primitives::DidIdentifier {
///
/// It is currently used to keep track of all the past and current
/// attestation keys a DID might control.
#[derive(Clone, Debug, Decode, Encode, PartialEq, Ord, PartialOrd, Eq)]
#[derive(Clone, Debug, Decode, Encode, PartialEq, Ord, PartialOrd, Eq, TypeInfo)]
#[scale_info(skip_type_params(T))]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: If we don't skip T, then T needs to implement TypeInfo.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for this helpful comment https://gist.github.com/ascjones/0d81a4c44e84cacd9f714cd34a6de823#gistcomment-3931135

I noticed you described it as structs which lazily use the pallet's Config as generic. Do you mean that the less lazy fix would be

pub struct DidPublicKeyDetails<DidPublicKey> {
	/// A public key the DID controls.
	pub key: DidPublicKey,
}

Copy link
Contributor Author

@wischli wischli Oct 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes exactly. Though PublicKey might be restricted to traits in our case. There are lots or examples in Substrates (eg with Balance and AccountId) like your suggestion.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure the lazy is the correct technical term but it meant to reflect that instead of specifying the different Generics, the Config trait is provider instead.

source_vesting
};
Vesting::<T>::insert(target, vesting);
VestingInfo::<BalanceOf<T>, T::BlockNumber>::new(
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: Ideally, we should just try to push the vesting info onto the StorageMap. However, we know all genesis accounts started at genesis and if we increased the length of our vesting vector, we could run into trouble. This solution here should cause the least code changes and potential trouble.

type WeightToFee = fee::WeightToFee;
type FeeMultiplierUpdate = TargetedFeeAdjustment<Runtime, TargetBlockFullness, Variability, Minimum>;
type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -822,7 +797,7 @@ impl_runtime_apis! {

impl sp_api::Metadata<Block> for Runtime {
fn metadata() -> OpaqueMetadata {
Runtime::metadata().into()
OpaqueMetadata::new(Runtime::metadata().into())
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: See migration guide

@wischli wischli added the ❤️ high priority: high label Oct 21, 2021
@wischli wischli self-assigned this Oct 21, 2021
Copy link
Contributor

@weichweich weichweich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM a few style things...

pallets/ctype/Cargo.toml Outdated Show resolved Hide resolved
pallets/ctype/Cargo.toml Outdated Show resolved Hide resolved
Comment on lines 19 to 20
use crate as ctype;
use crate::*;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: I would keep them in a separate group. In my mind imports are sorted like that:

  1. external crates
  2. crate from the same git
  3. same crate
  4. re-exports
  5. mod

Also this is out of scope. Had a discussion with Antonio about that.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#[derive(Clone, Encode, Decode, PartialEq)]
#[derive(Clone, Encode, Decode, PartialEq, TypeInfo)]
#[scale_info(skip_type_params(T))]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: why a new line here? Feels like it's not the rust style?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Substrate does it that way 🤷

#[derive(Clone, Debug, Encode, Decode, PartialEq)]
#[derive(Clone, Debug, Encode, Decode, PartialEq, TypeInfo)]
#[scale_info(skip_type_params(T))]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: why a new line here? Feels like it's not the rust style?

#[derive(Clone, Debug, Encode, Decode, Eq, PartialEq, Ord, PartialOrd)]
#[derive(Clone, Debug, Encode, Decode, Eq, PartialEq, Ord, PartialOrd, TypeInfo)]
#[scale_info(skip_type_params(T))]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: why a new line here? Feels like it's not the rust style?

#[derive(Clone, Decode, Encode, PartialEq)]
#[derive(Clone, Decode, Encode, PartialEq, TypeInfo)]
#[scale_info(skip_type_params(T))]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: why a new line here? Feels like it's not the rust style?

#[derive(Clone, Debug, Decode, Encode, PartialEq, Ord, PartialOrd, Eq)]
#[derive(Clone, Debug, Decode, Encode, PartialEq, Ord, PartialOrd, Eq, TypeInfo)]
#[scale_info(skip_type_params(T))]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: why a new line here? Feels like it's not the rust style?

pallets/kilt-launch/src/lib.rs Outdated Show resolved Hide resolved
primitives/src/constants.rs Outdated Show resolved Hide resolved
@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 21, 2021

Benchmark Runtime Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=pallet-balances --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/spiritnet/src/weights/pallet_balances.rs --template=.maintain/runtime-weight-template.hbs

Results
Pallet: "pallet_balances", Extrinsic: "transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    77.72
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    77.72
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "transfer_keep_alive", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    58.39
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    58.39
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "set_balance_creating", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    32.05
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    32.05
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "set_balance_killing", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=     38.8
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=     38.8
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "force_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:2 w:2)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    78.11
              µs

Reads = 2
Writes = 2

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    78.11
              µs

Reads = 2
Writes = 2

Pallet: "pallet_balances", Extrinsic: "transfer_all", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    71.88
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    71.88
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "force_unreserve", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    29.92
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    29.92
              µs

Reads = 1
Writes = 1


…hmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=pallet-balances --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/spiritnet/src/weights/pallet_balances.rs --template=.maintain/runtime-weight-template.hbs
@wischli
Copy link
Contributor Author

wischli commented Oct 21, 2021

/bench runtime spiritnet-runtime pallet-democracy

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 21, 2021

Benchmark Runtime Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=pallet-democracy --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/spiritnet/src/weights/pallet_democracy.rs --template=.maintain/runtime-weight-template.hbs

Results
warning: unused import: `kilt_support::deposit::Deposit`
  --> pallets/delegation/src/lib.rs:99:5
   |
99 | use kilt_support::deposit::Deposit;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default

2021-10-21 23:32:15 Running Benchmark:	pallet_democracy	second	46/50	0/1    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Running Benchmark:	pallet_democracy	vote_new	50/50	0/1    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-21 23:32:20 Warning: There are more items queued in the Scheduler t<truncated>...

ERROR: Unable to commit file ./runtimes/spiritnet/src/weights/pallet_democracy.rs

@wischli
Copy link
Contributor Author

wischli commented Oct 21, 2021

/bench runtime spiritnet-runtime kilt-launch

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 21, 2021

Benchmark Runtime Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=kilt-launch --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/spiritnet/src/weights/kilt_launch.rs --template=.maintain/runtime-weight-template.hbs

Results
Pallet: "kilt_launch", Extrinsic: "change_transfer_account", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    2.957
              µs

Reads = 0
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    2.957
              µs

Reads = 0
Writes = 1

Pallet: "kilt_launch", Extrinsic: "force_unlock", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch UnlockingAt (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)
Storage: KiltLaunch BalanceLocks (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    28.34
    + n    27.94
              µs

Reads = 1 + (2 * n)
Writes = 1 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1      53.7     0.083    0.1%
    2     82.69     0.244    0.2%
    3     111.3     0.139    0.1%
    4     140.3      0.24    0.1%
    5     168.7     0.195    0.1%
    6     197.5     0.296    0.1%
    7     224.2     0.266    0.1%
    8     252.5     0.351    0.1%
    9     281.7      0.46    0.1%
   10     307.7     0.374    0.1%
   11     336.2     0.298    0.0%
   12     366.4       0.9    0.2%
   13     393.3     0.587    0.1%
   14       421     0.645    0.1%
   15     447.8     0.841    0.1%
   16     476.8      1.13    0.2%
   17     502.3     0.774    0.1%
   18     527.5     1.036    0.1%
   19     557.4     2.101    0.3%
   20     585.8     1.148    0.1%
   21     615.7     0.825    0.1%
   22     637.5     1.343    0.2%
   23     668.9     1.666    0.2%
   24     691.4     1.511    0.2%
   25     719.5     1.199    0.1%
   26       747      2.76    0.3%
   27     781.3     2.501    0.3%
   28     810.2     1.343    0.1%
   29     835.9     1.907    0.2%
   30     865.4     3.287    0.3%
   31       885     1.673    0.1%
   32     925.6     2.152    0.2%
   33     936.6     1.694    0.1%
   34     966.6      3.71    0.3%
   35      1007     3.528    0.3%
   36      1037     2.579    0.2%
   37      1058     1.059    0.1%
   38      1084     3.773    0.3%
   39      1123     1.177    0.1%
   40      1134      2.64    0.2%
   41      1178     1.722    0.1%
   42      1189     2.011    0.1%
   43      1233      2.41    0.1%
   44      1268     2.312    0.1%
   45      1299     1.753    0.1%
   46      1310      2.07    0.1%
   47      1343     4.075    0.3%
   48      1378     5.466    0.3%
   49      1406     3.365    0.2%

Quality and confidence:
param     error
n         0.018

Model:
Time ~=    26.67
    + n    27.97
              µs

Reads = 1 + (2 * n)
Writes = 1 + (3 * n)

Pallet: "kilt_launch", Extrinsic: "locked_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: Balances Locks (r:2 w:2)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=      137
              µs

Reads = 6
Writes = 6

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=      137
              µs

Reads = 6
Writes = 6

Pallet: "kilt_launch", Extrinsic: "migrate_genesis_account_vesting", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:1 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    151.6
              µs

Reads = 9
Writes = 6

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    151.6
              µs

Reads = 9
Writes = 6

Pallet: "kilt_launch", Extrinsic: "migrate_genesis_account_locking", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:1 w:0)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: KiltLaunch UnlockingAt (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    155.6
              µs

Reads = 10
Writes = 7

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    155.6
              µs

Reads = 10
Writes = 7

Pallet: "kilt_launch", Extrinsic: "migrate_multiple_genesis_accounts_vesting", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:1 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    54.38
    + n    99.48
              µs

Reads = 4 + (5 * n)
Writes = 3 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     151.7     0.385    0.2%
    2     253.2     0.276    0.1%
    3     355.1     1.033    0.2%
    4     451.8     0.645    0.1%
    5     557.7     1.961    0.3%
    6     654.7     1.176    0.1%
    7     754.4     1.075    0.1%
    8       851     1.202    0.1%
    9     945.3     1.056    0.1%
   10      1047     8.929    0.8%
   11      1157     12.52    1.0%
   12      1244     9.768    0.7%
   13      1348     1.763    0.1%
   14      1447     9.243    0.6%
   15      1541     12.32    0.7%
   16      1635     2.144    0.1%
   17      1723     1.066    0.0%
   18      1838     3.532    0.1%
   19      1932     2.199    0.1%
   20      2045     7.897    0.3%
   21      2148     12.33    0.5%
   22      2235     2.929    0.1%
   23      2349     13.58    0.5%
   24      2420     2.921    0.1%
   25      2553     14.19    0.5%
   26      2643      17.1    0.6%
   27      2737     13.92    0.5%
   28      2822     7.007    0.2%
   29      2920     19.15    0.6%
   30      3022      9.17    0.3%
   31      3126      6.93    0.2%
   32      3231     12.86    0.3%
   33      3348     16.28    0.4%
   34      3457      15.7    0.4%
   35      3515     12.18    0.3%
   36      3660     19.57    0.5%
   37      3743     16.09    0.4%
   38      3887     13.56    0.3%
   39      3949     12.36    0.3%
   40      4034     13.51    0.3%
   41      4128      11.6    0.2%
   42      4255     5.801    0.1%
   43      4319     14.54    0.3%
   44      4436      8.42    0.1%
   45      4541     5.228    0.1%
   46      4619     6.438    0.1%
   47      4737     8.027    0.1%
   48      4838     4.095    0.0%
   49      4940     10.15    0.2%

Quality and confidence:
param     error
n         0.052

Model:
Time ~=    49.87
    + n    99.68
              µs

Reads = 4 + (5 * n)
Writes = 3 + (3 * n)

Pallet: "kilt_launch", Extrinsic: "migrate_multiple_genesis_accounts_locking", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:1 w:0)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: KiltLaunch UnlockingAt (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    64.06
    + n    96.81
              µs

Reads = 5 + (5 * n)
Writes = 4 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     155.7      0.33    0.2%
    2     256.9     0.447    0.1%
    3     354.5     0.556    0.1%
    4     451.7     0.737    0.1%
    5       547     1.061    0.1%
    6     645.8     1.892    0.2%
    7     743.6     0.787    0.1%
    8     840.6     1.463    0.1%
    9       937     1.724    0.1%
   10      1033     1.664    0.1%
   11      1129      1.91    0.1%
   12      1232      12.6    1.0%
   13      1321     2.053    0.1%
   14      1426     12.38    0.8%
   15      1521        13    0.8%
   16      1620     14.24    0.8%
   17      1705      2.19    0.1%
   18      1812     9.735    0.5%
   19      1899     9.205    0.4%
   20      1992     1.805    0.0%
   21      2089     2.532    0.1%
   22      2192     2.627    0.1%
   23      2291      3.92    0.1%
   24      2383     12.82    0.5%
   25      2486     8.424    0.3%
   26      2577     4.839    0.1%
   27      2676     4.566    0.1%
   28      2785     9.951    0.3%
   29      2851     10.42    0.3%
   30      2970     12.55    0.4%
   31      3080     7.369    0.2%
   32      3147     8.563    0.2%
   33      3258       9.5    0.2%
   34      3363     11.85    0.3%
   35      3445     18.77    0.5%
   36      3541     5.004    0.1%
   37      3643     10.26    0.2%
   38      3769     10.44    0.2%
   39      3844     11.54    0.3%
   40      3919     5.849    0.1%
   41      4027     4.579    0.1%
   42      4166     7.311    0.1%
   43      4213     14.29    0.3%
   44      4327     12.01    0.2%
   45      4460      15.3    0.3%
   46      4538     6.042    0.1%
   47      4626     10.31    0.2%
   48      4740     7.108    0.1%
   49      4805     5.881    0.1%

Quality and confidence:
param     error
n         0.045

Model:
Time ~=    60.76
    + n    97.04
              µs

Reads = 5 + (5 * n)
Writes = 4 + (3 * n)


…hmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=kilt-launch --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/spiritnet/src/weights/kilt_launch.rs --template=.maintain/runtime-weight-template.hbs
@wischli
Copy link
Contributor Author

wischli commented Oct 22, 2021

/bench pallet spiritnet-runtime kilt-launch

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Error running benchmark: wf-0.9.11-clean

stdoutBench configuration for "pallet" was not found

@wischli
Copy link
Contributor Author

wischli commented Oct 22, 2021

/bench runtime peregrine-runtime kilt-launch

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Error running benchmark: wf-0.9.11-clean

stdoutCaught exception in benchmarkRuntime: TypeError: Cannot read properties of undefined (reading 'benchCommand')

nodes/parachain/src/service.rs Show resolved Hide resolved
pallets/did/src/deprecated/v2.rs Show resolved Hide resolved
@@ -315,25 +316,33 @@ pub(crate) fn get_attestation_key_test_input() -> Vec<u8> {
[0u8; 32].to_vec()
}
pub(crate) fn get_attestation_key_call() -> Call {
Call::Ctype(ctype::Call::add(get_attestation_key_test_input()))
Call::Ctype(ctype::Call::add {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is actually amazing!

starting_block: T::BlockNumber::zero(),
}), "Vesting schedule not migrated");
assert_eq!(Vesting::<T>::get(&target).expect("Missing vesting info").into_inner().get(0), Some(&VestingInfo::<BalanceOf<T>, T::BlockNumber>::new(
AMOUNT.into(),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is indentation off here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah will fix.

@@ -198,11 +195,11 @@ benchmarks! {
verify {
assert!(UnownedAccount::<T>::get(&source).is_none());
assert!(!Vesting::<T>::contains_key(source), "Vesting schedule not removed");
assert_eq!(Vesting::<T>::get(&target), Some(VestingInfo::<BalanceOf<T>, T::BlockNumber> {
locked: AMOUNT.into(),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe also here...

@@ -102,7 +95,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("mashnet-node"),
impl_name: create_runtime_str!("mashnet-node"),
authoring_version: 4,
spec_version: 2701,
spec_version: 2800,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have made all pallets version 1.0. Should this also be version 10000?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer not to do such a big jump but it would be more straight forward. I suppose we could do this later depending on Albis take on this.

@ggera
Copy link
Member

ggera commented Oct 22, 2021

/bench runtime peregrine kilt-launch

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Benchmark Runtime Substrate Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=kilt-launch --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/peregrine/src/weights/kilt_launch.rs --template=.maintain/runtime-weight-template.hbs

Results
Pallet: "kilt_launch", Extrinsic: "change_transfer_account", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    3.017
              µs

Reads = 0
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    3.017
              µs

Reads = 0
Writes = 1

Pallet: "kilt_launch", Extrinsic: "force_unlock", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch UnlockingAt (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)
Storage: KiltLaunch BalanceLocks (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    28.07
    + n    27.48
              µs

Reads = 1 + (2 * n)
Writes = 1 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     53.46     0.125    0.2%
    2     82.13      0.24    0.2%
    3     109.4     0.244    0.2%
    4     138.4     0.286    0.2%
    5     166.2     0.335    0.2%
    6     194.3     0.361    0.1%
    7     220.6     0.523    0.2%
    8       250     0.382    0.1%
    9     275.6     0.325    0.1%
   10     303.7     1.056    0.3%
   11     330.1     0.623    0.1%
   12     361.4     0.548    0.1%
   13     387.8     0.762    0.1%
   14       413     0.633    0.1%
   15     439.4     0.663    0.1%
   16     466.8     0.733    0.1%
   17     496.6     1.192    0.2%
   18       522     1.044    0.1%
   19     547.1     0.746    0.1%
   20     574.8     1.213    0.2%
   21     605.7     1.007    0.1%
   22     620.6     2.188    0.3%
   23     651.9     3.819    0.5%
   24     689.8     2.255    0.3%
   25     706.4     1.181    0.1%
   26     735.9     3.735    0.5%
   27     772.2     2.075    0.2%
   28       801     1.778    0.2%
   29     811.3     1.226    0.1%
   30       849     4.637    0.5%
   31       870     4.126    0.4%
   32     901.5     1.247    0.1%
   33     945.2     1.346    0.1%
   34       957     1.297    0.1%
   35     998.6     2.956    0.2%
   36      1019     1.954    0.1%
   37      1034     1.965    0.1%
   38      1070     1.468    0.1%
   39      1108     3.913    0.3%
   40      1140     12.12    1.0%
   41      1154     0.725    0.0%
   42      1200     2.368    0.1%
   43      1206     2.018    0.1%
   44      1235     5.048    0.4%
   45      1258     1.444    0.1%
   46      1286     3.144    0.2%
   47      1318     2.119    0.1%
   48      1352     3.854    0.2%
   49      1391     10.48    0.7%

Quality and confidence:
param     error
n         0.022

Model:
Time ~=    26.24
    + n    27.54
              µs

Reads = 1 + (2 * n)
Writes = 1 + (3 * n)

Pallet: "kilt_launch", Extrinsic: "locked_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: Balances Locks (r:2 w:2)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    135.1
              µs

Reads = 6
Writes = 6

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    135.1
              µs

Reads = 6
Writes = 6

Pallet: "kilt_launch", Extrinsic: "migrate_genesis_account_vesting", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:1 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    150.7
              µs

Reads = 9
Writes = 6

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    150.7
              µs

Reads = 9
Writes = 6

Pallet: "kilt_launch", Extrinsic: "migrate_genesis_account_locking", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:1 w:0)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: KiltLaunch UnlockingAt (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    153.7
              µs

Reads = 10
Writes = 7

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    153.7
              µs

Reads = 10
Writes = 7

Pallet: "kilt_launch", Extrinsic: "migrate_multiple_genesis_accounts_vesting", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:1 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    54.01
    + n    97.75
              µs

Reads = 4 + (5 * n)
Writes = 3 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     151.5      0.34    0.2%
    2     249.7     0.541    0.2%
    3     349.8     0.615    0.1%
    4       449     0.618    0.1%
    5       547     0.533    0.0%
    6     641.5     0.798    0.1%
    7     738.5     0.949    0.1%
    8       836     1.546    0.1%
    9     931.8     0.786    0.0%
   10      1029     2.585    0.2%
   11      1122     9.473    0.8%
   12      1219      1.46    0.1%
   13      1320     2.352    0.1%
   14      1442      10.8    0.7%
   15      1512     2.928    0.1%
   16      1617     16.29    1.0%
   17      1692     1.388    0.0%
   18      1809     2.563    0.1%
   19      1914     2.802    0.1%
   20      2001     3.238    0.1%
   21      2107     14.65    0.6%
   22      2197      4.38    0.1%
   23      2303     12.39    0.5%
   24      2397     11.16    0.4%
   25      2488     7.611    0.3%
   26      2585     10.52    0.4%
   27      2704     11.49    0.4%
   28      2784      14.2    0.5%
   29      2871     11.58    0.4%
   30      2967     10.59    0.3%
   31      3076     5.824    0.1%
   32      3166     9.642    0.3%
   33      3272     9.684    0.2%
   34      3410     8.765    0.2%
   35      3468     9.434    0.2%
   36      3578     6.595    0.1%
   37      3657     3.986    0.1%
   38      3779     16.81    0.4%
   39      3874     17.22    0.4%
   40      3959     5.989    0.1%
   41      4082     8.525    0.2%
   42      4180     18.75    0.4%
   43      4262     7.739    0.1%
   44      4373     8.093    0.1%
   45      4461     4.973    0.1%
   46      4629     81.56    1.7%
   47      4662     15.07    0.3%
   48      4728     8.748    0.1%
   49      4858     17.66    0.3%

Quality and confidence:
param     error
n         0.067

Model:
Time ~=    47.13
    + n    98.08
              µs

Reads = 4 + (5 * n)
Writes = 3 + (3 * n)

Pallet: "kilt_launch", Extrinsic: "migrate_multiple_genesis_accounts_locking", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:1 w:0)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: KiltLaunch UnlockingAt (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=     62.6
    + n     95.8
              µs

Reads = 5 + (5 * n)
Writes = 4 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     154.6     0.365    0.2%
    2     253.7     0.433    0.1%
    3     349.8     0.682    0.1%
    4     448.3     0.475    0.1%
    5     540.9     1.008    0.1%
    6     633.7     0.833    0.1%
    7     733.7     1.211    0.1%
    8     832.3     2.364    0.2%
    9     926.4     1.168    0.1%
   10      1020     1.115    0.1%
   11      1110     1.926    0.1%
   12      1213     9.238    0.7%
   13      1311     7.539    0.5%
   14      1406     9.235    0.6%
   15      1509     13.46    0.8%
   16      1595     1.213    0.0%
   17      1684     1.138    0.0%
   18      1809     11.03    0.6%
   19      1887     14.72    0.7%
   20      1964     1.581    0.0%
   21      2077     4.369    0.2%
   22      2159     3.097    0.1%
   23      2278     15.54    0.6%
   24      2363        16    0.6%
   25      2464     11.33    0.4%
   26      2544     3.272    0.1%
   27      2652     11.91    0.4%
   28      2752     16.43    0.5%
   29      2809     4.038    0.1%
   30      2921     11.06    0.3%
   31      3042     11.93    0.3%
   32      3143     6.146    0.1%
   33      3227     8.949    0.2%
   34      3319     9.662    0.2%
   35      3420     7.988    0.2%
   36      3517     15.07    0.4%
   37      3595     5.714    0.1%
   38      3704     10.34    0.2%
   39      3790     9.307    0.2%
   40      3915     4.773    0.1%
   41      3972     6.345    0.1%
   42      4085     12.69    0.3%
   43      4208     9.985    0.2%
   44      4280     4.749    0.1%
   45      4394     15.77    0.3%
   46      4481     9.829    0.2%
   47      4566     9.299    0.2%
   48      4654     15.43    0.3%
   49      4779     11.94    0.2%

Quality and confidence:
param     error
n         0.044

Model:
Time ~=    60.83
    + n    95.94
              µs

Reads = 5 + (5 * n)
Writes = 4 + (3 * n)


…hmarks -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=kilt-launch --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/peregrine/src/weights/kilt_launch.rs --template=.maintain/runtime-weight-template.hbs
@ggera
Copy link
Member

ggera commented Oct 22, 2021

/bench runtime spiritnet-pallet kilt-launch

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Benchmark Runtime Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=kilt-launch --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=pallets/kilt-launch/src/default_weights.rs --template=.maintain/weight-template.hbs

Results
Pallet: "kilt_launch", Extrinsic: "change_transfer_account", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    2.931
              µs

Reads = 0
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    2.931
              µs

Reads = 0
Writes = 1

Pallet: "kilt_launch", Extrinsic: "force_unlock", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch UnlockingAt (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)
Storage: KiltLaunch BalanceLocks (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    27.56
    + n     27.4
              µs

Reads = 1 + (2 * n)
Writes = 1 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     53.72     0.117    0.2%
    2     81.95     0.206    0.2%
    3     109.7     0.083    0.0%
    4       138     0.354    0.2%
    5     166.3     0.232    0.1%
    6       194     0.325    0.1%
    7       220     0.297    0.1%
    8     248.8     0.247    0.0%
    9     274.2     0.371    0.1%
   10     301.3     0.516    0.1%
   11     326.9     0.273    0.0%
   12     358.1      0.45    0.1%
   13     382.1       0.7    0.1%
   14     410.9     0.948    0.2%
   15     436.7      0.65    0.1%
   16     467.5     0.412    0.0%
   17     494.9     1.402    0.2%
   18     519.8     1.799    0.3%
   19     545.1     1.192    0.2%
   20     574.9     0.784    0.1%
   21     597.7     1.031    0.1%
   22     615.6     2.269    0.3%
   23     658.5     0.836    0.1%
   24     674.9     1.223    0.1%
   25     700.6      2.53    0.3%
   26     743.3     3.662    0.4%
   27     754.5      2.93    0.3%
   28     792.5     2.487    0.3%
   29     809.8     1.907    0.2%
   30     846.1     1.906    0.2%
   31     871.2     1.631    0.1%
   32     901.3     1.495    0.1%
   33       941     1.558    0.1%
   34     954.1     1.753    0.1%
   35     988.3     3.113    0.3%
   36      1014     2.248    0.2%
   37      1047     1.719    0.1%
   38      1074     1.316    0.1%
   39      1102     1.163    0.1%
   40      1127     2.126    0.1%
   41      1146     1.632    0.1%
   42      1182     1.528    0.1%
   43      1202     4.428    0.3%
   44      1242     1.072    0.0%
   45      1256      3.96    0.3%
   46      1289     5.634    0.4%
   47      1316     3.219    0.2%
   48      1329     2.208    0.1%
   49      1371      1.34    0.0%

Quality and confidence:
param     error
n         0.018

Model:
Time ~=    26.34
    + n     27.4
              µs

Reads = 1 + (2 * n)
Writes = 1 + (3 * n)

Pallet: "kilt_launch", Extrinsic: "locked_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: Balances Locks (r:2 w:2)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    133.4
              µs

Reads = 6
Writes = 6

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    133.4
              µs

Reads = 6
Writes = 6

Pallet: "kilt_launch", Extrinsic: "migrate_genesis_account_vesting", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:1 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    148.3
              µs

Reads = 9
Writes = 6

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    148.3
              µs

Reads = 9
Writes = 6

Pallet: "kilt_launch", Extrinsic: "migrate_genesis_account_locking", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:1 w:0)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: KiltLaunch UnlockingAt (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    151.2
              µs

Reads = 10
Writes = 7

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    151.2
              µs

Reads = 10
Writes = 7

Pallet: "kilt_launch", Extrinsic: "migrate_multiple_genesis_accounts_vesting", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:2 w:2)
Storage: KiltLaunch BalanceLocks (r:1 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    47.97
    + n    97.26
              µs

Reads = 4 + (5 * n)
Writes = 3 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1     148.6     0.365    0.2%
    2     247.6     0.981    0.3%
    3     347.6     0.805    0.2%
    4     442.2     0.935    0.2%
    5     544.3       1.2    0.2%
    6     636.6     1.574    0.2%
    7     730.7     1.066    0.1%
    8     824.1     1.386    0.1%
    9     922.9     0.753    0.0%
   10      1015     0.842    0.0%
   11      1123     10.45    0.9%
   12      1214     1.594    0.1%
   13      1303     9.644    0.7%
   14      1401     2.252    0.1%
   15      1483     2.016    0.1%
   16      1594     10.44    0.6%
   17      1682     15.45    0.9%
   18      1787     1.964    0.1%
   19      1883     8.705    0.4%
   20      1983     3.022    0.1%
   21      2086     9.523    0.4%
   22      2175     8.101    0.3%
   23      2292     11.87    0.5%
   24      2363     2.439    0.1%
   25      2468     5.102    0.2%
   26      2546     2.133    0.0%
   27      2649     2.065    0.0%
   28      2743     1.795    0.0%
   29      2858     7.378    0.2%
   30      2929     3.975    0.1%
   31      3030     4.763    0.1%
   32      3163     14.19    0.4%
   33      3251     13.08    0.4%
   34      3363     8.499    0.2%
   35      3429      5.59    0.1%
   36      3561     6.911    0.1%
   37      3649     4.973    0.1%
   38      3753     9.914    0.2%
   39      3848     8.348    0.2%
   40      3940     8.778    0.2%
   41      4046     5.513    0.1%
   42      4148     8.822    0.2%
   43      4250      12.3    0.2%
   44      4348     13.88    0.3%
   45      4451     14.58    0.3%
   46      4536      15.5    0.3%
   47      4639     16.33    0.3%
   48      4729     7.649    0.1%
   49      4799     5.825    0.1%

Quality and confidence:
param     error
n         0.052

Model:
Time ~=    39.74
    + n    97.49
              µs

Reads = 4 + (5 * n)
Writes = 3 + (3 * n)

Pallet: "kilt_launch", Extrinsic: "migrate_multiple_genesis_accounts_locking", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: KiltLaunch TransferAccount (r:1 w:0)
Storage: KiltLaunch UnownedAccount (r:1 w:1)
Storage: Balances Locks (r:2 w:1)
Storage: System Account (r:2 w:2)
Storage: Vesting Vesting (r:1 w:0)
Storage: KiltLaunch BalanceLocks (r:2 w:2)
Storage: KiltLaunch UnlockingAt (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    62.53
    + n    94.86
              µs

Reads = 5 + (5 * n)
Writes = 4 + (3 * n)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    n   mean µs  sigma µs       %
    1       153     0.266    0.1%
    2     252.2     0.691    0.2%
    3     349.3     0.421    0.1%
    4     445.5     0.959    0.2%
    5     536.4     1.156    0.2%
    6     632.3     1.211    0.1%
    7     727.7     1.276    0.1%
    8     823.6     9.238    1.1%
    9     926.5     11.69    1.2%
   10      1006     1.567    0.1%
   11      1104     0.893    0.0%
   12      1207     12.12    1.0%
   13      1285     1.988    0.1%
   14      1386     1.547    0.1%
   15      1470      3.27    0.2%
   16      1578     12.62    0.8%
   17      1671     19.64    1.1%
   18      1783     9.772    0.5%
   19      1864     16.83    0.9%
   20      1958     1.973    0.1%
   21      2053     5.882    0.2%
   22      2148     3.046    0.1%
   23      2243      1.81    0.0%
   24      2368        13    0.5%
   25      2429     3.254    0.1%
   26      2642     14.62    0.5%
   27      2606     1.871    0.0%
   28      2704     3.381    0.1%
   29      2806     8.868    0.3%
   30      2902     14.46    0.4%
   31      2999     8.932    0.2%
   32      3081     4.251    0.1%
   33      3188     7.378    0.2%
   34      3292      10.8    0.3%
   35      3359     5.227    0.1%
   36      3497     6.008    0.1%
   37      3573     6.082    0.1%
   38      3670     3.799    0.1%
   39      3762      9.99    0.2%
   40      3867     7.352    0.1%
   41      3942     9.592    0.2%
   42      4056     11.17    0.2%
   43      4162     12.46    0.2%
   44      4238     7.278    0.1%
   45      4330      3.21    0.0%
   46      4437     7.325    0.1%
   47      4522     9.728    0.2%
   48      4628     8.415    0.1%
   49      4718     6.188    0.1%

Quality and confidence:
param     error
n         0.065

Model:
Time ~=       62
    + n    94.98
              µs

Reads = 5 + (5 * n)
Writes = 4 + (3 * n)


…hmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=kilt-launch --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=pallets/kilt-launch/src/default_weights.rs --template=.maintain/weight-template.hbs
@wischli
Copy link
Contributor Author

wischli commented Oct 22, 2021

/bench runtime spiritnet-runtime pallet-democracy

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Benchmark Runtime Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=spiritnet-dev --steps=50 --repeat=20 --pallet=pallet-democracy --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/spiritnet/src/weights/pallet_democracy.rs --template=.maintain/runtime-weight-template.hbs

Results
warning: unused import: `kilt_support::deposit::Deposit`
  --> pallets/delegation/src/lib.rs:99:5
   |
99 | use kilt_support::deposit::Deposit;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default

2021-10-22 09:10:38 Running Benchmark:	pallet_democracy	second	46/50	0/1    
2021-10-22 09:10:42 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:42 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:42 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Running Benchmark:	pallet_democracy	vote_new	50/50	0/1    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler than expected from the runtime configuration. An update might be needed.    
2021-10-22 09:10:43 Warning: There are more items queued in the Scheduler t<truncated>...

ERROR: Unable to commit file ./runtimes/spiritnet/src/weights/pallet_democracy.rs

@wischli
Copy link
Contributor Author

wischli commented Oct 22, 2021

/bench runtime peregrine pallet-balances

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Benchmark Runtime Substrate Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet-balances --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/peregrine/src/weights/pallet_balances.rs --template=.maintain/runtime-weight-template.hbs

Results
Pallet: "pallet_balances", Extrinsic: "transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=     75.6
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=     75.6
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "transfer_keep_alive", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    57.93
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    57.93
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "set_balance_creating", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    31.33
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    31.33
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "set_balance_killing", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    38.02
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    38.02
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "force_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:2 w:2)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    76.46
              µs

Reads = 2
Writes = 2

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    76.46
              µs

Reads = 2
Writes = 2

Pallet: "pallet_balances", Extrinsic: "transfer_all", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    70.83
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    70.83
              µs

Reads = 1
Writes = 1

Pallet: "pallet_balances", Extrinsic: "force_unreserve", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    29.22
              µs

Reads = 1
Writes = 1

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    29.22
              µs

Reads = 1
Writes = 1


…hmarks -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet-balances --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/peregrine/src/weights/pallet_balances.rs --template=.maintain/runtime-weight-template.hbs
@wischli
Copy link
Contributor Author

wischli commented Oct 22, 2021

/bench runtime peregrine pallet-vesting

@kilt-command-bot
Copy link

kilt-command-bot bot commented Oct 22, 2021

Benchmark Runtime Substrate Pallet for branch "wf-0.9.11-clean" with command cargo run --quiet --release -p kilt-parachain --features=runtime-benchmarks -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet-vesting --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/peregrine/src/weights/pallet_vesting.rs --template=.maintain/runtime-weight-template.hbs

Results
Pallet: "pallet_vesting", Extrinsic: "vest_locked", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: Balances Locks (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    54.45
    + l    0.145
    + s    0.211
              µs

Reads = 2 + (0 * l) + (0 * s)
Writes = 2 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    28     59.46     0.147    0.2%
    1    28     60.81     0.242    0.3%
    2    28     61.15     0.211    0.3%
    3    28     60.55     0.203    0.3%
    4    28     60.66     0.083    0.1%
    5    28     60.98     0.172    0.2%
    6    28      61.6     0.172    0.2%
    7    28     61.03     0.112    0.1%
    8    28     61.47     0.228    0.3%
    9    28     61.56     0.204    0.3%
   10    28     62.29     0.137    0.2%
   11    28     62.31      0.12    0.1%
   12    28     62.33      0.18    0.2%
   13    28      62.5     0.137    0.2%
   14    28     62.12     0.109    0.1%
   15    28     62.68     0.105    0.1%
   16    28     62.82     0.142    0.2%
   17    28     62.29     0.126    0.2%
   18    28     63.04     0.208    0.3%
   19    28     63.01     0.113    0.1%
   20    28     63.62     0.188    0.2%
   21    28     63.75     0.194    0.3%
   22    28     63.73     0.157    0.2%
   23    28     64.14     0.228    0.3%
   24    28     64.21     0.103    0.1%
   25    28     63.31     0.111    0.1%
   26    28        64     0.156    0.2%
   27    28     63.98     0.143    0.2%
   28    28     64.29     0.178    0.2%
   29    28     64.34     0.225    0.3%
   30    28     64.57     0.194    0.3%
   31    28     64.36     0.155    0.2%
   32    28     64.74     0.137    0.2%
   33    28     64.92     0.179    0.2%
   34    28     64.35     0.226    0.3%
   35    28     64.33     0.191    0.2%
   36    28     64.81     0.183    0.2%
   37    28     64.38     0.167    0.2%
   38    28     64.75     0.173    0.2%
   39    28     65.23     0.223    0.3%
   40    28     66.21     0.173    0.2%
   41    28     67.29     0.211    0.3%
   42    28     66.99     0.202    0.3%
   43    28     67.57     0.173    0.2%
   44    28     67.51      0.13    0.1%
   45    28     67.27     0.173    0.2%
   46    28     67.27     0.231    0.3%
   47    28     66.86     0.147    0.2%
   48    28     67.86     0.124    0.1%
   49     1     61.44     0.142    0.2%
   49     2     61.05     0.203    0.3%
   49     3     61.75     0.136    0.2%
   49     4      61.8     0.189    0.3%
   49     5      62.8     0.134    0.2%
   49     6     62.68     0.183    0.2%
   49     7     63.09     0.228    0.3%
   49     8     63.82     0.111    0.1%
   49     9      63.4     0.131    0.2%
   49    10     63.69     0.115    0.1%
   49    11      63.8     0.127    0.1%
   49    12     63.34     0.249    0.3%
   49    13     64.03     0.247    0.3%
   49    14      64.8      0.21    0.3%
   49    15     64.84     0.241    0.3%
   49    16     64.96     0.228    0.3%
   49    17     65.25     0.333    0.5%
   49    18     65.26     0.186    0.2%
   49    19     65.22     0.202    0.3%
   49    20     65.65     0.115    0.1%
   49    21     65.96     0.236    0.3%
   49    22     65.24      0.21    0.3%
   49    23     65.49      0.11    0.1%
   49    24     65.65     0.182    0.2%
   49    25     66.43     0.215    0.3%
   49    26     66.98      0.24    0.3%
   49    27     66.86     0.251    0.3%
   49    28      67.7     0.121    0.1%

Quality and confidence:
param     error
l         0.001
s         0.002

Model:
Time ~=    54.33
    + l    0.143
    + s    0.215
              µs

Reads = 2 + (0 * l) + (0 * s)
Writes = 2 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "vest_unlocked", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: Balances Locks (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    53.47
    + l    0.133
    + s    0.135
              µs

Reads = 2 + (0 * l) + (0 * s)
Writes = 2 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    28     60.33     0.238    0.3%
    1    28     56.91     0.131    0.2%
    2    28     56.57     0.252    0.4%
    3    28     57.53     0.249    0.4%
    4    28        58     0.297    0.5%
    5    28     57.68     0.114    0.1%
    6    28     58.48     0.261    0.4%
    7    28     58.45     0.237    0.4%
    8    28     58.15     0.204    0.3%
    9    28     58.24     0.082    0.1%
   10    28     58.67     0.232    0.3%
   11    28     58.56     0.206    0.3%
   12    28      59.2     0.169    0.2%
   13    28     59.33     0.262    0.4%
   14    28     59.33     0.312    0.5%
   15    28     59.36     0.246    0.4%
   16    28     59.59     0.284    0.4%
   17    28     59.77     0.174    0.2%
   18    28     59.94     0.187    0.3%
   19    28      59.4     0.256    0.4%
   20    28     59.79     0.254    0.4%
   21    28     59.87     0.168    0.2%
   22    28     60.62     0.093    0.1%
   23    28      60.4     0.243    0.4%
   24    28     60.98     0.194    0.3%
   25    28     60.34     0.176    0.2%
   26    28     60.19     0.163    0.2%
   27    28     60.37     0.239    0.3%
   28    28     60.08     0.138    0.2%
   29    28     61.09     0.172    0.2%
   30    28     60.71     0.222    0.3%
   31    28     61.25     0.279    0.4%
   32    28     61.19     0.239    0.3%
   33    28     61.23     0.157    0.2%
   34    28      61.5     0.178    0.2%
   35    28     61.08     0.144    0.2%
   36    28     61.37     0.202    0.3%
   37    28     61.55     0.221    0.3%
   38    28     61.39     0.139    0.2%
   39    28     61.45     0.158    0.2%
   40    28     61.92     0.194    0.3%
   41    28     63.39     0.194    0.3%
   42    28     63.77     0.252    0.3%
   43    28     63.67     0.174    0.2%
   44    28     63.42     0.159    0.2%
   45    28     63.72     0.222    0.3%
   46    28     64.06     0.227    0.3%
   47    28     63.91      0.17    0.2%
   48    28     63.77     0.152    0.2%
   49     1     60.45     0.202    0.3%
   49     2     60.21     0.208    0.3%
   49     3     60.61     0.094    0.1%
   49     4     60.58      0.15    0.2%
   49     5     60.68     0.203    0.3%
   49     6     60.54     0.155    0.2%
   49     7     61.14     0.223    0.3%
   49     8     61.03     0.137    0.2%
   49     9     61.38     0.214    0.3%
   49    10     60.89     0.186    0.3%
   49    11     60.79     0.191    0.3%
   49    12     61.52     0.177    0.2%
   49    13      62.8     0.154    0.2%
   49    14     62.11     0.186    0.2%
   49    15     62.67      0.22    0.3%
   49    16     62.16     0.163    0.2%
   49    17     62.04     0.152    0.2%
   49    18     62.26     0.172    0.2%
   49    19     62.05     0.185    0.2%
   49    20     62.56     0.135    0.2%
   49    21     63.47     0.212    0.3%
   49    22     62.29     0.179    0.2%
   49    23      62.9     0.275    0.4%
   49    24     63.02     0.141    0.2%
   49    25     63.38     0.167    0.2%
   49    26     63.48     0.206    0.3%
   49    27     63.97      0.18    0.2%
   49    28     64.15     0.165    0.2%

Quality and confidence:
param     error
l         0.001
s         0.003

Model:
Time ~=    53.72
    + l     0.13
    + s     0.13
              µs

Reads = 2 + (0 * l) + (0 * s)
Writes = 2 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "vest_other_locked", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    56.97
    + l    0.138
    + s    0.177
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    28     59.54     0.156    0.2%
    1    28     61.89     0.567    0.9%
    2    28     62.07     0.168    0.2%
    3    28     61.92     0.524    0.8%
    4    28     62.42     0.416    0.6%
    5    28     63.28     0.261    0.4%
    6    28     61.87     0.603    0.9%
    7    28     63.54      0.15    0.2%
    8    28     62.99     0.262    0.4%
    9    28      63.7     0.156    0.2%
   10    28     63.74     0.184    0.2%
   11    28     64.68     0.331    0.5%
   12    28     64.42     0.243    0.3%
   13    28     64.23     0.112    0.1%
   14    28     63.79     0.442    0.6%
   15    28     63.97     0.361    0.5%
   16    28     63.75     0.447    0.7%
   17    28     64.55     0.187    0.2%
   18    28     65.47     0.326    0.4%
   19    28     64.31     0.515    0.8%
   20    28     64.84     0.592    0.9%
   21    28     65.41     0.672    1.0%
   22    28     66.59      3.61    5.4%
   23    28     64.87     0.545    0.8%
   24    28     65.52     0.633    0.9%
   25    28     64.64      0.51    0.7%
   26    28      65.4     0.514    0.7%
   27    28     65.15     0.602    0.9%
   28    28     65.86     0.511    0.7%
   29    28     66.09     0.308    0.4%
   30    28      66.1     0.145    0.2%
   31    28     65.27     0.315    0.4%
   32    28     65.26     0.293    0.4%
   33    28     65.96     0.073    0.1%
   34    28     65.79     0.127    0.1%
   35    28      65.9     0.167    0.2%
   36    28     66.17     0.151    0.2%
   37    28     66.62     0.266    0.3%
   38    28     66.56     0.103    0.1%
   39    28     66.31     0.156    0.2%
   40    28     67.04     0.754    1.1%
   41    28     67.68     0.571    0.8%
   42    28     66.83      0.07    0.1%
   43    28     68.88     0.317    0.4%
   44    28     68.98     0.116    0.1%
   45    28     68.76     0.583    0.8%
   46    28     68.61     0.571    0.8%
   47    28     68.74     0.681    0.9%
   48    28     69.15     0.229    0.3%
   49     1     62.73     0.106    0.1%
   49     2      63.2     0.131    0.2%
   49     3     63.43     0.142    0.2%
   49     4      64.3     0.188    0.2%
   49     5     63.89     0.149    0.2%
   49     6     63.31     0.176    0.2%
   49     7      65.5     0.246    0.3%
   49     8      65.2     0.105    0.1%
   49     9     64.98     0.166    0.2%
   49    10     65.87     0.231    0.3%
   49    11     65.24     0.057    0.0%
   49    12     65.55     0.324    0.4%
   49    13     65.86     0.193    0.2%
   49    14     65.76     0.117    0.1%
   49    15     66.43     0.193    0.2%
   49    16     66.31     0.225    0.3%
   49    17     66.56     0.203    0.3%
   49    18     66.51     0.254    0.3%
   49    19     65.53     0.457    0.6%
   49    20     65.96     0.569    0.8%
   49    21      66.9     0.605    0.9%
   49    22     65.91     0.641    0.9%
   49    23        66     0.275    0.4%
   49    24     66.42     0.615    0.9%
   49    25     65.72     0.214    0.3%
   49    26     67.48     0.393    0.5%
   49    27     68.97     0.138    0.2%
   49    28     69.35     0.235    0.3%

Quality and confidence:
param     error
l         0.002
s         0.005

Model:
Time ~=    56.67
    + l     0.13
    + s    0.191
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "vest_other_unlocked", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    56.44
    + l    0.138
    + s    0.086
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    28     59.15     0.198    0.3%
    1    28     58.47     0.138    0.2%
    2    28     59.26     0.147    0.2%
    3    28     58.65     0.169    0.2%
    4    28     58.53     0.161    0.2%
    5    28     59.65      0.19    0.3%
    6    28     59.72     0.193    0.3%
    7    28     59.67     0.229    0.3%
    8    28     59.82      0.16    0.2%
    9    28     59.74     0.155    0.2%
   10    28     60.34     0.165    0.2%
   11    28     60.02     0.141    0.2%
   12    28     61.29     0.123    0.2%
   13    28     61.16     0.175    0.2%
   14    28     61.23     0.161    0.2%
   15    28     61.33      0.08    0.1%
   16    28     61.08     0.188    0.3%
   17    28     61.26      0.42    0.6%
   18    28     61.22     0.125    0.2%
   19    28     60.67      0.13    0.2%
   20    28     61.82     0.186    0.3%
   21    28     62.47     0.168    0.2%
   22    28     62.28     0.082    0.1%
   23    28     62.55     0.169    0.2%
   24    28     62.45     0.233    0.3%
   25    28     62.58     0.194    0.3%
   26    28     63.17     0.203    0.3%
   27    28     63.17     0.334    0.5%
   28    28     61.81     0.604    0.9%
   29    28     62.13     0.359    0.5%
   30    28     62.92     0.101    0.1%
   31    28     62.95     0.194    0.3%
   32    28      62.6     0.224    0.3%
   33    28      61.9     0.501    0.8%
   34    28      63.4     0.212    0.3%
   35    28      63.1     0.134    0.2%
   36    28     63.38     0.077    0.1%
   37    28     63.11     0.642    1.0%
   38    28     63.14     0.191    0.3%
   39    28     63.64     0.411    0.6%
   40    28     64.06     0.538    0.8%
   41    28     65.14     0.299    0.4%
   42    28     65.52     0.212    0.3%
   43    28     65.34     0.235    0.3%
   44    28     65.97      0.08    0.1%
   45    28     65.51     0.395    0.6%
   46    28     65.91     0.133    0.2%
   47    28     66.38      0.21    0.3%
   48    28     65.08      0.33    0.5%
   49     1      62.1     0.158    0.2%
   49     2     62.87     0.125    0.1%
   49     3     62.73     0.103    0.1%
   49     4     62.79     0.062    0.0%
   49     5     62.75     0.131    0.2%
   49     6     63.26     0.143    0.2%
   49     7     63.25     0.167    0.2%
   49     8     63.31     0.127    0.2%
   49     9     63.44     0.124    0.1%
   49    10     63.94      0.16    0.2%
   49    11     63.91     0.082    0.1%
   49    12     63.82     0.188    0.2%
   49    13     63.87     0.227    0.3%
   49    14     63.65     0.191    0.3%
   49    15     63.75      0.09    0.1%
   49    16     64.49     0.168    0.2%
   49    17     64.34      0.17    0.2%
   49    18     64.53     0.112    0.1%
   49    19     64.07     0.153    0.2%
   49    20     63.82     0.088    0.1%
   49    21     64.97     0.121    0.1%
   49    22     65.07     0.139    0.2%
   49    23     64.37     0.179    0.2%
   49    24     64.17     0.165    0.2%
   49    25     63.61     0.643    1.0%
   49    26     65.07     0.521    0.8%
   49    27     64.94     0.517    0.7%
   49    28     64.99     0.314    0.4%

Quality and confidence:
param     error
l         0.001
s         0.003

Model:
Time ~=    55.88
    + l    0.133
    + s    0.108
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "vested_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: System Account (r:1 w:1)
Storage: Balances Locks (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    94.39
    + l    0.128
    + s    0.203
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    27     95.79     0.385    0.4%
    1    27     100.3     0.375    0.3%
    2    27     99.87     0.131    0.1%
    3    27     100.7     0.205    0.2%
    4    27     100.3     0.252    0.2%
    5    27     101.1     0.246    0.2%
    6    27     100.9     0.182    0.1%
    7    27     101.6     0.285    0.2%
    8    27     101.1     0.249    0.2%
    9    27     101.2     0.275    0.2%
   10    27     100.3     0.837    0.8%
   11    27     100.4      0.81    0.8%
   12    27     101.4      0.75    0.7%
   13    27     99.61     0.728    0.7%
   14    27     102.1     0.787    0.7%
   15    27     101.9     0.305    0.2%
   16    27     102.2     0.209    0.2%
   17    27     102.2     0.415    0.4%
   18    27     101.3     1.049    1.0%
   19    27     101.7     1.024    1.0%
   20    27     102.5     0.531    0.5%
   21    27     101.5     1.174    1.1%
   22    27     103.1     1.013    0.9%
   23    27     102.7     0.804    0.7%
   24    27     101.5     1.158    1.1%
   25    27     103.8     0.621    0.5%
   26    27       102     0.876    0.8%
   27    27     102.5     1.126    1.0%
   28    27     103.9     0.903    0.8%
   29    27     101.5     1.739    1.7%
   30    27     101.7     0.935    0.9%
   31    27     102.1     0.782    0.7%
   32    27     101.5     0.214    0.2%
   33    27     102.5     0.881    0.8%
   34    27     102.3     0.846    0.8%
   35    27     102.1     0.481    0.4%
   36    27       102      0.21    0.2%
   37    27     101.9     0.656    0.6%
   38    27       102     0.174    0.1%
   39    27     105.4      0.49    0.4%
   40    27     105.8     0.232    0.2%
   41    27     106.5     0.331    0.3%
   42    27       106     0.173    0.1%
   43    27     106.8     0.235    0.2%
   44    27     105.2     0.769    0.7%
   45    27     106.4     0.203    0.1%
   46    27     106.7     0.194    0.1%
   47    27       106     0.604    0.5%
   48    27     106.2     1.087    1.0%
   49     0     116.2     0.436    0.3%
   49     1     100.3     0.247    0.2%
   49     2     100.3     0.149    0.1%
   49     3     100.7     0.239    0.2%
   49     4     100.4      0.16    0.1%
   49     5     101.2      0.18    0.1%
   49     6     100.8     0.216    0.2%
   49     7     101.8     0.173    0.1%
   49     8     101.6     0.206    0.2%
   49     9     101.3     0.315    0.3%
   49    10     102.2      0.17    0.1%
   49    11     101.8     0.362    0.3%
   49    12     102.5      0.22    0.2%
   49    13     102.8      0.17    0.1%
   49    14       103     0.234    0.2%
   49    15       103     0.399    0.3%
   49    16     103.7     0.166    0.1%
   49    17     102.8     0.187    0.1%
   49    18       104     0.268    0.2%
   49    19     103.8     0.176    0.1%
   49    20     104.4     0.171    0.1%
   49    21     103.6     0.171    0.1%
   49    22     105.2     0.161    0.1%
   49    23     104.3     0.222    0.2%
   49    24     103.6     1.068    1.0%
   49    25     104.5     0.184    0.1%
   49    26     106.5     0.432    0.4%
   49    27     106.6     0.539    0.5%

Quality and confidence:
param     error
l         0.005
s         0.011

Model:
Time ~=    95.99
    + l    0.118
    + s    0.133
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "force_vested_transfer", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: System Account (r:2 w:2)
Storage: Balances Locks (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    93.77
    + l     0.13
    + s    0.189
              µs

Reads = 4 + (0 * l) + (0 * s)
Writes = 4 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    27     95.16     0.156    0.1%
    1    27     98.54     0.169    0.1%
    2    27     99.27     0.116    0.1%
    3    27     99.16     0.174    0.1%
    4    27     99.15     0.217    0.2%
    5    27     99.42     0.236    0.2%
    6    27     99.32     0.175    0.1%
    7    27       100     0.216    0.2%
    8    27     100.1      0.17    0.1%
    9    27     99.79     0.352    0.3%
   10    27     100.8     0.171    0.1%
   11    27     100.8     0.258    0.2%
   12    27     100.5     0.256    0.2%
   13    27     100.5     0.204    0.2%
   14    27     100.4     0.278    0.2%
   15    27       101     0.168    0.1%
   16    27     100.6      0.18    0.1%
   17    27     101.1     0.136    0.1%
   18    27     101.5     0.168    0.1%
   19    27     101.7     0.243    0.2%
   20    27     102.5     0.121    0.1%
   21    27     102.3     0.208    0.2%
   22    27     102.1     0.423    0.4%
   23    27     101.5     0.445    0.4%
   24    27       102     0.311    0.3%
   25    27     102.4      0.25    0.2%
   26    27     102.2     0.272    0.2%
   27    27     102.7     0.168    0.1%
   28    27     102.4     0.241    0.2%
   29    27     102.7      0.25    0.2%
   30    27     102.9     0.191    0.1%
   31    27       102     0.268    0.2%
   32    27     102.8     0.089    0.0%
   33    27     102.8     0.094    0.0%
   34    27     102.8     0.254    0.2%
   35    27     103.1     0.198    0.1%
   36    27     102.8     0.215    0.2%
   37    27       102     1.029    1.0%
   38    27     103.1     0.242    0.2%
   39    27     103.6     0.282    0.2%
   40    27     103.6     0.927    0.8%
   41    27     104.6     0.995    0.9%
   42    27     105.3     0.871    0.8%
   43    27     104.7     0.854    0.8%
   44    27     106.3     0.207    0.1%
   45    27     105.2     0.707    0.6%
   46    27     105.2     0.772    0.7%
   47    27     105.5     0.933    0.8%
   48    27     104.2     0.801    0.7%
   49     0     116.4     0.323    0.2%
   49     1     99.27     0.165    0.1%
   49     2     99.45     0.164    0.1%
   49     3       100     0.163    0.1%
   49     4     100.2     0.211    0.2%
   49     5     100.2     0.136    0.1%
   49     6     100.1     0.222    0.2%
   49     7     100.8     0.185    0.1%
   49     8     100.4     0.098    0.0%
   49     9     101.2      0.19    0.1%
   49    10     101.1     0.178    0.1%
   49    11     100.6     0.143    0.1%
   49    12     101.4      0.24    0.2%
   49    13     102.3      0.21    0.2%
   49    14       102     0.257    0.2%
   49    15     102.4     0.223    0.2%
   49    16     102.7     0.214    0.2%
   49    17     102.2     0.249    0.2%
   49    18     102.8     0.314    0.3%
   49    19     102.8      0.14    0.1%
   49    20       103     0.272    0.2%
   49    21     101.9     0.686    0.6%
   49    22     103.2     0.454    0.4%
   49    23     103.8     0.401    0.3%
   49    24     103.7     0.351    0.3%
   49    25     102.9     0.763    0.7%
   49    26     105.3     0.548    0.5%
   49    27     105.5     0.381    0.3%

Quality and confidence:
param     error
l         0.005
s         0.011

Model:
Time ~=    95.18
    + l    0.117
    + s    0.141
              µs

Reads = 4 + (0 * l) + (0 * s)
Writes = 4 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "not_unlocking_merge_schedules", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=     57.4
    + l    0.148
    + s    0.196
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    28     59.78     0.267    0.4%
    1    28     62.61     0.229    0.3%
    2    28      63.4     0.152    0.2%
    3    28     63.18     0.192    0.3%
    4    28     63.82     0.179    0.2%
    5    28     63.91     0.248    0.3%
    6    28     63.24     0.118    0.1%
    7    28     64.15     0.159    0.2%
    8    28     64.05     0.145    0.2%
    9    28     64.46     0.148    0.2%
   10    28     64.57     0.204    0.3%
   11    28     64.88     0.146    0.2%
   12    28     64.72     0.141    0.2%
   13    28     65.74      0.16    0.2%
   14    28     65.55     0.159    0.2%
   15    28     65.93     0.273    0.4%
   16    28     65.69     0.153    0.2%
   17    28     65.13     0.164    0.2%
   18    28     65.34     0.125    0.1%
   19    28     65.66     0.268    0.4%
   20    28     67.66     1.462    2.1%
   21    28     66.99     1.213    1.8%
   22    28     65.95     0.186    0.2%
   23    28     66.35     0.192    0.2%
   24    28        66     0.144    0.2%
   25    28     66.17     0.203    0.3%
   26    28     66.54     0.157    0.2%
   27    28     66.56     0.259    0.3%
   28    28     66.88     0.269    0.4%
   29    28      67.1       0.2    0.2%
   30    28     66.76     0.187    0.2%
   31    28      67.2     0.189    0.2%
   32    28     66.64     0.169    0.2%
   33    28     67.24     0.158    0.2%
   34    28     67.41     0.146    0.2%
   35    28     67.21     0.125    0.1%
   36    28     67.14     0.219    0.3%
   37    28     67.78     0.165    0.2%
   38    28     67.66     0.126    0.1%
   39    28     68.46     0.102    0.1%
   40    28      69.5     0.168    0.2%
   41    28     70.38      0.31    0.4%
   42    28     69.81     0.116    0.1%
   43    28     69.29     0.084    0.1%
   44    28     70.18     0.125    0.1%
   45    28     70.48     0.197    0.2%
   46    28     70.41     0.181    0.2%
   47    28     70.63     0.138    0.1%
   48    28     69.76      0.16    0.2%
   49     2     64.99     0.195    0.3%
   49     3     65.13     0.096    0.1%
   49     4     64.63     0.128    0.1%
   49     5     65.77     0.171    0.2%
   49     6     65.56     0.147    0.2%
   49     7     65.96     0.176    0.2%
   49     8     66.49     0.197    0.2%
   49     9     66.57     0.143    0.2%
   49    10     67.13     0.146    0.2%
   49    11     67.38     0.328    0.4%
   49    12     67.31     0.166    0.2%
   49    13     67.45     0.145    0.2%
   49    14     67.24     0.212    0.3%
   49    15     67.42     0.146    0.2%
   49    16     67.81     0.135    0.1%
   49    17     68.27     0.174    0.2%
   49    18     68.33     0.112    0.1%
   49    19     68.42     0.218    0.3%
   49    20     68.45     0.073    0.1%
   49    21     69.05      0.09    0.1%
   49    22     69.24     0.148    0.2%
   49    23     69.15     0.163    0.2%
   49    24     69.24      0.15    0.2%
   49    25     68.91     0.146    0.2%
   49    26     70.32     0.209    0.2%
   49    27     70.25     0.152    0.2%
   49    28     69.98     0.235    0.3%

Quality and confidence:
param     error
l         0.001
s         0.003

Model:
Time ~=    57.06
    + l    0.154
    + s    0.203
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Pallet: "pallet_vesting", Extrinsic: "unlocking_merge_schedules", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Vesting Vesting (r:1 w:1)
Storage: Balances Locks (r:1 w:1)
Storage: System Account (r:1 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    57.55
    + l    0.138
    + s    0.192
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    l     s   mean µs  sigma µs       %
    0    28      60.3     0.225    0.3%
    1    28     63.26     0.118    0.1%
    2    28     63.69     0.191    0.2%
    3    28     62.97     0.101    0.1%
    4    28      63.2     0.196    0.3%
    5    28     64.58     0.182    0.2%
    6    28      63.9     0.139    0.2%
    7    28     64.56     0.115    0.1%
    8    28     63.85     0.175    0.2%
    9    28     63.02     0.443    0.7%
   10    28      64.9     0.173    0.2%
   11    28     64.27     0.126    0.1%
   12    28     65.37     0.112    0.1%
   13    28     65.58     0.214    0.3%
   14    28     64.87     0.475    0.7%
   15    28        65     0.647    0.9%
   16    28     64.83     0.454    0.7%
   17    28     65.35     0.148    0.2%
   18    28     64.91     0.407    0.6%
   19    28      65.6     0.256    0.3%
   20    28     65.91     0.311    0.4%
   21    28     66.37     0.148    0.2%
   22    28     65.92     0.053    0.0%
   23    28     66.77     0.175    0.2%
   24    28     66.14     0.529    0.7%
   25    28     65.18     0.201    0.3%
   26    28     66.29     0.089    0.1%
   27    28     66.29     0.099    0.1%
   28    28      67.1     0.125    0.1%
   29    28     66.65      0.12    0.1%
   30    28     66.44     0.145    0.2%
   31    28     66.84     0.153    0.2%
   32    28     66.65     0.147    0.2%
   33    28     67.39     0.098    0.1%
   34    28     67.12     0.114    0.1%
   35    28     67.41     0.196    0.2%
   36    28     67.04     0.362    0.5%
   37    28      67.1     0.261    0.3%
   38    28     66.96      0.34    0.5%
   39    28     67.39      0.44    0.6%
   40    28     69.18     0.206    0.2%
   41    28     70.12     0.253    0.3%
   42    28      69.2     0.679    0.9%
   43    28      69.6     0.577    0.8%
   44    28     69.59     0.184    0.2%
   45    28     69.66     0.133    0.1%
   46    28     69.48     0.489    0.7%
   47    28     69.55     0.367    0.5%
   48    28     69.91     0.202    0.2%
   49     2     64.54      0.18    0.2%
   49     3     65.28     0.214    0.3%
   49     4     65.64     0.153    0.2%
   49     5     65.62     0.158    0.2%
   49     6     65.96     0.078    0.1%
   49     7      66.1     0.191    0.2%
   49     8     66.61     0.078    0.1%
   49     9     66.06     0.083    0.1%
   49    10     67.15     0.196    0.2%
   49    11     66.37     0.138    0.2%
   49    12     66.77     0.429    0.6%
   49    13     66.72     0.195    0.2%
   49    14     66.82     0.631    0.9%
   49    15     66.89     0.584    0.8%
   49    16     67.72     0.419    0.6%
   49    17     68.32      0.12    0.1%
   49    18     68.54     0.175    0.2%
   49    19     67.46     0.124    0.1%
   49    20     68.42     0.134    0.1%
   49    21     68.51     0.167    0.2%
   49    22     68.46     0.166    0.2%
   49    23     69.13     0.193    0.2%
   49    24     68.75     0.192    0.2%
   49    25     69.17     0.145    0.2%
   49    26     69.54     0.071    0.1%
   49    27     70.12     0.164    0.2%
   49    28     70.33     0.262    0.3%

Quality and confidence:
param     error
l         0.001
s         0.003

Model:
Time ~=    57.54
    + l    0.145
    + s    0.185
              µs

Reads = 3 + (0 * l) + (0 * s)
Writes = 3 + (0 * l) + (0 * s)


kiltbot and others added 3 commits October 22, 2021 09:26
…hmarks -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet-vesting --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./runtimes/peregrine/src/weights/pallet_vesting.rs --template=.maintain/runtime-weight-template.hbs
@wischli wischli merged commit 4ab24b8 into develop Oct 22, 2021
@wischli wischli deleted the wf-0.9.11-clean branch October 22, 2021 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
❤️ high priority: high
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants