SpringCloud Schema注册客户端
2023-11-27 13:49 更新
与模式注册表服务器进行交互的客户端抽象是SchemaRegistryClient
接口,该接口具有以下结构:
public interface SchemaRegistryClient { SchemaRegistrationResponse register(String subject, String format, String schema); String fetch(SchemaReference schemaReference); String fetch(Integer id); }
Spring Cloud Stream提供了开箱即用的实现,可以与其自己的模式服务器进行交互,也可以与Confluent Schema注册中心进行交互。
可以使用@EnableSchemaRegistryClient
来配置Spring Cloud Stream模式注册表的客户端,如下所示:
@EnableBinding(Sink.class) @SpringBootApplication @EnableSchemaRegistryClient public static class AvroSinkApplication { ... }
默认转换器经过优化,不仅可以缓存来自远程服务器的模式,还可以缓存parse()
和toString()
方法,这是非常昂贵的。因此,它使用了不缓存响应的DefaultSchemaRegistryClient
。如果要更改默认行为,则可以直接在代码上使用客户端,并将其覆盖为所需的结果。为此,您必须将属性spring.cloud.stream.schemaRegistryClient.cached=true
添加到应用程序属性中。
以上内容是否对您有帮助:
更多建议: