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 2020/11/20 17:12:02 UTC

[jira] [Commented] (BEAM-10936) PubsubIO can't provide PubsubClientFactory

    [ https://issues.apache.org/jira/browse/BEAM-10936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17236297#comment-17236297 ] 

Beam JIRA Bot commented on BEAM-10936:
--------------------------------------

This issue is P2 but has been unassigned without any comment for 60 days so it has been labeled "stale-P2". If this issue is still affecting you, we care! Please comment and remove the label. Otherwise, in 14 days the issue will be moved to P3.

Please see https://beam.apache.org/contribute/jira-priorities/ for a detailed explanation of what these priorities mean.


> PubsubIO can't provide PubsubClientFactory  
> --------------------------------------------
>
>                 Key: BEAM-10936
>                 URL: https://issues.apache.org/jira/browse/BEAM-10936
>             Project: Beam
>          Issue Type: Bug
>          Components: io-java-gcp
>    Affects Versions: 2.19.0, 2.20.0, 2.21.0, 2.22.0, 2.23.0
>         Environment: Dataflow
>            Reporter: Jian Zheng
>            Priority: P2
>              Labels: stale-P2
>
> PubsubIO provides a method to pass the PubsubClientFactory.
> {code:java}
> /**
>  * The default client to write to Pub/Sub is the {@link PubsubJsonClient}, created by the {@link
>  * PubsubJsonClient.PubsubJsonClientFactory}. This function allows to change the Pub/Sub client
>  * by providing another {@link PubsubClient.PubsubClientFactory} like the {@link
>  * PubsubGrpcClientFactory}.
>  */
> public Read<T> withClientFactory(PubsubClient.PubsubClientFactory factory) {
>   return toBuilder().setPubsubClientFactory(factory).build();
> }
> {code}
> The comment here explains that can pass a PubsubClient.
> However, the IncomingMessage used in the {color:#ff0000}pull(){color} method of PubsubClient's abstract method is actually an abstract internal class, in other words, the abstract class PubsubClient can't be extended in external of the {color:#ff0000}org.apache.beam.sdk.io.gcp.pubsub{color} package.
> To overcome the above problem, I created the org.apache.beam.sdk.io.gcp.pubsub directory to extend PubsubClient and passes it to the {color:#ff0000}PubsubIO.withClientFactory{color} method.
> This seems to run locally without any problems, but when I submit my job to Dataflow, the withClientFactory method is useless and be replaced with the default PubsubJsonClientFactory.



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