Skip to content

Day 7 / Apr 29 (Fri)

Kafka Connect

Theory

Read the following:

Practice

Do the following:

  1. Running Kafka Connect
  2. 8.3 Connector Development Guide

Akka Streams

Theory

Read the following:

Practice

Do the following:

  1. Streams Quickstart Guide

Extra: sbt

sbt allows executing single test suite and tests (regardless of the number of tests and test suites in a project). That allows for highly-selective test execution.

sbt comes with testOnly with -t and -z options. Find out how in this PR and do the following:

  1. Execute the following test suites only from the Delta Lake project:
  2. Execute a single test from the test suites (e.g. optimize command: with database and table name)
Back to top