-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HDFS-17365. EC: Add extra redunency configuration in checkStreamerFailures to prevent data loss. #6517
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
HDFS-17365. EC: Add extra redunency configuration in checkStreamerFailures to prevent data loss. #6517
Changes from 7 commits
b3f63a9
a4631eb
847fed4
c36f9a1
e9c4f94
8dc7dde
4e9cd2e
0ddab9c
8a66a6e
8669c60
eb103cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3923,6 +3923,19 @@ | |
| </description> | ||
| </property> | ||
|
|
||
| <property> | ||
| <name>dfs.client.ec.write.failed.blocks.tolerated</name> | ||
| <value>2147483647</value> | ||
|
||
| <description> | ||
| Provide extra tolerated failed streamer for ec policy to prevent | ||
| the potential data loss. For example, if we use RS-6-3-1024K ec policy. | ||
| We can write successfully when there are 3 failure streamers. But if one of the six | ||
| replicas lost during reconstruction, we may lose the data forever. | ||
| It should better configured between [0, numParityBlocks], the default value is | ||
| the parity block number of the specified ec policy we are using. | ||
| </description> | ||
| </property> | ||
|
|
||
| <property> | ||
| <name>dfs.namenode.quota.init-threads</name> | ||
| <value>12</value> | ||
|
|
||
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.
Typo: ECRedunency -> ECRedundancy
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.
Fixed, thanks~