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

feat: Make execution trace configurable via env variable #10585

Merged
merged 2 commits into from May 4, 2023

Conversation

fridrik01
Copy link
Contributor

Related Issues

#10584
#10504

Proposed Changes

We want to make the execution trace cache size configurable as SPs may want to disable it while exchanges may want to crank it up.

We were also are going with intuition for this value, so having ability to change it without a new build would help.

Checklist

Before you mark the PR ready for review, please make sure that:

  • Commits have a clear commit message.
  • PR title is in the form of of <PR type>: <area>: <change being made>
    • example: fix: mempool: Introduce a cache for valid signatures
    • PR type: fix, feat, build, chore, ci, docs, perf, refactor, revert, style, test
    • area, e.g. api, chain, state, market, mempool, multisig, networking, paych, proving, sealing, wallet, deps
  • New features have usage guidelines and / or documentation updates in
  • Tests exist for new functionality or change in behavior
  • CI is green

We want to make the execution trace cache size configurable as SPs
may want to disable it while exchanges may want to crank it up.

We were also are going with intuition for this value, so having
ability to change it without a new build would help.

Fixes: #10584
@fridrik01 fridrik01 requested a review from vyzo March 29, 2023 10:28
@fridrik01 fridrik01 marked this pull request as ready for review March 29, 2023 10:30
@fridrik01 fridrik01 requested a review from a team as a code owner March 29, 2023 10:30
Copy link
Contributor

@vyzo vyzo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks reasonable, just a comment on initialkzation.

chain/stmgr/stmgr.go Outdated Show resolved Hide resolved
@@ -74,6 +75,17 @@ func (m *migrationResultCache) keyForMigration(root cid.Cid) dstore.Key {
return dstore.NewKey(kStr)
}

func init() {
if s := os.Getenv("LOTUS_EXEC_TRACE_CACHE"); s != "" {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename to LOTUS_EXEC_TRACE_CACHE_SIZE

@@ -40,8 +42,7 @@ import (
const LookbackNoLimit = api.LookbackNoLimit
const ReceiptAmtBitwidth = 3

const execTraceCacheSize = 16

var defaultExecTraceCacheSize = 16
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep the old name? Because if the envvar is set, we set this field, which means it's no longer a default size?

@fridrik01 fridrik01 merged commit dec3af7 into master May 4, 2023
@fridrik01 fridrik01 deleted the 10584-make-execution-cache-size-configurable branch May 4, 2023 14:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants