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