druid/distribution/docker
Chi Cao Minh 84c1c2505d
Web console basic end-to-end-test (#9595)
Load data and query (i.e., automate
https://druid.apache.org/docs/latest/tutorials/tutorial-batch.html) to
have some basic checks ensuring the web console is wired up to druid
correctly.

The new end-to-end tests (tutorial-batch.spec.ts) are added to
`web-console/e2e-tests`. Within that directory:
- `components` represent the various tabs of the web console. Currently,
  abstractions for `load data`, `ingestion`, `datasources`, and `query`
  are implemented.
- `components/load-data/data-connector` contains abstractions for the
  different data source options available to the data loader's `Connect`
  step. Currently, only the `Local file` data source connector is
  implemented.
- `components/load-data/config` contains abstractions for the different
  configuration options available for each step of the data loader flow.
  Currently, the `Configure Schema`, `Partition`, and `Publish` steps
  have initial implementation of their configuration options.
- `util` contains various helper methods for the tests and does not
  contain abstractions of the web console.

Changes to add the new tests to CI:
- `.travis.yml`: New "web console end-to-end tests" job
- `web-console/jest.*.js`: Refactor jest configurations to have
  different flavors for unit tests and for end-to-end tests. In
  particular, the latter adds a jest setup configuration to wait for the
  web console to be ready (`web-console/e2e-tests/util/setup.ts`).
- `web-console/package.json`: Refactor run scripts to add new script for
  running end-to-end tests.
- `web-console/script/druid`: Utility scripts for building, starting,
  and stopping druid.

Other changes:
- `pom.xml`: Refactor various settings disable java static checks and to
  disable java tests into two new maven profiles. Since the same
  settings are used in several places (e.g., .travis.yml, Dockerfiles,
  etc.), having them in maven profiles makes it more maintainable.
- `web-console/src/console-application.tsx`: Fix typo ("the the").
2020-04-09 12:38:09 -07:00
..
Dockerfile Web console basic end-to-end-test (#9595) 2020-04-09 12:38:09 -07:00
Dockerfile.java11 Web console basic end-to-end-test (#9595) 2020-04-09 12:38:09 -07:00
Dockerfile.mysql Update to mysql connector 5.1.48 (#9514) 2020-03-16 10:38:31 -07:00
README.md add docker tutorial, friendlier docker-compose.yml, experimental java 11 dockerfile (#9262) 2020-02-13 21:24:45 -08:00
docker-compose.yml add docker tutorial, friendlier docker-compose.yml, experimental java 11 dockerfile (#9262) 2020-02-13 21:24:45 -08:00
druid.sh Fix DRUID_CONFIG to DRUID_CONFIG_COMMON (#9193) 2020-01-27 02:52:01 -08:00
environment add docker tutorial, friendlier docker-compose.yml, experimental java 11 dockerfile (#9262) 2020-02-13 21:24:45 -08:00

README.md

Build

From the root of the repo, run docker build -t apache/druid:tag -f distribution/docker/Dockerfile .

Run

Edit environment to suite. Run docker-compose -f distribution/docker/docker-compose.yml up

Java 11 (experimental)

From the root of the repo, run docker build -t apache/druid:tag -f distribution/docker/Dockerfile.java11 . which will build Druid to run in a Java 11 environment.

MySQL Database Connector

This image contains solely the postgres metadata storage connector. If you need the mysql metadata storage connector, you can use Dockerfile.mysql to add it to the base image above.

docker build -t apache/druid:tag-mysql --build-arg DRUID_RELEASE=apache/druid:tag -f distribution/docker/Dockerfile.mysql .

where druid:tag is the version to use as the base.