further refinements/tuning

This commit is contained in:
Cassandra Heart 2024-06-28 21:56:43 -05:00
parent 09b04402df
commit 6058cbc4c6
No known key found for this signature in database
GPG Key ID: 6352152859385958
3 changed files with 28 additions and 42 deletions

View File

@ -92,16 +92,17 @@ func (e *MasterClockConsensusEngine) handleSelfTestReport(
info.DifficultyMetric = report.DifficultyMetric info.DifficultyMetric = report.DifficultyMetric
info.MasterHeadFrame = report.MasterHeadFrame info.MasterHeadFrame = report.MasterHeadFrame
if info.Bandwidth <= 1048576 { if info.Bandwidth == 0 {
go func() { go func() {
ctx, cancel := context.WithTimeout(context.TODO(), 5*time.Minute) ctx, cancel := context.WithTimeout(context.TODO(), 5*time.Minute)
defer cancel() defer cancel()
ch := e.pubSub.GetMultiaddrOfPeerStream(ctx, peerID) ch := e.pubSub.GetMultiaddrOfPeerStream(ctx, peerID)
select { select {
case <-ch: case <-ch:
go func() { select {
e.bandwidthTestCh <- peerID case e.bandwidthTestCh <- peerID:
}() default:
}
case <-ctx.Done(): case <-ctx.Done():
} }
}() }()
@ -116,15 +117,16 @@ func (e *MasterClockConsensusEngine) handleSelfTestReport(
for i := 0; i < len(proofs); i++ { for i := 0; i < len(proofs); i++ {
proofs[i] = proof[i*516 : (i+1)*516] proofs[i] = proof[i*516 : (i+1)*516]
} }
go func() { select {
e.verifyTestCh <- verifyChallenge{ case e.verifyTestCh <- verifyChallenge{
peerID: peerID, peerID: peerID,
challenge: challenge, challenge: challenge,
cores: report.Cores, cores: report.Cores,
increment: report.Increment, increment: report.Increment,
proof: proof, proof: proof,
} }:
}() default:
}
return nil return nil
} }

View File

@ -146,7 +146,7 @@ func NewMasterClockConsensusEngine(
report: report, report: report,
frameValidationCh: make(chan *protobufs.ClockFrame), frameValidationCh: make(chan *protobufs.ClockFrame),
bandwidthTestCh: make(chan []byte), bandwidthTestCh: make(chan []byte),
verifyTestCh: make(chan verifyChallenge, 120000), verifyTestCh: make(chan verifyChallenge, 4),
engineConfig: engineConfig, engineConfig: engineConfig,
} }
@ -192,29 +192,14 @@ func (e *MasterClockConsensusEngine) Start() <-chan error {
go func() { go func() {
for { for {
select { select {
case newFrame := <-e.frameValidationCh:
head, err := e.masterTimeReel.Head()
if err != nil {
panic(err)
}
if head.FrameNumber > newFrame.FrameNumber ||
newFrame.FrameNumber-head.FrameNumber > 128 {
e.logger.Debug(
"frame out of range, ignoring",
zap.Uint64("number", newFrame.FrameNumber),
)
continue
}
if err := e.frameProver.VerifyMasterClockFrame(newFrame); err != nil {
e.logger.Error("could not verify clock frame", zap.Error(err))
continue
}
e.masterTimeReel.Insert(newFrame, false)
case peerId := <-e.bandwidthTestCh: case peerId := <-e.bandwidthTestCh:
e.performBandwidthTest(peerId) e.performBandwidthTest(peerId)
}
}
}()
go func() {
for {
select {
case verifyTest := <-e.verifyTestCh: case verifyTest := <-e.verifyTestCh:
e.performVerifyTest(verifyTest) e.performVerifyTest(verifyTest)
} }
@ -398,12 +383,11 @@ func (e *MasterClockConsensusEngine) Start() <-chan error {
panic(err) panic(err)
} }
e.logger.Info(
"broadcasting self-test info",
zap.Uint64("current_frame", e.report.MasterHeadFrame),
)
if increment%30 == 0 { if increment%30 == 0 {
e.logger.Info(
"broadcasting self-test info",
zap.Uint64("current_frame", e.report.MasterHeadFrame),
)
if err := e.publishMessage(e.filter, e.report); err != nil { if err := e.publishMessage(e.filter, e.report); err != nil {
e.logger.Debug("error publishing message", zap.Error(err)) e.logger.Debug("error publishing message", zap.Error(err))
} }

View File

@ -227,7 +227,7 @@ func main() {
fmt.Println("Signature check disabled, skipping...") fmt.Println("Signature check disabled, skipping...")
} }
if *memprofile != "" { if *memprofile != "" && *core == 0 {
go func() { go func() {
for { for {
time.Sleep(5 * time.Minute) time.Sleep(5 * time.Minute)
@ -241,7 +241,7 @@ func main() {
}() }()
} }
if *cpuprofile != "" { if *cpuprofile != "" && *core == 0 {
f, err := os.Create(*cpuprofile) f, err := os.Create(*cpuprofile)
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)