goiri commented on a change in pull request #1253: HDFS-8631. WebHDFS : Support 
setQuota
URL: https://github.com/apache/hadoop/pull/1253#discussion_r312592614
 
 

 ##########
 File path: 
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileSystem.java
 ##########
 @@ -1788,6 +1788,34 @@ public QuotaUsage getQuotaUsage(Path f) throws 
IOException {
     return getContentSummary(f);
   }
 
+  /**
+   * Set quota for the given {@link Path}.
+   *
+   * @param src the target path to set quota for
+   * @param namespaceQuota the namespace quota (i.e., # of files/directories) 
to set
+   * @param storagespaceQuota the storage space quota to set
+   * @throws IOException IO failure
+   */
+  public void setQuota(Path src, final long namespaceQuota,
+      final long storagespaceQuota) throws IOException {
+    throw new UnsupportedOperationException(getClass().getCanonicalName() +
 
 Review comment:
   Let's do just the new two functions in this JIRA so we introduce the 
function.
   Afterwards we can do a separate JIRA to replace all.
   To get the method, one could do 
Thread.currentThread().getStackTrace()[index].getMethodName().
   The index sometimes is tricky, but doable.
   

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to