 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
const (
	// Prefix identifies the prefix for the orderer-related ENV vars.
	Prefix = "ORDERER"
)
    Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Authentication ¶
Authentication contains configuration parameters related to authenticating client messages
type Consumer ¶
Consumer contains configuration for the consumer's retries when failing to read from a Kafa partition.
type Debug ¶
Debug contains configuration for the orderer's debug parameters
type FileLedger ¶
FileLedger contains configuration for the file-based ledger.
type General ¶
type General struct {
	LedgerType     string
	ListenAddress  string
	ListenPort     uint16
	TLS            TLS
	Keepalive      Keepalive
	GenesisMethod  string
	GenesisProfile string
	SystemChannel  string
	GenesisFile    string
	Profile        Profile
	LogLevel       string
	LogFormat      string
	LocalMSPDir    string
	LocalMSPID     string
	BCCSP          *bccsp.FactoryOpts
	Authentication Authentication
}
    General contains config which should be common among all orderer types.
type Kafka ¶
type Kafka struct {
	Retry   Retry
	Verbose bool
	Version sarama.KafkaVersion // TODO Move this to global config
	TLS     TLS
}
    Kafka contains configuration for the Kafka-based orderer.
type Keepalive ¶
type Keepalive struct {
	ServerMinInterval time.Duration
	ServerInterval    time.Duration
	ServerTimeout     time.Duration
}
    Keepalive contains configuration for gRPC servers
type Metadata ¶
Metadata contains configuration for the metadata requests to the Kafka cluster.
type NetworkTimeouts ¶
type NetworkTimeouts struct {
	DialTimeout  time.Duration
	ReadTimeout  time.Duration
	WriteTimeout time.Duration
}
    NetworkTimeouts contains the socket timeouts for network requests to the Kafka cluster.
type Producer ¶
Producer contains configuration for the producer's retries when failing to post a message to a Kafka partition.
type Profile ¶
Profile contains configuration for Go pprof profiling.
type RAMLedger ¶
type RAMLedger struct {
	HistorySize uint
}
    RAMLedger contains configuration for the RAM ledger.
type Retry ¶
type Retry struct {
	ShortInterval   time.Duration
	ShortTotal      time.Duration
	LongInterval    time.Duration
	LongTotal       time.Duration
	NetworkTimeouts NetworkTimeouts
	Metadata        Metadata
	Producer        Producer
	Consumer        Consumer
}
    Retry contains configuration related to retries and timeouts when the connection to the Kafka cluster cannot be established, or when Metadata requests needs to be repeated (because the cluster is in the middle of a leader election).
type TLS ¶
type TLS struct {
	Enabled            bool
	PrivateKey         string
	Certificate        string
	RootCAs            []string
	ClientAuthRequired bool
	ClientRootCAs      []string
}
    TLS contains configuration for TLS connections.
type TopLevel ¶
type TopLevel struct {
	General    General
	FileLedger FileLedger
	RAMLedger  RAMLedger
	Kafka      Kafka
	Debug      Debug
}
    TopLevel directly corresponds to the orderer config YAML. Note, for non 1-1 mappings, you may append something like `mapstructure:"weirdFoRMat"` to modify the default mapping, see the "Unmarshal" section of https://github.com/spf13/viper for more info
       Source Files
      ¶
      Source Files
      ¶
    
- config.go