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.

import time

time_tuple = time.strptime('2020-03-19 20:50:00', '%Y-%m-%d %H:%M:%S')
unix_time = time.mktime(time_tuple)

To convert from a datetime.datetime to unix_time you can use convert it to a time.struct_time first with datetime.timetuple.

import time
import datetime

now = datetime.datetime.now()
time_tuple = now.timetuple()
unix_time = time.mktime(time_tuple)

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.