Skip to main content

How to debug Kylin in IDEA without Hadoop

Background

Why debug Kylin in IDEA without Hadoop

This article aims to introduce a simple and useful way to develop and debug Kylin for developers.

Deployment architecture

Following is the architecture of the current deployment.

debug_in_laptop

This guide assumes you have prepared the following things:

  • A laptop with macOS installed to do development work (Windows is not verified at the moment)
  • Kylin's source code is cloned into some directory on your laptop
For Windows Dev Machine

For Windows dev machine, setup the Kylin dev env in Windows Subsystem for Linux is the best option. Follow this guide on how to install WSL with GUI, and install both the Kylin code and your favorite IDE (but not the docker) in WSL for best performance.

Prepare IDEA and build source code

Step 1: Check Software Requirement

Please visit Software Requirement, and make sure your laptop has met the requirement.

Step 2: Build source code

  • Build backend source code before your start debugging.

    cd <path-to-kylin-source>
    mvn clean install -DskipTests
  • Build front-end source code.

    (Please use node.js v12.14.0, for how to use a specific version of node.js, please check how to switch to a specific node js )

    cd kystudio
    npm install

Step 3: Install IntelliJ IDEA and build the source

  1. Install the IDEA Community edition (the Ultimate edition is ok too).

  2. Import the source code into IDEA. Click the Open, and choose the directory of Kylin source code.

  3. Install the scala plugin and restart

  4. Configure SDK(JDK and Scala), make sure you use JDK 1.8.X and Scala 2.12.X.

  5. Reload maven projects, and the scala directory will be marked as source root(in blue color).

  6. Build the projects.(make sure you have executed mvn clean package -DskipTests, otherwise some source code is not generated by maven javacc plugin)

Step 4: Prepare IDEA configuration

  1. Download spark and create running IDEA configuration for debug purpose and initialize the frontend env.
    ./dev-support/local/local.sh init

Following is the shell output. local.sh init

Prepare the Requirements

Deploy Zookeeper(Current only need Zookeeper)

  1. Install latest docker desktop in your laptop

  2. Check available resource of your docker desktop in laptop, make sure you leave 1 CPUs and 1 GB memory at least .

Following is the setting page of Docker Desktop of MacBook.

resources

  1. Start Zookeeper service via docker compose on laptop.

    ./dev-support/local/local.sh up

local.sh up

Check status of Require services

  • Check health of Zookeeper, you can use following command to check status
./dev-support/local/local.sh ps

Following output content shows all hadoop component are in health state.

sandbox.sh ps

Debug Kylin in IDEA

Start backend in IDEA

  • Select "BootstrapServer[Local]" on top of IDEA and click Run .

click BootstrapServer[local]

  • Check if SparkUI of Sparder is started.

Spark UI

Start frontend in IDEA

  • Set up dev proxy
cd kystudio
npm run devproxy

setup front end

Validate Kylin's core functions

  • Visit Kylin WEB UI in your laptop

setup front end

  • Create a new project, load table and create model

  • Validate Cube Build and Query function

build job

query a agg index

Command manual

  1. Use ./dev-support/local/local.sh stop to stop all containers
  2. Use ./dev-support/local/local.sh start to start all containers
  3. Use ./dev-support/local/local.sh ps to check status of all containers
  4. Use ./dev-support/local/local.sh down to stop all containers and delete them