All Projects → snowplow-incubator → icebucket

snowplow-incubator / icebucket

Licence: Apache-2.0 license
UNRELEASED. An opinionated framework for analytics-on-write on event streams using key-value storage

Programming Languages

scala
5932 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects
python
139335 projects - #7 most used programming language
CSS
56736 projects

Ice Bucket

UNRELEASED. An opinionated framework for analytics-on-write on event streams using key-value storage

Introduction

This is an example [Spray] REST API application with an Angular JS front end. The REST API accepts a DRUID request and returns a DRUID response for events that were processed from our [Kinesis] aws-kinesis stream of events ([introductory blog post] blog-post). When you make a DRUID request to the REST API it retrieves the previous counted minute aggregates from [DynamoDB] aws-dynamodb.

This was built by the Data Science team at [Snowplow Analytics] snowplow, who use AWS DynamoDB and Scala Spray in their projects.

Running this requires an Amazon AWS account, and will incur charges.

See also: Spark Streaming Example Project | [Spark Example Project] spark-example-project

Developer Quickstart

1. Setting up AWS

First we need to configure a default AWS profile:

$ aws configure
AWS Access Key ID [None]: ...
AWS Secret Access Key [None]: ...
Default region name [None]: us-east-1
Default output format [None]: json

2.

Start the application with sbt run.

Navigate to the home page http://localhost:8080/index.html to see the Angular app

Or do a GET request to http://localhost:8080/api/events to hit the REST endpoint directly

Front End Development

The \dist directory has been included in the project and is already built including minification. Running the server will serve the app from here so that it runs out of the box. Any changes you make in here will get clobbered next time you build the front end with grunt. Normally this folder is not included in source control.

For front end development make your changes to the \app folder and follow the steps below:

Front End Setup

Front end requires Bower, which requires npm

Install NPM:

But this is an scala app and I already have SBT!! For the front end dependency management you will need npm.

Options

Install bower

Bower is a front end dependency manager npm install -g bower (Linux users might have to run with sudo)

Download all the front end dependencies with bower install

They will be in your app\bower_components directory as instructed by .bowerrc

Install Grunt CLI

Grunt is a front end task runner npm install -g grunt-cli

Wire up the dependencies with grunt bowerInstall

This modifies app\index.html to include your dependencies

Change where static content is served from

Lastly in /src/main/scala/com/example/actors/routes/ApiRouterActor.scala change where static content is served from:

	getFromResourceDirectory("dist")

	//becomes

	getFromResourceDirectory("app")

Copyright and license

Ice Bucket Project is copyright 2015 Snowplow Analytics Ltd.

Licensed under the [Apache License, Version 2.0] license (the "License"); you may not use this software except in compliance with the License.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].