This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 814cf43140f Call out enrichment in side input patterns (#31578)
814cf43140f is described below

commit 814cf43140fd31139de7faf1a3f00694df53cb18
Author: Danny McCormick <dannymccorm...@google.com>
AuthorDate: Thu Jun 13 15:30:34 2024 +0200

    Call out enrichment in side input patterns (#31578)
---
 website/www/site/content/en/documentation/patterns/side-inputs.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/website/www/site/content/en/documentation/patterns/side-inputs.md 
b/website/www/site/content/en/documentation/patterns/side-inputs.md
index 814a735bf72..136eeef29ad 100644
--- a/website/www/site/content/en/documentation/patterns/side-inputs.md
+++ b/website/www/site/content/en/documentation/patterns/side-inputs.md
@@ -19,6 +19,8 @@ limitations under the License.
 
 The samples on this page show you common Beam side input patterns. A side 
input is an additional input that your `DoFn` can access each time it processes 
an element in the input `PCollection`. For more information, see the 
[programming guide section on side 
inputs](/documentation/programming-guide/#side-inputs).
 
+If you are trying to enrich your data by doing a key-value lookup to a remote 
service, you may first want to consider the [Enrichment 
transform](https://beam.apache.org/documentation/transforms/python/elementwise/enrichment/)
 which can abstract away some of the details of side inputs and provide 
additional benefits like client-side throttling.
+
 {{< language-switcher java py >}}
 
 ## Slowly updating global window side inputs

Reply via email to