[ 
https://issues.apache.org/jira/browse/BEAM-9454?focusedWorklogId=404988&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-404988
 ]

ASF GitHub Bot logged work on BEAM-9454:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 17/Mar/20 21:25
            Start Date: 17/Mar/20 21:25
    Worklog Time Spent: 10m 
      Work Description: robertwb commented on pull request #11060: [BEAM-9454] 
Create Deduplication transform based on user timer/state
URL: https://github.com/apache/beam/pull/11060#discussion_r393974676
 
 

 ##########
 File path: sdks/python/apache_beam/transforms/deduplicate.py
 ##########
 @@ -0,0 +1,108 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# pytype: skip-file
+
+"""a collection of ptransforms for deduplicating elements."""
+
+from __future__ import absolute_import
+from __future__ import division
+
+from apache_beam.coders.coders import BooleanCoder
+from apache_beam.transforms import ptransform
+from apache_beam.transforms import userstate
+from apache_beam.transforms.core import DoFn
+from apache_beam.transforms.core import Map
+from apache_beam.transforms.core import ParDo
+from apache_beam.transforms.timeutil import TimeDomain
+from apache_beam.typehints import trivial_inference
+from apache_beam.utils.timestamp import Duration
+from apache_beam.utils.timestamp import Timestamp
+
+__all__ = [
+    'DeduplictaionWithinDuration',
+]
+
+
+class DeduplictaionWithinDuration(ptransform.PTransform):
+  """ A PTransform which deduplicates input records over a time domain and
+  threshold. Values in different windows will NOT be considered duplicates of
+  each other. Deduplication is best effort.
+
+  The durations specified may impose memory and/or storage requirements within
+  a runner and care might need to be used to ensure that the deduplication time
+  limit is long enough to remove duplicates but short enough to not cause
+  performance problems within a runner. Each runner may provide an optimized
+  implementation of their choice using the deduplication time domain and
+  threshold specified.
+
+  Does not preserve any order the input PCollection might have had.
+  """
+  def __init__(
+      self, time_domain=TimeDomain.REAL_TIME, duration=Duration(10 * 60)):
 
 Review comment:
   I would make duration a required parameter; I don't think there's a good 
default we can pick for all pipelines. (This also allows us to have a more 
intelligent default in the future, e.g. dynamically based on the actual 
watermark/propagation delay in the pipeline.)
   
   Also, is it not possible to have both a real and watermark delay? This API 
forces you to do one or the other. 
 
----------------------------------------------------------------
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:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 404988)
    Time Spent: 3h 10m  (was: 3h)

> Add Deduplication transform for SDF
> -----------------------------------
>
>                 Key: BEAM-9454
>                 URL: https://issues.apache.org/jira/browse/BEAM-9454
>             Project: Beam
>          Issue Type: New Feature
>          Components: sdk-java-core, sdk-py-core
>            Reporter: Boyuan Zhang
>            Priority: Major
>          Time Spent: 3h 10m
>  Remaining Estimate: 0h
>
> When SDF is used as a source-like operation, it's necessary to provide a 
> default Deduplication transform for the SDF user to deduplicate values by 
> certain unique id.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to