Interface ReplicationApis


  • @Path("/cores/{coreName}/replication")
    public interface ReplicationApis
    • Method Detail

      • fetchFileList

        @GET
        @Path("/files")
        FileListResponse fetchFileList​(@QueryParam("generation")
                                       long gen)
      • fetchFile

        @GET
        @Path("/files/{filePath}")
        jakarta.ws.rs.core.StreamingOutput fetchFile​(@PathParam("filePath")
                                                     String filePath,
                                                     @QueryParam("dirType")
                                                     String dirType,
                                                     @QueryParam("offset")
                                                     String offset,
                                                     @QueryParam("len")
                                                     String len,
                                                     @QueryParam("compression") @DefaultValue("false")
                                                     Boolean compression,
                                                     @QueryParam("checksum") @DefaultValue("false")
                                                     Boolean checksum,
                                                     @QueryParam("maxWriteMBPerSec")
                                                     double maxWriteMBPerSec,
                                                     @QueryParam("generation")
                                                     Long gen)