aljoscha closed pull request #7350: [FLINK-11189] Deprecated documentation for
readSequenceFile function
URL: https://github.com/apache/flink/pull/7350
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/docs/dev/batch/index.md b/docs/dev/batch/index.md
index 0a498dfe2a1..521f4624b1a 100644
--- a/docs/dev/batch/index.md
+++ b/docs/dev/batch/index.md
@@ -826,9 +826,6 @@ File-based:
- `readFileOfPrimitives(path, delimiter, Class)` / `PrimitiveInputFormat` -
Parses files of new-line (or another char sequence)
delimited primitive data types such as `String` or `Integer` using the
given delimiter.
-- `readSequenceFile(Key, Value, path)` / `SequenceFileInputFormat` - Creates a
JobConf and reads file from the specified path with
- type SequenceFileInputFormat, Key class and Value class and returns them as
Tuple2<Key, Value>.
-
Collection-based:
@@ -879,7 +876,7 @@ DataSet<Person>> csvInput =
env.readCsvFile("hdfs:///the/CSV/file")
// read a file from the specified path of type SequenceFileInputFormat
DataSet<Tuple2<IntWritable, Text>> tuples =
- env.readSequenceFile(IntWritable.class, Text.class,
"hdfs://nnHost:nnPort/path/to/file");
+ env.createInput(HadoopInputs.readSequenceFile(IntWritable.class, Text.class,
"hdfs://nnHost:nnPort/path/to/file"));
// creates a set from some given elements
DataSet<String> value = env.fromElements("Foo", "bar", "foobar", "fubar");
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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