Skip to content

Latest commit

 

History

History
executable file
·
40 lines (30 loc) · 1.2 KB

File metadata and controls

executable file
·
40 lines (30 loc) · 1.2 KB

java-cli-sbt-cockroachdb-single-node-without-ssl-function

Description

Creates a small database table called dog. This table, dog, has been normalized to 3NF. Two new tables have been added, breedLookup and colorLookup. Creates a new table dog_expanded that joins dog, breedLookup and colorLookup. Added clustered indexes on dog.breedId and dog.colorId and a non-clustered index for dog_expanded.id.

Turned dog_expanded into a view with an implicit index on dog_expanded.id. Using an user defined function, create a new view breed_count.

All output normally seen in a terminal will be in log which will dump to the screen. The project may seem to hang but the logs from the container must be written to the project this can take up to 3 min.

A java sbt build, that connects to single node cockroach database without ssl.

Tech stack

  • java
  • sbt
    • postgres drivers

Docker stack

  • cockroachdb/cockroach:v19.2.2
  • hseeberger/scala-sbt:11.0.2-oraclelinux7_1.3.5_2.12.10

To run

sudo ./install.sh -u

To stop

sudo ./install.sh -d

For help

sudo ./install.sh -h

Credit

Cockroach setup