Substrate 具有运行时版本控制。这些的目的和用例是什么?
Substrate has runtime versioning. What is the purpose and use case for these?
在 substrate 运行时的主要 lib.rs
中,(以及在模板节点中)有几个可以更改的版本属性 - 我猜是为了跟踪各种构建版本 - 但不清楚如何更改我们将在我们自己的项目中使用这些。
1) 它们的用途是什么?在我们自己的项目中增加这些的期望是什么?
2) 这些或组合中的任何一个或组合是否旨在表明与我们的运行时的先前版本不兼容,例如,此增量表示较新版本与存储、共识或其他一些可能不兼容的方面不兼容预计会导致网络分叉?
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("node"),
impl_name: create_runtime_str!("substrate-node"),
authoring_version: 10,
spec_version: 99,
impl_version: 104,
apis: RUNTIME_API_VERSIONS,
};
运行时版本控制是基于 Substrate 的区块链 "forkless runtime upgrade" 功能的重要组成部分。
从 core/sr-version
开始 post:
/// Runtime version.
/// This should not be thought of as classic Semver (major/minor/tiny).
/// This triplet have different semantics and mis-interpretation could cause problems.
/// In particular: bug fixes should result in an increment of `spec_version` and possibly `authoring_version`,
/// absolutely not `impl_version` since they change the semantics of the runtime.
#[derive(Clone, PartialEq, Eq, Encode)]
#[cfg_attr(feature = "std", derive(Debug, Serialize, Decode))]
#[cfg_attr(feature = "std", serde(rename_all = "camelCase"))]
pub struct RuntimeVersion {
/// Identifies the different Substrate runtimes. There'll be at least polkadot and node.
/// A different on-chain spec_name to that of the native runtime would normally result
/// in node not attempting to sync or author blocks.
pub spec_name: RuntimeString,
/// Name of the implementation of the spec. This is of little consequence for the node
/// and serves only to differentiate code of different implementation teams. For this
/// codebase, it will be parity-polkadot. If there were a non-Rust implementation of the
/// Polkadot runtime (e.g. C++), then it would identify itself with an accordingly different
/// `impl_name`.
pub impl_name: RuntimeString,
/// `authoring_version` is the version of the authorship interface. An authoring node
/// will not attempt to author blocks unless this is equal to its native runtime.
pub authoring_version: u32,
/// Version of the runtime specification. A full-node will not attempt to use its native
/// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
/// `spec_version` and `authoring_version` are the same between Wasm and native.
pub spec_version: u32,
/// Version of the implementation of the specification. Nodes are free to ignore this; it
/// serves only as an indication that the code is different; as long as the other two versions
/// are the same then while the actual code may be different, it is nonetheless required to
/// do the same thing.
/// Non-consensus-breaking optimizations are about the only changes that could be made which
/// would result in only the `impl_version` changing.
pub impl_version: u32,
/// List of supported API "features" along with their versions.
#[cfg_attr(feature = "std", serde(serialize_with = "apis_serialize::serialize"))]
pub apis: ApisVec,
}
spec_version
用于表示consensus-critical逻辑是否发生变化,而impl_version
用于表示不影响共识的变化在网络中。例如,如果函数的行为在运行时发生变化,则必须递增 spec_version
以注意此版本的运行时不会与其他版本的运行时达成一致。然而,如果只对一个函数进行了优化,但结果输出是相同的,那么只需要增加 impl_version
。
使用 spec_version
,节点能够确定运行时的本机版本(本机可执行文件实际上 运行 节点)是否匹配运行时的 Wasm 版本(存储在on-chain 并且网络已经达成共识)。
在本机 spec_name
、authoring_version
和 spec_version
运行时 匹配 Wasm 运行时版本的情况下,使用本机运行时而不是 Wasm 运行时,因为它执行起来更快。在 spec_version
不完全匹配的情况下,节点将回退使用运行时的 Wasm 版本,确保节点与网络的其余部分保持一致。
如果您想跟踪发生这种情况的代码路径,您可以从 core/sr-version
开始。
impl RuntimeVersion {
/// Check if this version matches other version for calling into runtime.
pub fn can_call_with(&self, other: &RuntimeVersion) -> bool {
self.spec_version == other.spec_version &&
self.spec_name == other.spec_name &&
self.authoring_version == other.authoring_version
}
...
}
然后如果你进入core/executor/native_executor.rs
,你会看到can_call_with
函数用于确定是否可以使用本机运行时。
编辑: 重要的是要注意块构造执行引擎始终默认为 Wasm,而导入执行引擎如果可能会尝试使用本机,使用上述逻辑。
在 substrate 运行时的主要 lib.rs
中,(以及在模板节点中)有几个可以更改的版本属性 - 我猜是为了跟踪各种构建版本 - 但不清楚如何更改我们将在我们自己的项目中使用这些。
1) 它们的用途是什么?在我们自己的项目中增加这些的期望是什么?
2) 这些或组合中的任何一个或组合是否旨在表明与我们的运行时的先前版本不兼容,例如,此增量表示较新版本与存储、共识或其他一些可能不兼容的方面不兼容预计会导致网络分叉?
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("node"),
impl_name: create_runtime_str!("substrate-node"),
authoring_version: 10,
spec_version: 99,
impl_version: 104,
apis: RUNTIME_API_VERSIONS,
};
运行时版本控制是基于 Substrate 的区块链 "forkless runtime upgrade" 功能的重要组成部分。
从 core/sr-version
开始 post:
/// Runtime version.
/// This should not be thought of as classic Semver (major/minor/tiny).
/// This triplet have different semantics and mis-interpretation could cause problems.
/// In particular: bug fixes should result in an increment of `spec_version` and possibly `authoring_version`,
/// absolutely not `impl_version` since they change the semantics of the runtime.
#[derive(Clone, PartialEq, Eq, Encode)]
#[cfg_attr(feature = "std", derive(Debug, Serialize, Decode))]
#[cfg_attr(feature = "std", serde(rename_all = "camelCase"))]
pub struct RuntimeVersion {
/// Identifies the different Substrate runtimes. There'll be at least polkadot and node.
/// A different on-chain spec_name to that of the native runtime would normally result
/// in node not attempting to sync or author blocks.
pub spec_name: RuntimeString,
/// Name of the implementation of the spec. This is of little consequence for the node
/// and serves only to differentiate code of different implementation teams. For this
/// codebase, it will be parity-polkadot. If there were a non-Rust implementation of the
/// Polkadot runtime (e.g. C++), then it would identify itself with an accordingly different
/// `impl_name`.
pub impl_name: RuntimeString,
/// `authoring_version` is the version of the authorship interface. An authoring node
/// will not attempt to author blocks unless this is equal to its native runtime.
pub authoring_version: u32,
/// Version of the runtime specification. A full-node will not attempt to use its native
/// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
/// `spec_version` and `authoring_version` are the same between Wasm and native.
pub spec_version: u32,
/// Version of the implementation of the specification. Nodes are free to ignore this; it
/// serves only as an indication that the code is different; as long as the other two versions
/// are the same then while the actual code may be different, it is nonetheless required to
/// do the same thing.
/// Non-consensus-breaking optimizations are about the only changes that could be made which
/// would result in only the `impl_version` changing.
pub impl_version: u32,
/// List of supported API "features" along with their versions.
#[cfg_attr(feature = "std", serde(serialize_with = "apis_serialize::serialize"))]
pub apis: ApisVec,
}
spec_version
用于表示consensus-critical逻辑是否发生变化,而impl_version
用于表示不影响共识的变化在网络中。例如,如果函数的行为在运行时发生变化,则必须递增 spec_version
以注意此版本的运行时不会与其他版本的运行时达成一致。然而,如果只对一个函数进行了优化,但结果输出是相同的,那么只需要增加 impl_version
。
使用 spec_version
,节点能够确定运行时的本机版本(本机可执行文件实际上 运行 节点)是否匹配运行时的 Wasm 版本(存储在on-chain 并且网络已经达成共识)。
在本机 spec_name
、authoring_version
和 spec_version
运行时 匹配 Wasm 运行时版本的情况下,使用本机运行时而不是 Wasm 运行时,因为它执行起来更快。在 spec_version
不完全匹配的情况下,节点将回退使用运行时的 Wasm 版本,确保节点与网络的其余部分保持一致。
如果您想跟踪发生这种情况的代码路径,您可以从 core/sr-version
开始。
impl RuntimeVersion {
/// Check if this version matches other version for calling into runtime.
pub fn can_call_with(&self, other: &RuntimeVersion) -> bool {
self.spec_version == other.spec_version &&
self.spec_name == other.spec_name &&
self.authoring_version == other.authoring_version
}
...
}
然后如果你进入core/executor/native_executor.rs
,你会看到can_call_with
函数用于确定是否可以使用本机运行时。
编辑: 重要的是要注意块构造执行引擎始终默认为 Wasm,而导入执行引擎如果可能会尝试使用本机,使用上述逻辑。