anishshri-db commented on code in PR #47445: URL: https://github.com/apache/spark/pull/47445#discussion_r1687287534
########## sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/IncrementalExecution.scala: ########## @@ -208,13 +208,24 @@ class IncrementalExecution( } val schemaValidationResult = statefulOp. validateAndMaybeEvolveStateSchema(hadoopConf, currentBatchId, stateSchemaVersion) + val stateSchemaPaths = schemaValidationResult.map(_.schemaPath) // write out the state schema paths to the metadata file statefulOp match { - case stateStoreWriter: StateStoreWriter => - val metadata = stateStoreWriter.operatorStateMetadata() - // TODO: [SPARK-48849] Populate metadata with stateSchemaPaths if metadata version is v2 - val metadataWriter = new OperatorStateMetadataWriter(new Path( - checkpointLocation, stateStoreWriter.getStateInfo.operatorId.toString), hadoopConf) + case ssw: StateStoreWriter => + val metadata = ssw.operatorStateMetadata(stateSchemaPaths) + val metadataWriter = ssw.operatorStateMetadataVersion match { + case 1 => + new OperatorStateMetadataV1Writer(new Path( Review Comment: Maybe rephrase as ``` new OperatorStateMetadataWriter(checkpointLoc, opId, hadoopConf, operatorMetadataVersion, Some(currentBatchId)) ``` -- 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