jingz-db commented on code in PR #49560: URL: https://github.com/apache/spark/pull/49560#discussion_r1970398760
########## sql/connect/common/src/main/protobuf/spark/connect/relations.proto: ########## @@ -1031,6 +1031,26 @@ message GroupMap { // (Optional) The schema for the grouped state. optional DataType state_schema = 10; + + // Below fields are used by TransformWithState and TransformWithStateInPandas + // (Optional) TransformWithState related parameters. + optional TransformWithStateInfo transform_with_state_info = 11; +} + +// Additional input parameters used for TransformWithState operator. +message TransformWithStateInfo { Review Comment: Thanks for the discussion above! Maintaining two code paths seems too expensive so we should probably keep the way it is for FMGWS and have a separate schema for TWS. This way if we want to add a new operator in the schema, then it can follow what Haiyang suggested above easily by making an additive change. ########## sql/connect/common/src/main/protobuf/spark/connect/relations.proto: ########## @@ -1031,6 +1031,26 @@ message GroupMap { // (Optional) The schema for the grouped state. optional DataType state_schema = 10; + + // Below fields are used by TransformWithState and TransformWithStateInPandas + // (Optional) TransformWithState related parameters. + optional TransformWithStateInfo transform_with_state_info = 11; +} + +// Additional input parameters used for TransformWithState operator. +message TransformWithStateInfo { Review Comment: Thanks for the discussion above! Maintaining two code paths seems too expensive so we should probably keep the way it is for FMGWS and have a separate schema for TWS. This way if we want to add a new operator in the future, then it can follow what Haiyang suggested above easily by making an additive change. -- 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