confluentinc / ide-sidecar

Sidecar application used by Confluent for VS Code, as a local proxy for Confluent Cloud, Confluent Platform and local Kafka clusters, to help users build streaming applications.
Apache License 2.0
3 stars 3 forks source link

Migrate from `local_config` to same `schema_registry` used in direct connections #130

Open rhauch opened 2 weeks ago

rhauch commented 2 weeks ago

Currently local connections can define the SR URL via the local_config.schema-registry-uri. Direct connections use a more flexible approach via the:

"schema_registry": {
  "uri": "http://localhost:8082",
  ...
}

We want to migrate local connections away from the local_config and instead reuse the schema_registry structure used in direct connections.

We'll do this by initially supporting either, giving the extension a bit of time to migrate and verify the schema_registry approach works. Then we can remove the local_config mechanism.

Cerchie commented 1 day ago

update: initial support implemented