Thom Rogers
Thom Rogers

Reputation: 1433

Command glossary for dataflow?

I'm experimenting with the Dataflow Python SDK and would like some sort of reference as to what the various commands do, their required args and their recommended syntax.

So after import google.cloud.dataflow as df

Where can I read up on df.Create, df.Write, df.FlatMap, df.CombinePerKey, etc. ? Has anybody put together such a reference?

Is there anyplace (link please) where all the possible Apache Beam / Dataflow commands are collected and explained?

Upvotes: 1

Views: 69

Answers (1)

danielm
danielm

Reputation: 3010

There is not yet a pydoc server running for Dataflow Python. However, you can easily run your own in order to browse: https://github.com/GoogleCloudPlatform/DataflowPythonSDK#a-quick-tour-of-the-source-code

Upvotes: 1

Related Questions