Interface ZooKeeperReadApis
-
@Path("/cluster/zookeeper/") public interface ZooKeeperReadApisV2 API definitions for Solr's ZooKeeper ready-proxy endpoint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ZooKeeperListChildrenResponselistNodes(String zkPath, Boolean includeChildren)jakarta.ws.rs.core.StreamingOutputreadNode(String zkPath)jakarta.ws.rs.core.StreamingOutputreadSecurityJsonNode()
-
-
-
Method Detail
-
readNode
@GET @Path("/data{zkPath:.+}") @Produces({"application/vnd.apache.solr.raw","application/json"}) jakarta.ws.rs.core.StreamingOutput readNode(@PathParam("zkPath") String zkPath)
-
readSecurityJsonNode
@GET @Path("/data/security.json") @Produces({"application/vnd.apache.solr.raw","application/json"}) jakarta.ws.rs.core.StreamingOutput readSecurityJsonNode()
-
listNodes
@GET @Path("/children{zkPath:.*}") @Produces({"application/json","application/javabin"}) ZooKeeperListChildrenResponse listNodes(@PathParam("zkPath") String zkPath, @QueryParam("children") Boolean includeChildren) throws Exception- Throws:
Exception
-
-