anishshri-db commented on code in PR #47508:
URL: https://github.com/apache/spark/pull/47508#discussion_r1693685002
##########
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 = "STATE_STORE_DUPLICATE_STATE_VARIABLE_DEFINED",
Review Comment:
We had some error classes for transformWithState specifically right ? could
we use that prefix here ?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]