All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.beam.examples.twitterstreamgenerator.TwitterIO Maven / Gradle / Ivy

Go to download

Apache Beam SDK provides a simple, Java-based interface for processing virtually any size data. This artifact includes all Apache Beam Java SDK examples.

There is a newer version: 2.60.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.beam.examples.twitterstreamgenerator;

import java.util.ArrayList;
import java.util.List;
import org.apache.beam.sdk.transforms.Create;
import org.apache.beam.sdk.transforms.PTransform;
import org.apache.beam.sdk.transforms.ParDo;
import org.apache.beam.sdk.values.PBegin;
import org.apache.beam.sdk.values.PCollection;

/**
 * An unbounded source for twitter
 * stream. PTransforms for streaming live tweets from twitter. Reading from Twitter is supported by
 * read()
 *
 * 

Standard Twitter API can be read using a list of Twitter Config * readStandardStream(List) * *

It allow multiple Twitter configurations to demonstrate how multiple twitter streams can be * combined in a single pipeline. * *

{@code
 * PCollection weatherData = pipeline.apply(
 *      TwitterIO.readStandardStream(
 *          Arrays.asList(
 *                  new TwitterConfig.Builder()
 *                      .setKey("")
 *                      .setSecret("")
 *                      .setToken("")
 *                      .setTokenSecret("")
 *                      .setFilters(Arrays.asList("", ""))
 *                      .setLanguage("en")
 *                      .setTweetsCount(10L)
 *                      .setMinutesToRun(1)
 *                      .build())));
 * }
*/ public class TwitterIO { /** * Initializes the stream by converting input to a Twitter connection configuration. * * @param twitterConfigs list of twitter config * @return PTransform of statuses */ public static PTransform> readStandardStream( List twitterConfigs) { return new TwitterIO.Read.Builder().setTwitterConfig(twitterConfigs).build(); } /** A {@link PTransform} to read from Twitter stream. usage and configuration. */ private static class Read extends PTransform> { private final List twitterConfigs; private Read(Builder builder) { this.twitterConfigs = builder.twitterConfigs; } @Override public PCollection expand(PBegin input) throws IllegalArgumentException { return input.apply(Create.of(this.twitterConfigs)).apply(ParDo.of(new ReadFromTwitterDoFn())); } private static class Builder { List twitterConfigs = new ArrayList<>(); TwitterIO.Read.Builder setTwitterConfig(final List twitterConfigs) { this.twitterConfigs = twitterConfigs; return this; } TwitterIO.Read build() { return new TwitterIO.Read(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy