Package org.apache.flink.streaming.connectors.flume

Source Code of org.apache.flink.streaming.connectors.flume.FlumeTopology$MyFlumeSource

/*
* 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.flink.streaming.connectors.flume;

import org.apache.commons.lang.SerializationUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.flink.streaming.api.datastream.DataStream;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import org.apache.flink.streaming.api.function.sink.SinkFunction;

public class FlumeTopology {
  private static final Logger LOG = LoggerFactory.getLogger(FlumeTopology.class);

  public static class MyFlumeSink extends FlumeSink<String> {
    private static final long serialVersionUID = 1L;

    public MyFlumeSink(String host, int port) {
      super(host, port);
    }

    @Override
    public byte[] serialize(String tuple) {
      if (tuple.equals("q")) {
        try {
          sendAndClose();
        } catch (Exception e) {
          throw new RuntimeException("Error while closing Flume connection with " + port
              + " at " + host, e);
        }
      }
      return SerializationUtils.serialize(tuple);
    }

  }

  public static final class MyFlumePrintSink implements SinkFunction<String> {
    private static final long serialVersionUID = 1L;

    @Override
    public void invoke(String value) {
      if (LOG.isInfoEnabled()) {
        LOG.info("String: <{}> arrived from Flume", value);
      }
    }

  }

  public static class MyFlumeSource extends FlumeSource<String> {
    private static final long serialVersionUID = 1L;

    MyFlumeSource(String host, int port) {
      super(host, port);
    }

    @Override
    public String deserialize(byte[] msg) {
      String s = (String) SerializationUtils.deserialize(msg);
      if (s.equals("q")) {
        closeWithoutSend();
      }
      return s;
    }

  }

  public static void main(String[] args) throws Exception {

    StreamExecutionEnvironment env = StreamExecutionEnvironment.createLocalEnvironment(1);

    @SuppressWarnings("unused")
    DataStream<String> dataStream1 = env.addSource(new MyFlumeSource("localhost", 41414))
        .addSink(new MyFlumePrintSink());

    @SuppressWarnings("unused")
    DataStream<String> dataStream2 = env.fromElements("one", "two", "three", "four", "five",
        "q").addSink(new MyFlumeSink("localhost", 42424));

    env.execute();
  }
}
TOP

Related Classes of org.apache.flink.streaming.connectors.flume.FlumeTopology$MyFlumeSource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.