Skip to content

infinitelambda/kotlin-bigquery-demo

Repository files navigation

Real-time Data Analytics with Kotlin and BigQuery

Overview

This repository contains a demo application showcasing real-time data analytics with Kotlin and BigQuery. The demo includes a form where users can submit their favorite food, express their interest in Kotlin, and provide comments on the talk. The submitted data is processed in real-time, and the results are displayed on a live monitoring dashboard.

Table of contents

Prerequisites

Ensure that the following prerequisites are installed before running the demo:

  • git
  • Java 1.8 and above
  • Docker (if you want to run the app as a container)

Setup

  1. Clone the repository:
git clone [email protected]:infinitelambda/kotlin-bigquery-demo.git
  1. Navigate to the project directory:
cd kotlin-bigquery-demo
  1. Compile the project to make sure all dependencies are satisfied
./gradlew clean compile
  1. Create a Google Cloud project and enable the BigQuery API
  2. Create a service account with Big Query Data Owner and Big Query Job User permissions
  3. Setup up authentication on you local environment
  4. Create a BigQuery dataset with a table to store the results and a view to aggregate them for the dashboard. Example script can be found here.

Usage

Follow these steps to run the demo:

  1. Provide the required environment variables:
    • PROJECT_ID - your Google Cloud project id
    • DATASET_NAME - your BigQuery dataset name
    • RESULTS_TABLE_NAME - name of that table that stores the submitted form results
    • AGG_RESULTS_VIEW_NAME - name of the view that aggregates the form results for dashboard presentation
    • HOST - optional. The embedded server host. Defaults to 0.0.0.0.
    • PORT - optional. The embedded server port. Defaults to 8080
  2. Run the app
    • As a standalone server
    ./gradlew run
    • As a docker container
    ./gradlew runDocker
  3. Build a docker image for distribution to a prod environment (or example Cloud Run)
./gradlew buildImage  -PtargetEnv=PROD

Technologies Used

The demo application leverages the following technologies:

  • Kotlin: Robust, concise and expressive. Used to build the backend and frontend of the app. It has 100% interoperability with existing Java libraries so integration with Google Cloud technologies is easy and fast.
  • BigQuery: Fast and performant for big data sets. Supports streaming data inserts. Build in advanced functionalities like ML model traning and execution.

Live Demo

Visit this link to access the live demo. Experience real-time form submissions and instant updates on the monitoring dashboard.

License

This project is licensed under the GNU GPL version 3 - see the LICENSE file for details.

About

Real-time data analytics using Kotlin and BigQuery

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published