-
Notifications
You must be signed in to change notification settings - Fork 23
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
Add parameters WriteMixedBlobThreshold and WriteMixedBlobThresholdSSD #2910
base: main
Are you sure you want to change the base?
Conversation
const auto writeMixedBlobThreshold = GetWriteMixedBlobThreshold( | ||
*Config, | ||
PartitionConfig.GetStorageMediaKind(), | ||
writeBlobThreshold); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
какое отношение writeBlobThreshold для merged имеет к трэшолду для mixed? Кажется что никакое. На ноль можно и явно в коде проверить, так хоть понятнее будет
0b753a1
to
4cdefba
Compare
as minimum request size in bytes to write to the mixed channel.
4cdefba
to
1c4608e
Compare
|
||
if (requestSize < writeBlobThreshold) { | ||
if (requestSize < (writeMixedBlobThreshold ? writeMixedBlobThreshold |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
я предлагаю организовать код так:
if (requestSize > writeBlobThreshold) {
пишем merged
} else if (requestSize > writeMixedBlobThreshold) {
пишем mixed
} else {
fresh
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тогда придется дополнительно обработать writeMixedBlobThreshold == 0, именно поэтому сделал по текущей схеме.
Добавляет параметры WriteMixedBlobThreshold и WriteMixedBlobThresholdSSD. Это размер запроса в байтах.
С размером меньше WriteMixedBlobThreshold(SSD) будут записаны в fresh канал.
Данные с размером от WriteMixedBlobThreshold(SSD) до WriteBlobThreshold(SSD) будут записаны в mixed канал.
С размером больше WriteBlobThreshold(SSD) будут записаны в merged канал.
По умолчанию выставлены 0, что рассматривается, как фича отключена и надо работать по-старому.
Это первый шаг, далее будет добавлена логика для ZeroBlocks и Compaction.