Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/4927#discussion_r25939663
--- Diff:
core/src/main/scala/org/apache/spark/scheduler/ReplayListenerBus.scala ---
@@ -40,15 +41,31 @@ private[spark] class ReplayListenerBus extends
SparkListenerBus with Logging {
*
* @param logData Stream containing event log data.
* @param sourceName Filename (or other source identifier) from whence
@logData is being read
+ * @param sourceTruncated Indicate whether log file might be truncated
(some abnormal situation
+ * encountered, log file not finish writing) or not
*/
- def replay(logData: InputStream, sourceName: String): Unit = {
+ def replay(
+ logData: InputStream,
+ sourceName: String,
+ sourceTruncated: Boolean = false): Unit = {
--- End diff --
Nit: let's call this `maybeTruncated`? it's not certain that the file is
truncated.
---
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.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]