Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable discovery of local schema registry running on default port 8081 #328

Open
rohitsanj opened this issue Oct 1, 2024 · 0 comments · May be fixed by #401
Open

Enable discovery of local schema registry running on default port 8081 #328

rohitsanj opened this issue Oct 1, 2024 · 0 comments · May be fixed by #401
Assignees
Labels
enhancement New feature or request

Comments

@rohitsanj
Copy link
Contributor

rohitsanj commented Oct 1, 2024

VSCode needs to be able to discover the local Schema Registry (SR) running on the default port 8081. However, the Schema Registry may not be available at the time of VSCode startup and could be added later during the session.

To address this, the GraphQL query responsible for discovering the local Kafka cluster should be updated to also check for the availability of the local Schema Registry. This will ensure that VSCode dynamically recognizes the SR when it becomes available.

{
  "query": "query localConnections {
    localConnections {
      id
      name
      type
      kafkaCluster {
        id
        name
        bootstrapServers
        uri
      }
      schemaRegistry {
        id
        uri
      }
    }
  }"
}

@rohitsanj rohitsanj changed the title Enable discovery of local schema registry running at default port 8081 Enable discovery of local schema registry running on default port 8081 Oct 1, 2024
@rohitsanj rohitsanj added enhancement New feature or request triaged Team has initially triaged the issue and removed triaged Team has initially triaged the issue labels Oct 1, 2024
@shouples shouples self-assigned this Oct 4, 2024
@shouples shouples added this to the Full Local Resource Support milestone Oct 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants