* "file:///some/local/file" or "hdfs://host:port/file/path").
* @return The DataStream representing the text file.
*/
public DataStreamSource<String> readTextFile(String filePath) {
checkIfFileExists(filePath);
return addSource(new FileSourceFunction(filePath), 1);
}