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

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

                Author: ASF GitHub Bot
            Created on: 31/Dec/19 09:05
            Start Date: 31/Dec/19 09:05
    Worklog Time Spent: 10m 
      Work Description: iemejia commented on pull request #10465: [BEAM-9031] 
Fixes wrong Python example in Flink runner documentation
URL: https://github.com/apache/beam/pull/10465
 
 
   
 
----------------------------------------------------------------
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:
us...@infra.apache.org


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

    Worklog Id:     (was: 364925)
    Time Spent: 20m  (was: 10m)

> Wrong Python example in Flink runner documentation
> --------------------------------------------------
>
>                 Key: BEAM-9031
>                 URL: https://issues.apache.org/jira/browse/BEAM-9031
>             Project: Beam
>          Issue Type: Bug
>          Components: website
>    Affects Versions: Not applicable
>            Reporter: Berkay Öztürk
>            Assignee: Berkay Öztürk
>            Priority: Trivial
>              Labels: documentation, easyfix, newbie
>             Fix For: Not applicable
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Python example under the [Executing a Beam pipeline on a Flink 
> Cluster|https://beam.apache.org/documentation/runners/flink/#executing-a-beam-pipeline-on-a-flink-cluster]
>  header will throw this error:
> {code}
> TypeError: Runner PipelineOptions() is not a PipelineRunner object or the 
> name of a registered runner
> {code}
> Fix:
> {code:python}
> import apache_beam as beam
> from apache_beam.options.pipeline_options import PipelineOptions
> options = PipelineOptions([
>     "--runner=FlinkRunner",
>     "--flink_version=1.8",
>     "--flink_master=localhost:8081",
>     "--environment_type=LOOPBACK"
> ])
> with beam.Pipeline(options=options) as p:
>     ...
> {code}



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

Reply via email to