anishshri-db commented on code in PR #47616: URL: https://github.com/apache/spark/pull/47616#discussion_r1704494978
########## sql/catalyst/src/main/scala/org/apache/spark/sql/errors/QueryExecutionErrors.scala: ########## @@ -2608,6 +2608,30 @@ private[sql] object QueryExecutionErrors extends QueryErrorsBase with ExecutionE cause = null) } + def invalidChangeLogReaderVersion(version: Long): Throwable = { + new SparkException( + errorClass = "CANNOT_LOAD_STATE_STORE.INVALID_CHANGE_LOG_READER_VERSION", + messageParameters = Map("version" -> version.toString), + cause = null + ) + } + + def invalidChangeLogWriterVersion(version: Long): Throwable = { + new SparkException( + errorClass = "CANNOT_LOAD_STATE_STORE.INVALID_CHANGE_LOG_WRITER_VERSION", + messageParameters = Map("version" -> version.toString), + cause = null + ) + } + + def notEnoughMemoryToLoadStore(stateStoreId: String, e: Throwable): Throwable = { + new SparkException( + errorClass = "CANNOT_LOAD_STATE_STORE.OUT_OF_MEMORY", Review Comment: Is there a way to indicate the provider too ? hdfs or rocksdb ? -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org