Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/1299#discussion_r43557662
--- Diff:
flink-java/src/main/java/org/apache/flink/api/java/ExecutionEnvironment.java ---
@@ -580,6 +580,14 @@ public CsvReader readCsvFile(String filePath) {
}
/**
+ * Creates a {@link DataSet} from {@link
org.apache.hadoop.mapred.SequenceFileInputFormat}
+ * A {@link org.apache.hadoop.mapred.JobConf} with the given inputPath
is created.
+ */
+ public <K,V> DataSource<Tuple2<K, V>> readAsSequenceFile(Class<K> key,
Class<V> value, String inputPath) throws IOException {
--- End diff --
Can we rename the method to `readSequenceFile()` to have it consistent with
the other methods (`readCsvFile`, `readHadoopFile`, ...)
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---