You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2019/11/19 09:15:15 UTC

[GitHub] [incubator-druid] clintropolis commented on a change in pull request #8903: S3 input source

clintropolis commented on a change in pull request #8903: S3 input source
URL: https://github.com/apache/incubator-druid/pull/8903#discussion_r347806173
 
 

 ##########
 File path: core/src/main/java/org/apache/druid/data/input/AbstractInputSource.java
 ##########
 @@ -53,12 +54,13 @@ protected InputSourceReader formattableReader(
       InputRowSchema inputRowSchema,
       InputFormat inputFormat,
       @Nullable File temporaryDirectory
-  )
+  ) throws IOException
   {
     throw new UnsupportedOperationException("Implement this method properly if needsFormat() = true");
   }
 
   protected InputSourceReader fixedFormatReader(InputRowSchema inputRowSchema, @Nullable File temporaryDirectory)
+      throws IOException
 
 Review comment:
   Ah yeah, nothing implements this method yet, I was preemptively adding it because `InputSource.createSplits` is allows to throw an `IOException` and readers will most likely be calling this method. I can remove for now, though I suspect it will likely need to be added back later.

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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org