anishshri-db commented on code in PR #47508: URL: https://github.com/apache/spark/pull/47508#discussion_r1694462013
########## sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/state/StateStoreErrors.scala: ########## @@ -173,8 +173,51 @@ object StateStoreErrors { StateStoreProviderDoesNotSupportFineGrainedReplay = { new StateStoreProviderDoesNotSupportFineGrainedReplay(inputClass) } + + + def invalidConfigChangedAfterRestart(configName: String, oldConfig: String, newConfig: String): + StateStoreInvalidConfigAfterRestart = { + new StateStoreInvalidConfigAfterRestart(configName, oldConfig, newConfig) + } + + def duplicateStateVariableDefined(stateName: String): + StateStoreDuplicateStateVariableDefined = { + new StateStoreDuplicateStateVariableDefined(stateName) + } + + def invalidVariableTypeChange(stateName: String, oldType: String, newType: String): + StateStoreInvalidVariableTypeChange = { + new StateStoreInvalidVariableTypeChange(stateName, oldType, newType) + } } +class StateStoreDuplicateStateVariableDefined(stateName: String) + extends SparkRuntimeException( + errorClass = "STATEFUL_PROCESSOR_DUPLICATE_STATE_VARIABLE_DEFINED", + messageParameters = Map( + "stateName" -> stateName + ) + ) + +class StateStoreInvalidConfigAfterRestart(configName: String, oldConfig: String, newConfig: String) + extends SparkUnsupportedOperationException( + errorClass = "STATE_STORE_INVALID_CONFIG_AFTER_RESTART", + messageParameters = Map( + "configName" -> configName, + "oldConfig" -> oldConfig, + "newConfig" -> newConfig + ) + ) + +class StateStoreInvalidVariableTypeChange(stateName: String, oldType: String, newType: String) + extends SparkUnsupportedOperationException( + errorClass = "STATE_STORE_INVALID_VARIABLE_TYPE_CHANGE", + messageParameters = Map( + "stateName" -> stateName, + "oldType" -> oldType, + "newType" -> newType + ) + ) class StateStoreMultipleColumnFamiliesNotSupportedException(stateStoreProvider: String) Review Comment: nit: can we add a newline ? -- 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