Schema registry configuration option does not respect the path in the URL · Issue #20377 · risingwavelabs/risingwave · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating a Kafka source that consumes messages from the Avro topic. To store data schemas, we use the Apicurio Schema registry. This registry supports Confluent Registry API, but you have to provide a specific path to the registry URL.
In this use case, it can look like http://localhost:8080/apis/ccompat/v6/.
If I create a source with this URL, it returns the following error.
Error message/log
[2025-02-04 15:44:03] [XX000] ERROR: Failed to execute the statement
[2025-02-04 15:44:03] Caused by these errors (recent errors listed first):
[2025-02-04 15:44:03] 1: connector error
[2025-02-04 15:44:03] 2: all request confluent registry all timeout, req path ["subjects", "topicName", "versions", "latest"], urls http://localhost:8080/apis/ccompat/v6/
[2025-02-04 15:44:03] confluent schema registry error 404: RESTEASY003210: Could not find resource for full path: http://localhost:8080/subjects/topicName/versions/latest
To Reproduce
Create Kafka Source:
CREATE SOURCE test WITH (
connector = 'kafka',
topic = 'topicName',
properties.bootstrap.server = 'localhost:9092',
scan.startup.mode = 'earliest'
)
FORMAT PLAIN ENCODE AVRO(
schema.registry = 'http://localhost:8080/apis/ccompat/v6/'
);
This issue has been open for 60 days with no activity.
If you think it is still relevant today, and needs to be done in the near future, you can comment to update the status, or just manually remove the no-issue-activity label.
You can also confidently close this issue as not planned to keep our backlog clean.
Don't worry if you think the issue is still valuable to continue in the future.
It's searchable and can be reopened when it's time. 😄
Describe the bug
I am creating a Kafka source that consumes messages from the Avro topic. To store data schemas, we use the Apicurio Schema registry. This registry supports Confluent Registry API, but you have to provide a specific path to the registry URL.
In this use case, it can look like http://localhost:8080/apis/ccompat/v6/.
If I create a source with this URL, it returns the following error.
Error message/log
To Reproduce
Create Kafka Source:
Expected behavior
Application tries to access http://localhost:8080/apis/ccompat/v6/topicName/versions/latest instead of http://localhost:8080/subjects/topicName/versions/latest
How did you deploy RisingWave?
Kubernetes Operator
The version of RisingWave
Additional context
No response
The text was updated successfully, but these errors were encountered: