| Interface | Description |
|---|---|
| DatastoreWordCount.Options |
Options supported by
DatastoreWordCount. |
| WindowedWordCount.Options |
Options supported by
WindowedWordCount. |
| WordCount.WordCountOptions |
Options supported by
WordCount. |
| Class | Description |
|---|---|
| AutoComplete |
An example that computes the most popular hash tags
for every prefix, which can be used for auto-completion.
|
| AutoComplete.ComputeTopCompletions |
A PTransform that takes as input a list of tokens and returns
the most common tokens per prefix.
|
| BigQueryTornadoes |
An example that reads the public samples of weather data from BigQuery, counts the number of
tornadoes that occur in each month, and writes the results to BigQuery.
|
| DatastoreWordCount |
A WordCount example using DatastoreIO.
|
| MinimalWordCount |
An example that counts words in Shakespeare.
|
| PubsubFileInjector |
A batch Dataflow pipeline for injecting a set of GCS files into
a PubSub topic line by line.
|
| PubsubFileInjector.Bound |
A DoFn that publishes lines to Google Cloud PubSub.
|
| PubsubFileInjector.Unbound |
An incomplete
PubsubFileInjector transform with unbound output topic. |
| StreamingWordExtract |
A streaming Dataflow Example using BigQuery output.
|
| TfIdf |
An example that computes a basic TF-IDF search table for a directory or GCS prefix.
|
| TfIdf.ComputeTfIdf |
A transform containing a basic TF-IDF pipeline.
|
| TfIdf.ReadDocuments |
Reads the documents at the provided uris and returns all lines
from the documents tagged with which document they are from.
|
| TfIdf.WriteTfIdf |
A
PTransform to write, in CSV format, a mapping from term and URI
to score. |
| TopWikipediaSessions |
An example that reads Wikipedia edit data from Cloud Storage and computes the user with
the longest string of edits separated by no more than an hour within each month.
|
| TrafficMaxLaneFlow |
A Dataflow Example that runs in both batch and streaming modes with traffic sensor data.
|
| TrafficMaxLaneFlow.MaxFlow |
A custom 'combine function' used with the Combine.perKey transform.
|
| TrafficRoutes |
A Dataflow Example that runs in both batch and streaming modes with traffic sensor data.
|
| WindowedWordCount |
An example that counts words in text, and can run over either unbounded or bounded input
collections.
|
| WordCount |
An example that counts words in Shakespeare and includes Dataflow best practices.
|
| WordCount.CountWords |
A PTransform that converts a PCollection containing lines of text into a PCollection of
formatted word counts.
|
| WordCount.FormatAsTextFn |
A DoFn that converts a Word and Count into a printable string.
|
| WordCount.WordCountOptions.OutputFactory |
Returns gs://${STAGING_LOCATION}/"counts.txt" as the default destination.
|