anishshri-db commented on code in PR #47528: URL: https://github.com/apache/spark/pull/47528#discussion_r1704546506
########## sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/TransformWithStateExec.scala: ########## @@ -439,8 +447,9 @@ case class TransformWithStateExec( new Path(getStateInfo.checkpointLocation, s"${getStateInfo.operatorId.toString}") - val storeNamePath = new Path(stateCheckpointPath, storeName) - new Path(new Path(storeNamePath, "_metadata"), "schema") + val stateSchemaPath = new Path(stateCheckpointPath, "_stateSchema") Review Comment: Yes correct - newer operators would follow a new structure where: - within the operatorId dir, there are 2 subdirs: - for the operator metadata, we have the `_metadata` dir - for the state schema, we have the `_stateSchema` dir -- 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