Package $package

Source Code of $package.SparkKMeansApp$PointsFlow

/*
* Copyright © 2014 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 $package;

import co.cask.cdap.api.annotation.Handle;
import co.cask.cdap.api.annotation.ProcessInput;
import co.cask.cdap.api.annotation.UseDataSet;
import co.cask.cdap.api.app.AbstractApplication;
import co.cask.cdap.api.data.stream.Stream;
import co.cask.cdap.api.dataset.lib.ObjectStore;
import co.cask.cdap.api.dataset.lib.ObjectStores;
import co.cask.cdap.api.flow.Flow;
import co.cask.cdap.api.flow.FlowSpecification;
import co.cask.cdap.api.flow.flowlet.AbstractFlowlet;
import co.cask.cdap.api.flow.flowlet.StreamEvent;
import co.cask.cdap.api.procedure.AbstractProcedure;
import co.cask.cdap.api.procedure.ProcedureRequest;
import co.cask.cdap.api.procedure.ProcedureResponder;
import co.cask.cdap.api.procedure.ProcedureResponse;
import co.cask.cdap.api.spark.AbstractSpark;
import co.cask.cdap.api.spark.SparkSpecification;
import co.cask.cdap.internal.io.UnsupportedTypeException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.util.UUID;

/**
* Application that demonstrate KMeans Clustering example.
*/
public class SparkKMeansApp extends AbstractApplication {

  public static final Charset UTF8 = Charset.forName("UTF-8");

  @Override
  public void configure() {
    setName("SparkKMeans");
    setDescription("Spark KMeans app");
    addStream(new Stream("pointsStream"));
    addFlow(new PointsFlow());
    addSpark(new SparkKMeansSpecification());
    addProcedure(new CentersProcedure());

    try {
      ObjectStores.createObjectStore(getConfigurer(), "points", String.class);
      ObjectStores.createObjectStore(getConfigurer(), "centers", String.class);
    } catch (UnsupportedTypeException e) {
      // This exception is thrown by ObjectStore if its parameter type cannot be
      // (de)serialized (for example, if it is an interface and not a class, then there is
      // no auto-magic way deserialize an object.) In this case that will not happen
      // because String is an actual class.
      throw new RuntimeException(e);
    }
  }

  /**
   * A Spark Program that uses KMeans algorithm.
   */
  public static class SparkKMeansSpecification extends AbstractSpark {
    @Override
    public SparkSpecification configure() {
      return SparkSpecification.Builder.with()
        .setName("SparkKMeansProgram")
        .setDescription("Spark KMeans Program")
        .setMainClassName(SparkKMeansProgram.class.getName())
        .build();
    }
  }

  /**
   * This Flowlet reads events from a Stream and saves them to a datastore.
   */
  public static class PointsReader extends AbstractFlowlet {

    private static final Logger LOG = LoggerFactory.getLogger(PointsReader.class);

    @UseDataSet("points")
    private ObjectStore<String> pointsStore;

    @ProcessInput
    public void process(StreamEvent event) {
      String body = new String(event.getBody().array());
      LOG.trace("Points info: {}", body);
      pointsStore.write(getIdAsByte(UUID.randomUUID()), body);
    }

    private static byte[] getIdAsByte(UUID uuid) {
      ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
      bb.putLong(uuid.getMostSignificantBits());
      bb.putLong(uuid.getLeastSignificantBits());
      return bb.array();
    }
  }

  /**
   * This is a simple Flow that consumes points from a Stream and stores them in a dataset.
   */
  public static class PointsFlow implements Flow {

    @Override
    public FlowSpecification configure() {
      return FlowSpecification.Builder.with()
        .setName("PointsFlow")
        .setDescription("Reads points information and stores in dataset")
        .withFlowlets()
        .add("reader", new PointsReader())
        .connect()
        .fromStream("pointsStream").to("reader")
        .build();
    }
  }

  /**
   * Procedure that returns calculated center based on index parameter.
   */
  public static class CentersProcedure extends AbstractProcedure {

    private static final Logger LOG = LoggerFactory.getLogger(CentersProcedure.class);

    // Annotation indicates that centers dataset is used in the procedure.
    @UseDataSet("centers")
    private ObjectStore<String> centers;

    @Handle("centers")
    public void getCenters(ProcedureRequest request, ProcedureResponder responder)
      throws IOException, InterruptedException {
      String index = request.getArgument("index");
      if (index == null) {
        responder.error(ProcedureResponse.Code.CLIENT_ERROR, "Index must be given as argument");
        return;
      }
      LOG.debug("get center for index {}", index);
      // Send response with JSON format.
      responder.sendJson(centers.read(index.getBytes()));
    }
  }
}
TOP

Related Classes of $package.SparkKMeansApp$PointsFlow

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.