clintropolis commented on a change in pull request #9523: Ability to Delete 
task logs and segments from Azure Storage
URL: https://github.com/apache/druid/pull/9523#discussion_r394182304
 
 

 ##########
 File path: 
extensions-core/azure-extensions/src/main/java/org/apache/druid/storage/azure/AzureDataSegmentKiller.java
 ##########
 @@ -72,9 +86,26 @@ public void kill(DataSegment segment) throws 
SegmentLoadingException
   }
 
   @Override
-  public void killAll()
+  public void killAll() throws IOException
   {
-    throw new UnsupportedOperationException("not implemented");
+    log.info("Deleting all segment files from Azure storage location [bucket: 
'%s' prefix: '%s']",
+             segmentConfig.getContainer(), segmentConfig.getPrefix()
+    );
 
 Review comment:
   nit: formatting
   
   ```suggestion
       log.info(
           "Deleting all segment files from Azure storage location [bucket: 
'%s' prefix: '%s']",
           segmentConfig.getContainer(),
           segmentConfig.getPrefix()
       );
   ```

----------------------------------------------------------------
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]


With regards,
Apache Git Services

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

Reply via email to