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.
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)
- Clone the repository:
git clone [email protected]:infinitelambda/kotlin-bigquery-demo.git
- Navigate to the project directory:
cd kotlin-bigquery-demo
- Compile the project to make sure all dependencies are satisfied
./gradlew clean compile
- Create a Google Cloud project and enable the BigQuery API
- Create a service account with Big Query Data Owner and Big Query Job User permissions
- Setup up authentication on you local environment
- 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.
Follow these steps to run the demo:
- Provide the required environment variables:
PROJECT_ID
- your Google Cloud project idDATASET_NAME
- your BigQuery dataset nameRESULTS_TABLE_NAME
- name of that table that stores the submitted form resultsAGG_RESULTS_VIEW_NAME
- name of the view that aggregates the form results for dashboard presentationHOST
- optional. The embedded server host. Defaults to0.0.0.0
.PORT
- optional. The embedded server port. Defaults to8080
- Run the app
- As a standalone server
./gradlew run
- As a docker container
./gradlew runDocker
- Build a docker image for distribution to a prod environment (or example Cloud Run)
./gradlew buildImage -PtargetEnv=PROD
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.
Visit this link to access the live demo. Experience real-time form submissions and instant updates on the monitoring dashboard.
This project is licensed under the GNU GPL version 3 - see the LICENSE file for details.