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

co.cask.hydrator.plugin.spark.HTTPPollerSource Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
/*
 * Copyright © 2016 Cask Data, Inc.
 *
 * Licensed 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 co.cask.hydrator.plugin.spark;

import co.cask.cdap.api.annotation.Description;
import co.cask.cdap.api.annotation.Name;
import co.cask.cdap.api.annotation.Plugin;
import co.cask.cdap.api.data.format.StructuredRecord;
import co.cask.cdap.etl.api.streaming.StreamingContext;
import co.cask.cdap.etl.api.streaming.StreamingSource;
import co.cask.hydrator.common.http.HTTPPollConfig;
import co.cask.hydrator.common.http.HTTPRequestor;
import org.apache.spark.storage.StorageLevel;
import org.apache.spark.streaming.api.java.JavaDStream;
import org.apache.spark.streaming.receiver.Receiver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.concurrent.TimeUnit;

/**
 * Polls a http endpoints and outputs a record for each url response.
 */
@Plugin(type = StreamingSource.PLUGIN_TYPE)
@Name("HTTPPoller")
@Description("Fetch data by performing an HTTP request at a regular interval.")
public class HTTPPollerSource extends StreamingSource {
  private static final Logger LOG = LoggerFactory.getLogger(HTTPPollerSource.class);
  private final HTTPPollConfig conf;

  public HTTPPollerSource(HTTPPollConfig conf) {
    this.conf = conf;
  }

  @Override
  public JavaDStream getStream(StreamingContext streamingContext) throws Exception {
    return streamingContext.getSparkStreamingContext()
      .receiverStream(new Receiver(StorageLevel.MEMORY_ONLY()) {

        @Override
        public StorageLevel storageLevel() {
          return StorageLevel.MEMORY_ONLY();
        }

        @Override
        public void onStart() {
          new Thread() {

            @Override
            public void run() {
              HTTPRequestor httpRequestor = new HTTPRequestor(conf);
              while (!isStopped()) {

                try {
                  store(httpRequestor.get());
                } catch (Exception e) {
                  LOG.error("Error getting content from {}.", conf.getUrl(), e);
                }

                try {
                  TimeUnit.SECONDS.sleep(conf.getInterval());
                } catch (InterruptedException e) {
                  throw new RuntimeException(e);
                }
              }
            }

            @Override
            public void interrupt() {
              super.interrupt();
            }
          }.start();
        }

        @Override
        public void onStop() {

        }
      });
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy