You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "Beam JIRA Bot (Jira)" <ji...@apache.org> on 2022/03/20 17:26:00 UTC

[jira] [Updated] (BEAM-10926) Specify the event time when consuming pubsub data.

     [ https://issues.apache.org/jira/browse/BEAM-10926?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Beam JIRA Bot updated BEAM-10926:
---------------------------------
    Labels: stale-P2  (was: )

> Specify the event time when consuming pubsub data.
> --------------------------------------------------
>
>                 Key: BEAM-10926
>                 URL: https://issues.apache.org/jira/browse/BEAM-10926
>             Project: Beam
>          Issue Type: Improvement
>          Components: io-java-gcp
>            Reporter: Jian Zheng
>            Priority: P2
>              Labels: stale-P2
>
> I need to specify the event time when consuming pubsub data.
> {code:java}
> PCollection<PubsubMessage> pubsubMessages = pipeline.apply("Read Pub/Sub Data",
>        PubsubIO.readMessagesWithAttributes()
>                 .withTimestampAttribute(options.getTimeAttribute())
>                 .fromSubscription(options.getInputSubscription()));
> {code}
> The only way to do this is to use the {color:#ff0000}withTimestampAttribute(){color} method.
> But if  I use a timestamp in some other format, such as a 19-bit nanosecond, or if save the event time in the payload. The method won't work !
> So I had to extend the PubsubClient class and override the PubsubClient. extractTimestamp() method.
> I'am hoping to provide a way to pass in some implementation class that would allow to parse out timestamp from the current pubsub message.
>  
> My beam version is 2.19.0.
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)