Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make AutoRecovery enable stickyReadS as default. (#4125)
### Motivation The AutoRecovery would move the data to another alive bookie to ensure the data replicas. So it will read data from the alive bookie at the ensemble, then write the data to the new bookie. When reading data, it will choose the bookie in the ensemble randomly, so it may choose the bookie that may be already shut down, and then print many warm logs. If we make stickyReadSEnabled=true, it will read the data from the alive bookie continually, and won't print any warm log, and the stickyReadS can improve hit rate of the bookie server read cache, speed the read operation.
- Loading branch information