gpt4 book ai didi

hyperledger-fabric - Hyperledger Fabric 中 configtx.yaml 中的配置文件部分是什么

转载 作者:行者123 更新时间:2023-12-02 08:44:27 28 4
gpt4 key购买 nike

    TwoOrgsOrdererGenesis:
<<: *ChannelDefaults
Orderer:
<<: *OrdererDefaults
Organizations:
- *OrdererOrg
Capabilities:
<<: *OrdererCapabilities
Consortiums:
SampleConsortium:
Organizations:
- *Org1
- *Org2

TwoOrgsChannel:
Consortium: SampleConsortium
Application:
<<: *ApplicationDefaults
Organizations:
- *Org1
- *Org2
Capabilities:
<<: *ApplicationCapabilities

该部分到底是什么意思?

我们来谈谈第一个配置文件:TwoOrgsOrdererGenesis。这意味着什么?什么是财团?为什么在示例中创世 block 设置和 channel 设置有一个 SampleConsortium 名称?我检查了创世 block 内容,但找不到任何具有该名称的内容。

最佳答案

在这个文件中,我们配置了创世 block ,您可以实现它来构建您自己的网络,所以让我们深入了解一些细节。

组织领域,如下所示:

Organizations:

# SampleOrg defines an MSP using the sampleconfig. It should never be used
# in production but may be used as a template for other definitions
- &OrdererOrg
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Name: OrdererOrg

# ID to load the MSP definition as
ID: OrdererMSP

# MSPDir is the filesystem path which contains the MSP configuration
MSPDir: crypto-config/ordererOrganizations/example.com/msp

- &Org1
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Name: Org1MSP

# ID to load the MSP definition as
ID: Org1MSP

MSPDir: crypto-config/peerOrganizations/org1.example.com/msp

AnchorPeers:
# AnchorPeers defines the location of peers which can be used
# for cross org gossip communication. Note, this value is only
# encoded in the genesis block in the Application section context
- Host: peer0.org1.example.com
Port: 7051

- &Org2
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Name: Org2MSP

# ID to load the MSP definition as
ID: Org2MSP

MSPDir: crypto-config/peerOrganizations/org2.example.com/msp

AnchorPeers:
# AnchorPeers defines the location of peers which can be used
# for cross org gossip communication. Note, this value is only
# encoded in the genesis block in the Application section context
- Host: peer0.org2.example.com
Port: 7051

在这里,我们与同行一起定义我们的组织,并向我们的结构提供这些组织的加密 Material 的链接。因此,在此示例中,我们在文件顶部有 3 个组织(Orderer 组织)和 2 个其他对等组织,您可以注意到以下内容

Name: OrdererOrg
ID: OrdererMSP
MSPDir: crypto-config/ordererOrganizations/example.com/msp

这是订购者组织的配置,我们向成员(member)服务提供商提供 ID,该服务提供商是处理所有加密操作签名、验证、发行和链接的框架,我们将其与该组织的加密 Material 所在的位置链接起来我们的文件系统 MSPDir。

以下对等组织 Org1 和 Org2 遵循相同的结构,只是它们必须包含一个 anchor ,该 anchor 允许您的组织对等点与其他组织对等点进行通信,这是与多个组织保持数据同步的要点,所以我们必须在以下部分中为每个组织定义 anchor

AnchorPeers:
# AnchorPeers defines the location of peers which can be used
# for cross org gossip communication. Note, this value is only
# encoded in the genesis block in the Application section context
- Host: peer0.org1.example.com
Port: 7051

现在移至文件中的另一个部分,即 Orderer:看起来像

Orderer: &OrdererDefaults

# Orderer Type: The orderer implementation to start
# Available types are "solo" and "kafka"
OrdererType: solo

Addresses:
- orderer.example.com:7050

# Batch Timeout: The amount of time to wait before creating a batch
BatchTimeout: 2s

# Batch Size: Controls the number of messages batched into a block
BatchSize:

# Max Message Count: The maximum number of messages to permit in a batch
MaxMessageCount: 10

# Absolute Max Bytes: The absolute maximum number of bytes allowed for
# the serialized messages in a batch.
AbsoluteMaxBytes: 99 MB

# Preferred Max Bytes: The preferred maximum number of bytes allowed for
# the serialized messages in a batch. A message larger than the preferred
# max bytes will result in a batch larger than preferred max bytes.
PreferredMaxBytes: 512 KB

Kafka:
# Brokers: A list of Kafka brokers to which the orderer connects
# NOTE: Use IP:port notation
Brokers:
- 127.0.0.1:9092

# Organizations is the list of orgs which are defined as participants on
# the orderer side of the network
Organizations:

如果您注意到Orderer: &OrdererDefaults,它是一个包含以下设置的别名,因此我们可以在配置文件部分中使用它,本节后将对此进行解释:

    OrdererType: solo

这意味着我们使用单独的消息服务器,该服务器适用于开发,但不适用于生产,我们在生产环境中使用 Kafka:

Addresses:
- orderer.example.com:7050

此处订购者的地址,我们只有一个订购者,但在实际生产情况下,我们可以有多个订购者,因此您可以在此处提供其地址:

BatchSize:

# Max Message Count: The maximum number of messages to permit in a batch
MaxMessageCount: 10

# Absolute Max Bytes: The absolute maximum number of bytes allowed for
# the serialized messages in a batch.
AbsoluteMaxBytes: 99 MB

# Preferred Max Bytes: The preferred maximum number of bytes allowed for
# the serialized messages in a batch. A message larger than the preferred
# max bytes will result in a batch larger than preferred max bytes.
PreferredMaxBytes: 512 KB

在本节中,我们定义何时创建新 block ,因此这取决于您的业务用例,因此您可以依赖于创建新 block 的时间,即BatchTimeoutBatchSize 区 block 应该保存多少交易,甚至区 block 的最大大小,请仔细更改这些值以满足您的需求:

卡夫卡:# Brokers:排序者连接的 Kafka 代理列表# 注意:使用 IP:端口表示法经纪商:- 127.0.0.1:9092

如果您使用 Kafka,将使用此配置,并且在生产中您将拥有多个代理,因此请提供代理的 IP 地址。

最后是配置文件部分:

Profiles:

TwoOrgsOrdererGenesis:
Capabilities:
<<: *ChannelCapabilities
Orderer:
<<: *OrdererDefaults
Organizations:
- *OrdererOrg
Capabilities:
<<: *OrdererCapabilities
Consortiums:
SampleConsortium:
Organizations:
- *Org1
- *Org2
TwoOrgsChannel:
Consortium: SampleConsortium
Application:
<<: *ApplicationDefaults
Organizations:
- *Org1
- *Org2
Capabilities:
<<: *ApplicationCapabilities

本节将以良好可读的语法方式组合所有配置,换句话说,当您尝试创建创世 block 时,将执行本节,在第一节中,我们将提供创建创世 block 的配置。

  <<: *ChannelCapabilities

这意味着导入 ChannelCapability 别名在本节中引用的设置。

<<: *OrdererDefaults

这意味着导入所有加密 Material OrdererDefaults作为本节中引用它的别名。

在提交的联盟中,我们在此指定该订购者将服务于哪些组织,因为一个订购者可以为多个组织提供服务

TwoOrgsChannel 是我们的组织要加入的 channel ,请记住每个组织可以加入多个 channel ,因此我们还必须提供联盟 channel 让 channel 知道我们的加盟组织是为谁服务。

关于hyperledger-fabric - Hyperledger Fabric 中 configtx.yaml 中的配置文件部分是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52969268/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com