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

os/bluestore: add multiple finishers to bluestore #10567

Closed
wants to merge 4 commits into from

Commits on Aug 3, 2016

  1. os/bluestore: add multiple finishers to bluestore

    - The single finisher of a bluestore can be a bottleneck when using an SSD as a backend device. If too much load is given to the single finisher, client-side IO latency increases. So we add multiple finishers to the bluestore, which shows better performance.
    - ‘bluestore_finisher_threads' option is added to be able to configure the number of finisher threads.
    
    Signed-off-by: Ilsoo Byun <ilsoo.byun@sk.com>
    IlsooByun committed Aug 3, 2016
    Configuration menu
    Copy the full SHA
    033ac73 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2016

  1. os/bluestore: change finsisher mapping scheme

    - a finisher is selected according to the shard id of a sequencer.
    - the number of finishers is decided by osd_op_num_shards.
    - 'bluestore_use_multiple_finishers' option is added to be able to configure wheather finsihers is multiple or not.
    - 'bluetore_finisher_threads' option is removed.
    
    Signed-off-by: Ilsoo Byun <ilsoo.byun@sk.com>
    IlsooByun committed Aug 12, 2016
    Configuration menu
    Copy the full SHA
    0572e1e View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2016

  1. os/bluestore: add multiple finishers to bluestore

    - The single finisher of a bluestore can be a bottleneck when using an SSD as a backend device. If too much load is given to the single finisher, client-side IO latency increases. So we add multiple finishers to the bluestore, which shows better performance.
    - 'bluestore_use_multiple_finishers' option is added to be able to configure wheather finsihers is multiple or not.
    - a finisher is selected according to the shard id of a sequencer.
    - the number of finishers is decided by osd_op_num_shards.
    
    Signed-off-by: Ilsoo Byun <ilsoo.byun@sk.com>
    IlsooByun committed Aug 15, 2016
    Configuration menu
    Copy the full SHA
    69e2a52 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0de7907 View commit details
    Browse the repository at this point in the history