WithTimestamps
Assigns timestamps to all the elements of a collection.
Examples
In the following examples, we create a pipeline with a PCollection
and attach a timestamp value to each of its elements.
When windowing and late data play an important role in streaming pipelines, timestamps are especially useful.
Example 1: Timestamp by event time
The elements themselves often already contain a timestamp field.
beam.window.TimestampedValue
takes a value and a
Unix timestamp
in the form of seconds.
To convert from a
time.struct_time
to unix_time
you can use
time.mktime
.
For more information on time formatting options, see
time.strftime
.
To convert from a
datetime.datetime
to unix_time
you can use convert it to a time.struct_time
first with
datetime.timetuple
.
Example 2: Timestamp by logical clock
If each element has a chronological number, these numbers can be used as a logical clock. These numbers have to be converted to a “seconds” equivalent, which can be especially important depending on your windowing and late data rules.
Example 3: Timestamp by processing time
If the elements do not have any time data available, you can also use the current processing time for each element. Note that this grabs the local time of the worker that is processing each element. Workers might have time deltas, so using this method is not a reliable way to do precise ordering.
By using processing time, there is no way of knowing if data is arriving late because the timestamp is attached when the element enters into the pipeline.
Related transforms
- Reify converts between explicit and implicit forms of Beam values.
Last updated on 2024/11/08
Have you found everything you were looking for?
Was it all useful and clear? Is there anything that you would like to change? Let us know!