Eco Schema Catalog is a set of services, components, and utilities aimed at providing additional features on top of the Schema Registry.
With Eco Schema Catalog you can use:
- Web UI to search, view, evolve, and configure schemas.
- Various services to work with schemas.
- Utilities, helpers, and other classes that extend and augment the Schema Registry library.
The currently supported version of Confluent is 7.0.8 Despite that, all tests are run against Confluent 7.4.0, but Confluent libraries are of version 7.0.8, so bear it in mind.
The repository contains the following packages:
- rest - RESTful interface (backend)
- ui - web UI (frontend)
- commons - common models, utilities, extensions, etc
- store - service to access data in the Schema Registry store, manage metadata, etc
- fts - service that enables Full-Text Search (FTS) capabilities against the store
- client - REST client
To build artifacts, run the following command sequence:
git clone [email protected]:epam/eco-schema-catalog.git
cd eco-schema-catalog
mvn clean package
To skip tests, JavaDocs, and static code analysis, run:
mvn clean package -PpackageOnly
The prerequisites for the quick start include:
The infrastructure example could be found in docker-compose.yml, which also could be used for launching Manual integration tests.
The installation consists of two services:
- Schema Catalog REST
- Schema Catalog UI
Note: Specify suitable values for SCHEMA_REGISTRY_URL
and KAFKA_SERVERS_URL
.
For Linux, run the following command sequence:
git clone [email protected]:epam/eco-schema-catalog.git
cd eco-schema-catalog
export SCHEMA_REGISTRY_URL="http://schema-registry:8081"
export KAFKA_SERVERS_URL="kafka:9092"
docker-compose -f docker/docker-compose.yaml up
For Windows (Powershell), run the following command sequence:
git clone [email protected]:epam/eco-schema-catalog.git
cd eco-schema-catalog
$env:SCHEMA_REGISTRY_URL="http://schema-registry:8081"
$env:KAFKA_SERVERS_URL="kafka:9092"
docker-compose -f docker/docker-compose.yaml up
To open Schema Catalog web interface, go to http://localhost:8282
To stop all services, run:
docker-compose -f docker/docker-compose.yaml down
The installation consists of:
- Zookeeper
- Kafka
- Schema Registry
- Schema Catalog REST
- Schema Catalog UI
- Elasticsearch
Run the following command sequence:
git clone [email protected]:epam/eco-schema-catalog.git
cd eco-schema-catalog
docker-compose -f docker/docker-compose-all.yaml up
To open Schema Catalog web interface, go to http://localhost:8282
To stop all services, run:
docker-compose -f docker/docker-compose-all.yaml down
Eco Schema Catalog | Confluent Platform | Kafka | Java version |
---|---|---|---|
3.0.x | 7.0.8 | 3.0.x | 17 |
2.0.x | 7.0.1 | 3.0.x | 8 |
1.3.x | 5.3.x | 2.3.x | 8 |
1.2.x | 5.2.x | 2.2.x | 8 |
1.1.x | 5.1.x | 2.1.x | 8 |
1.0.x | 5.0.x | 2.0.x | 8 |
0.1.x | 4.0.x | 1.0.x | 8 |
Eco Schema Catalog is licensed under the Apache License, Version 2.0