Skip to content

Latest commit

 

History

History
73 lines (60 loc) · 2.64 KB

README.md

File metadata and controls

73 lines (60 loc) · 2.64 KB

Conduit Schema Registry

License Test Go Report Card

Conduit Schema Registry is a service that stores and manages schemas. It is used internally in Conduit to store the schemas of records that are produced and consumed by connectors.

The schema registry can either be embedded in a Go application or run as a standalone service exposing a REST API.

Note

This is a work in progress and is not ready to be used as a standalone service in production.

REST API

The schema registry exposes a REST API compatible with the Confluent Schema Registry API. The API is documented in the Confluent Schema Registry documentation.

List of supported endpoints:

  • Schemas

    • GET /schemas/ids/{id}
    • GET /schemas/ids/{id}/schema
    • GET /schemas/types
    • GET /schemas/ids/{id}/versions
  • Subjects

    • GET /subjects
    • GET /subjects/{subject}/versions
    • DELETE /subjects/{subject}
    • GET /subjects/{subject}/versions/{version}
    • GET /subjects/{subject}/versions/{version}/schema
    • POST /subjects/{subject}/versions
    • POST /subjects/{subject}
    • DELETE /subjects/{subject}/versions/{version}
    • GET /subjects/{subject}/versions/{version}/referencedby
  • Mode

    • GET /mode
    • PUT /mode
    • GET /mode/{subject}
    • PUT /mode/{subject}
    • DELETE /mode/{subject}
  • Compatibility

    • POST /compatibility/subjects/{subject}/versions/{version}
    • POST /compatibility/subjects/{subject}/versions
  • Config

    • PUT /config
    • GET /config
    • PUT /config/{subject}
    • GET /config/{subject}
    • DELETE /config/{subject}
  • Exporters

    • GET /exporters
    • GET /contexts
    • POST /exporters
    • PUT /exporters/{name}
    • PUT /exporters/{name}/config
    • GET /exporters/{name}
    • GET /exporters/{name}/status
    • GET /exporters/{name}/config
    • PUT /exporters/{name}/pause
    • PUT /exporters/{name}/reset
    • PUT /exporters/{name}/resume
    • DELETE /exporters/{name}