You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2020/04/14 03:21:42 UTC

[GitHub] [beam] youngoli commented on a change in pull request #11327: [BEAM-9642] Add SDF execution units.

youngoli commented on a change in pull request #11327: [BEAM-9642] Add SDF execution units.
URL: https://github.com/apache/beam/pull/11327#discussion_r407827372
 
 

 ##########
 File path: sdks/go/pkg/beam/core/runtime/exec/pardo.go
 ##########
 @@ -120,11 +120,17 @@ func (n *ParDo) ProcessElement(ctx context.Context, elm *FullValue, values ...Re
 	if n.status != Active {
 		return errors.Errorf("invalid status for pardo %v: %v, want Active", n.UID, n.status)
 	}
+
+	return n.ProcessMainInput(&MainInput{Key: *elm, Values: values})
+}
+
+func (n *ParDo) ProcessMainInput(mainIn *MainInput) error {
 
 Review comment:
   Done.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services