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

Implement real vs mock protocol selection #335

Merged
merged 9 commits into from
Feb 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarking/chain-sync/benchmark-chain-sync-mainnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exec ${NODE} \
--genesis-hash "5f20df933584822601f9e3f8c024eb5eb252fe8cefb24d1317dc3d432e940ebb" \
--config ${BASEDIR}/configuration/log-configuration.yaml \
--database-path .//db-mainnet \
--socket-dir /tmp/socket-bm-chain-sync \
--socket-path /tmp/socket-bm-chain-sync \
--topology ${BASEDIR}/configuration/topology-local.yaml \
--host-addr 127.0.0.1 \
--port 7778 \
Expand Down
2 changes: 1 addition & 1 deletion benchmarking/chain-sync/configuration/log-config-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ options:
##########################################################


NodeId: 0
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresNoMagic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ options:
##########################################################


NodeId: 0
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresNoMagic
Expand Down
10 changes: 9 additions & 1 deletion benchmarking/chain-sync/configuration/topology-local.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
[{"nodeAddress":{"addr":"127.0.0.1","port":3001},"nodeId":0,"producers":[{"addr":"127.0.0.1","port":7777,"valency":1}]}]
{
"Producers":[
{
"addr":"127.0.0.1",
"port":7777,
"valency":1
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ options:
##########################################################


NodeId: 0
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresMagic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ options:
##########################################################


NodeId: 1
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresMagic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ options:
##########################################################


NodeId: 2
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresMagic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ options:
##########################################################


NodeId: 99
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresMagic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ options:
##########################################################


NodeId: 0
NodeId:
Protocol: RealPBFT
NumCoreNodes: 1
RequiresNetworkMagic: RequiresMagic
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

{
"Producers":[
{
"addr":"127.0.0.1",
"port":3001,
"valency":1
},
{
"addr":"127.0.0.1",
"port":3002,
"valency":1
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"Producers":[
{
"addr":"127.0.0.1",
"port":3000,
"valency":1
},
{
"addr":"127.0.0.1",
"port":3002,
"valency":1
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"Producers":[
{
"addr":"127.0.0.1",
"port":3000,
"valency":1
},
{
"addr":"127.0.0.1",
"port":3001,
"valency":1
}
]
}
14 changes: 7 additions & 7 deletions benchmarking/cluster3nodes/run-3node-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ function dlgcert () {
printf -- "--delegation-certificate ${genesis_root}/delegation-cert.%03d.json " "$1"
}
function commonargs() {
printf -- "--topology configuration/simple-topology.json "
printf -- "--database-path ./db/ "
printf -- "--topology configuration/simple-topology-real-pbft-node-$1.json "
printf -- "--database-path ./db-$1/ "
printf -- "--genesis-file ${genesis_file} "
printf -- "--genesis-hash ${genesis_hash} "
printf -- "--socket-dir /tmp/cluster3nodes-socket/ "
printf -- "--socket-path /tmp/cluster3nodes-socket/$1 "
}

function nodeargs () {
local extra="$2"
commonargs
commonargs $1
nodecfg $1
dlgkey $1
dlgcert $1
Expand All @@ -65,8 +65,8 @@ tmux select-pane -t 0

# start nodes
tmux select-pane -t 0
tmux send-keys "cd '${BASEPATH}'; ${CMD} exe:cardano-node $(nodeargs 0 "$(echo -n ${EXTRA})") " C-m
tmux send-keys "cd '${BASEPATH}'; ${CMD} exe:cardano-node run $(nodeargs 0 "$(echo -n ${EXTRA})") " C-m
tmux select-pane -t 1
tmux send-keys "cd '${BASEPATH}'; ${CMD} exe:cardano-node $(nodeargs 1 "$(echo -n ${EXTRA})") " C-m
tmux send-keys "cd '${BASEPATH}'; ${CMD} exe:cardano-node run $(nodeargs 1 "$(echo -n ${EXTRA})") " C-m
tmux select-pane -t 2
tmux send-keys "cd '${BASEPATH}'; ${CMD} exe:cardano-node $(nodeargs 2 "$(echo -n ${EXTRA})") " C-m
tmux send-keys "cd '${BASEPATH}'; ${CMD} exe:cardano-node run $(nodeargs 2 "$(echo -n ${EXTRA})") " C-m
3 changes: 1 addition & 2 deletions benchmarking/cluster3nodes/run_tx_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exec ${GENERATOR} \
--delegation-certificate ${CONFIGDIR}/latest-genesis/delegation-cert.000.json \
--genesis-file ${GENESISJSON} \
--genesis-hash ${GENESISHASH} \
--socket-dir /tmp/cluster3nodes-socket \
--socket-path /tmp/cluster3nodes-socket/0 \
--real-pbft \
--num-of-txs $numtx \
--add-tx-size $addsizetx \
Expand All @@ -36,5 +36,4 @@ exec ${GENERATOR} \
--sig-key ${CONFIGDIR}/latest-genesis/delegate-keys.000.key \
--sig-key ${CONFIGDIR}/latest-genesis/delegate-keys.001.key \
--sig-key ${CONFIGDIR}/latest-genesis/delegate-keys.002.key \
--node-id 0 \
${TARGETNODES}
34 changes: 14 additions & 20 deletions cardano-config/src/Cardano/Config/Logging.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ module Cardano.Config.Logging
, mkLOMeta
, LOMeta (..)
, LOContent (..)
-- CLI argument parser
, LoggingCLIArguments (..)
) where

import Cardano.Prelude hiding (trace)
Expand Down Expand Up @@ -60,8 +58,9 @@ import qualified Cardano.BM.Trace as Trace
import Cardano.Shell.Lib (GeneralException (..))
import Cardano.Shell.Types (CardanoFeature (..))

import Cardano.Config.Types (ConfigYamlFilePath(..), CardanoEnvironment,
NodeCLI(..), NodeConfiguration(..), parseNodeConfiguration)
import Cardano.Config.Types (ConfigYamlFilePath (..), CardanoEnvironment,
NodeMockCLI (..), NodeProtocolMode (..),
NodeConfiguration (..), NodeCLI (..),parseNodeConfiguration)


--------------------------------------------------------------------------------
Expand Down Expand Up @@ -114,11 +113,6 @@ data LoggingLayer = LoggingLayer
-- Feature
--------------------------------

-- | CLI specific data structure.
data LoggingCLIArguments = LoggingCLIArguments
{ logConfigFile :: !(Maybe FilePath)
, captureMetrics :: !Bool
}

data LoggingFlag = LoggingEnabled | LoggingDisabled
deriving (Eq, Show)
Expand Down Expand Up @@ -174,17 +168,13 @@ createLoggingFeatureCLI _ mLogConfig captureLogMetrics = do

-- | Create logging feature for `cardano-node`
createLoggingFeature
:: CardanoEnvironment -> NodeCLI -> IO (LoggingLayer, CardanoFeature)
createLoggingFeature _ nCli = do
-- we parse any additional configuration if there is any
-- We don't know where the user wants to fetch the additional
-- configuration from, it could be from
-- the filesystem, so we give him the most flexible/powerful context, @IO@.
--
-- Currently we parse outside the features since we want to have a complete
-- parser for __every feature__.
nc <- parseNodeConfiguration . unConfigPath $ configFp nCli
let logConfigFp = if ncLoggingSwitch nc then Just . unConfigPath $ configFp nCli else Nothing
:: CardanoEnvironment -> NodeProtocolMode -> IO (LoggingLayer, CardanoFeature)
createLoggingFeature _ nodeProtocolMode = do

configYamlFp <- pure $ getConfigYaml nodeProtocolMode

nc <- parseNodeConfiguration $ unConfigPath configYamlFp
let logConfigFp = if ncLoggingSwitch nc then Just $ unConfigPath configYamlFp else Nothing

(disabled', loggingConfiguration) <- loggingCLIConfiguration
logConfigFp
Expand All @@ -203,6 +193,10 @@ createLoggingFeature _ nCli = do

-- we return both
pure (loggingLayer, cardanoFeature)
where
getConfigYaml :: NodeProtocolMode -> ConfigYamlFilePath
getConfigYaml (RealProtocolMode (NodeCLI _ _ _ rConfigFp _ )) = rConfigFp
getConfigYaml (MockProtocolMode (NodeMockCLI _ _ _ mConfigFp _)) = mConfigFp

-- | Initialize `LoggingCardanoFeature`
loggingCardanoFeatureInit :: LoggingFlag -> LoggingConfiguration -> IO (LoggingLayer, LoggingLayer -> IO())
Expand Down
7 changes: 5 additions & 2 deletions cardano-config/src/Cardano/Config/Protocol.hs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fromProtocol
-> Maybe NodeId
-> Maybe Word64
-- ^ Number of core nodes
-> GenesisFile
-> Maybe GenesisFile
-> RequiresNetworkMagic
-> Maybe Double
-> Maybe DelegationCertFile
Expand Down Expand Up @@ -162,8 +162,11 @@ fromProtocol _ nId mNumCoreNodes _ _ _ _ _ _ MockPBFT =
, pbftSlotLength = mockSlotLength
}
cid
fromProtocol gHash _ _ genFile nMagic sigThresh delCertFp sKeyFp update RealPBFT = do
fromProtocol gHash _ _ mGenFile nMagic sigThresh delCertFp sKeyFp update RealPBFT = do
let genHash = either panic identity $ decodeHash gHash
genFile = fromMaybe (panic $ "Cardano.Config.Protocol.fromProtocol: "
<> "Genesis file not specified"
) mGenFile

gc <- firstExceptT LedgerConfigError $ Genesis.mkConfigFromFile
nMagic
Expand Down
8 changes: 8 additions & 0 deletions cardano-config/src/Cardano/Config/Topology.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module Cardano.Config.Topology
, NodeAddress(..)
, NodeHostAddress(..)
, NodeSetup(..)
, RealNodeTopology(..)
, RemoteAddress(..)
, createNodeAddress
, nodeAddressInfo
Expand Down Expand Up @@ -135,6 +136,13 @@ data NodeSetup = NodeSetup
, producers :: ![RemoteAddress]
} deriving Show

data RealNodeTopology = RealNodeTopology { rProducers :: ![RemoteAddress] }

instance FromJSON RealNodeTopology where
parseJSON = withObject "RealNodeTopology" $ \v ->
RealNodeTopology
<$> v .: "Producers"

instance FromJSON NodeId where
parseJSON v = CoreId . CoreNodeId <$> parseJSON v

Expand Down
27 changes: 21 additions & 6 deletions cardano-config/src/Cardano/Config/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ module Cardano.Config.Types
, GenesisFile (..)
, LastKnownBlockVersion (..)
, MiscellaneousFilepaths (..)
, NodeCLI (..)
, NodeConfiguration (..)
, Protocol (..)
, NodeMockCLI (..)
, NodeCLI (..)
, NodeProtocolMode (..)
, SigningKeyFile (..)
, SocketFile (..)
, TopologyFile (..)
, TraceOptions (..)
, SocketPath (..)
, Update (..)
, ViewMode (..)
, parseNodeConfiguration
Expand Down Expand Up @@ -56,8 +58,21 @@ data NodeCLI = NodeCLI
, nodeAddr :: !NodeAddress
, configFp :: !ConfigYamlFilePath
, validateDB :: !Bool
}

data NodeMockCLI = NodeMockCLI
{ mockMscFp :: !MiscellaneousFilepaths
, mockGenesisHash :: !Text
, mockNodeAddr :: !NodeAddress
, mockConfigFp :: !ConfigYamlFilePath
, mockValidateDB :: !Bool
} deriving Show

-- | Mock protocols requires different parameters to real protocols.
-- Therefore we distinguish this at the top level on the command line.
data NodeProtocolMode = MockProtocolMode NodeMockCLI
| RealProtocolMode NodeCLI

-- | Filepath of the configuration yaml file. This file determines
-- all the configuration settings required for the cardano node
-- (logging, tracing, protocol, slot length etc)
Expand All @@ -68,10 +83,10 @@ newtype ConfigYamlFilePath = ConfigYamlFilePath
data MiscellaneousFilepaths = MiscellaneousFilepaths
{ topFile :: !TopologyFile
, dBFile :: !DbFile
, genesisFile :: !GenesisFile
, genesisFile :: !(Maybe GenesisFile)
, delegCertFile :: !(Maybe DelegationCertFile)
, signKeyFile :: !(Maybe SigningKeyFile)
, socketFile :: !SocketFile
, socketFile :: !SocketPath
} deriving Show

newtype TopologyFile = TopologyFile
Expand All @@ -90,7 +105,7 @@ newtype DelegationCertFile = DelegationCertFile
{ unDelegationCert :: FilePath }
deriving Show

newtype SocketFile = SocketFile
data SocketPath = SocketFile
{ unSocket :: FilePath }
deriving Show

Expand All @@ -102,7 +117,7 @@ data NodeConfiguration =
NodeConfiguration
{ ncProtocol :: Protocol
, ncNodeId :: Maybe NodeId
, ncNumCoreNodes :: Maybe Int
, ncNumCoreNodes :: Maybe Word64
, ncReqNetworkMagic :: RequiresNetworkMagic
, ncPbftSignatureThresh :: Maybe Double
, ncLoggingSwitch :: Bool
Expand Down
6 changes: 3 additions & 3 deletions cardano-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The general synopsis is as follows:

Usage: cardano-node --topology FILEPATH --database-path FILEPATH
--genesis-file FILEPATH [--delegation-certificate FILEPATH]
[--signing-key FILEPATH] --socket-dir FILEPATH
[--signing-key FILEPATH] --socket-path FILEPATH
[--host-addr HOST-NAME] --port PORT
--config NODE-CONFIGURATION [--help] [--help-tracing]
[--help-advanced]
Expand All @@ -63,7 +63,7 @@ Usage: cardano-node --topology FILEPATH --database-path FILEPATH

`--signing-key` - Optional path to the signing key.

`--socket-dir` - Path to the socket directory.
`--socket-path` - Path to the socket file.

`--host-addr` - Optionally specify your node's IPv4 or IPv6 address.

Expand All @@ -77,7 +77,7 @@ Usage: cardano-node --topology FILEPATH --database-path FILEPATH
The `--config` flag points to a `.yaml` file that is responsible to configuring the logging & other important settings for the node.
Some of the more important settings are as follows:

`NodeId: 0` -- Soon to be removed from config file. Used to identify nodes in local clusters.
`NodeId: 0` -- Used in mock protocols only to differentiate nodes.

`Protocol: RealPBFT` -- Protocol the node will execute

Expand Down
Loading