Class SchemaRequestHandler
java.lang.Object
com.linkedin.venice.controller.server.SchemaRequestHandler
Request handler for schema-related operations.
Handles schema retrieval and management for Venice stores.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetKeySchema(String clusterName, String storeName) Retrieves the key schema for a store.getValueSchema(String clusterName, String storeName, int schemaId) Retrieves the value schema for a store by schema ID.
-
Constructor Details
-
SchemaRequestHandler
-
-
Method Details
-
getValueSchema
Retrieves the value schema for a store by schema ID. No ACL check required - reading schema metadata is public.- Parameters:
clusterName- the cluster namestoreName- the store nameschemaId- the schema ID- Returns:
- SchemaResponse containing the value schema
-
getKeySchema
Retrieves the key schema for a store. No ACL check required - reading schema metadata is public.- Parameters:
clusterName- the cluster namestoreName- the store name- Returns:
- SchemaResponse containing the key schema
-