dongjoon-hyun commented on pull request #29078: URL: https://github.com/apache/spark/pull/29078#issuecomment-657736058
@srowen . Interestingly, the root cause of the failure is the following inside `ContinuousMemoryStream`. Can we revert it and use a different approach? ```scala - private val recordEndpoint = new ContinuousRecordEndpoint(records, this) + private val recordEndpoint = new ContinuousRecordEndpoint(records.map(_.toSeq), this) ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
