[ 
https://issues.apache.org/jira/browse/HDFS-15886?focusedWorklogId=563573&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-563573
 ]

ASF GitHub Bot logged work on HDFS-15886:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 10/Mar/21 08:55
            Start Date: 10/Mar/21 08:55
    Worklog Time Spent: 10m 
      Work Description: Neilxzn opened a new pull request #2756:
URL: https://github.com/apache/hadoop/pull/2756


   # jira
   https://issues.apache.org/jira/browse/HDFS-15886
   
   We used protected dirs to ensure that important data directories cannot be 
deleted by mistake. But protected dirs can only be configured in hdfs-site.xml.
   
   For ease of management,  we add a way to get the list of protected dirs from 
a special configuration file.
   
   How to use.
   
   1. set the config in hdfs-site.xml
   
   ```
   <property>
   <name>dfs.protected.directories.config.file.enable</name>
   <value>true</value>
   </property>
   <property>
   <name>fs.protected.directories</name>
   <value>file:///path/to/protected.dirs.config</value>
   </property>
   ```
   
   2.  add some protected dirs to the config file 
(file:///path/to/protected.dirs.config)
   
   ```
   /1
   /2/3
   ```
   
   3. done


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

            Worklog Id:     (was: 563573)
    Remaining Estimate: 0h
            Time Spent: 10m

> Add a way to get protected dirs from a special configuration file
> -----------------------------------------------------------------
>
>                 Key: HDFS-15886
>                 URL: https://issues.apache.org/jira/browse/HDFS-15886
>             Project: Hadoop HDFS
>          Issue Type: New Feature
>          Components: namenode
>    Affects Versions: 3.4.0
>            Reporter: Max  Xie
>            Assignee: Max  Xie
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> We used protected dirs to ensure that important data directories cannot be 
> deleted by mistake. But protected dirs can only be configured in 
> hdfs-site.xml.
> For ease of management,  we add a way to get the list of protected dirs from 
> a special configuration file.
> How to use.
> 1. set the config in hdfs-site.xml
> ```
> <property>
>  <name>dfs.protected.directories.config.file.enable</name>
>  <value>true</value>
>  </property>
> <property>
>  <name>fs.protected.directories</name>
>  <value>[file:///path/to/protected.dirs.config]</value>
>  </property>
> ```
> 2.  add some protected dirs to the config file 
> ([file:///path/to/protected.dirs.config])
> ```
> /1
> /2/3
> ```
> 3. done



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to