We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
conf.toml
Obviously related to both #529 and #221 we have a TON of stuff in many sub-systems that can be exposed for manual user control 😂
The latest example of this is from #523 which more or less allows user tweaking of the "scaling" of all widgets in our UIs by setting a font size..
search for todo notes in the code base with:
git grep config.toml
git grep conf.toml
more or less off the top of my head (lul):
.data.feed.
tick_throttle
data.flows.Flume
.service
.accounting._allocate
.data.feed
.data.history
ShmArray
/dev/shm
The text was updated successfully, but these errors were encountered:
brokers.toml
git
No branches or pull requests
Obviously related to both #529 and #221 we have a TON of stuff in many sub-systems that can be exposed for manual user control 😂
The latest example of this is from #523 which more or less allows user tweaking of the "scaling" of all widgets in our UIs by setting a font size..
Where to start
search for todo notes in the code base with:
git grep config.toml
git grep conf.toml
more or less off the top of my head (lul):
.data.feed.
throttling controls (search fortick_throttle
)data.flows.Flume
memory allocation size depending on OHLC sample rate.service
related (actor) daemon socket-address settings, maybe registry definitions?.accounting._allocate
settings for order sizing and limitsTesting
of fields are present in the
conf.toml
file.data.feed
throttle rate results in measurablylimited tick rates.
.data.history
relatedShmArray
(buffer) mem sizeand make sure
/dev/shm
files are sized to match.The text was updated successfully, but these errors were encountered: