@@ -476,43 +476,14 @@ final class DataStreamReader private[sql](sparkSession: SparkSession) extends Lo
476476 /**
477477 * Loads a Parquet file stream, returning the result as a `DataFrame`.
478478 *
479- * You can set the following Parquet-specific option(s) for reading Parquet files:
480- * <ul>
481- * <li>`maxFilesPerTrigger` (default: no max limit): sets the maximum number of new files to be
482- * considered in every trigger.</li>
483- * <li>`mergeSchema` (default is the value specified in `spark.sql.parquet.mergeSchema`): sets
484- * whether we should merge schemas collected from all
485- * Parquet part-files. This will override
486- * `spark.sql.parquet.mergeSchema`.</li>
487- * <li>`pathGlobFilter`: an optional glob pattern to only include files with paths matching
488- * the pattern. The syntax follows <code>org.apache.hadoop.fs.GlobFilter</code>.
489- * It does not change the behavior of partition discovery.</li>
490- * <li>`recursiveFileLookup`: recursively scan a directory for files. Using this option
491- * disables partition discovery</li>
492- * <li>`datetimeRebaseMode` (default is the value specified in the SQL config
493- * `spark.sql.parquet.datetimeRebaseModeInRead`): the rebasing mode for the values
494- * of the `DATE`, `TIMESTAMP_MICROS`, `TIMESTAMP_MILLIS` logical types from the Julian to
495- * Proleptic Gregorian calendar:
496- * <ul>
497- * <li>`EXCEPTION` : Spark fails in reads of ancient dates/timestamps that are ambiguous
498- * between the two calendars</li>
499- * <li>`CORRECTED` : loading of dates/timestamps without rebasing</li>
500- * <li>`LEGACY` : perform rebasing of ancient dates/timestamps from the Julian to Proleptic
501- * Gregorian calendar</li>
502- * </ul>
503- * </li>
504- * <li>`int96RebaseMode` (default is the value specified in the SQL config
505- * `spark.sql.parquet.int96RebaseModeInRead`): the rebasing mode for `INT96` timestamps
506- * from the Julian to Proleptic Gregorian calendar:
507- * <ul>
508- * <li>`EXCEPTION` : Spark fails in reads of ancient `INT96` timestamps that are ambiguous
509- * between the two calendars</li>
510- * <li>`CORRECTED` : loading of timestamps without rebasing</li>
511- * <li>`LEGACY` : perform rebasing of ancient `INT96` timestamps from the Julian to Proleptic
512- * Gregorian calendar</li>
513- * </ul>
514- * </li>
515- * </ul>
479+ * Parquet-specific option(s) for reading Parquet file stream can be found in
480+ * <a href=
481+ * "https://spark.apache.org/docs/latest/sql-data-sources-parquet.html#data-source-option">
482+ * Data Source Option</a>
483+ * and
484+ * <a href=
485+ * "https://spark.apache.org/docs/latest/sql-data-sources-generic-options.html">
486+ * Generic Files Source Options</a> in the version you use.
516487 *
517488 * @since 2.0.0
518489 */
0 commit comments