kaijchen opened a new pull request, #36312: URL: https://github.com/apache/doris/pull/36312
## Proposed changes Add BE HTTP API `/api/load_streams` to get all load_id for existing load_streams. Example: ```console $ curl http://localhost:8040/api/load_streams {"msg":"OK","code":0,"data":{"host":"10.16.10.7","load_streams":[]},"count":0} $ curl http://localhost:8040/api/load_streams {"msg":"OK","code":0,"data":{"host":"10.16.10.7","load_streams":[{"load_id":"43fc5dd321f04407-96b7b2cd38323c3a"}]},"count":1} $ curl http://localhost:8040/api/load_streams {"msg":"OK","code":0,"data":{"host":"10.16.10.7","load_streams":[{"load_id":"02b91d709808469b-8a43d591df446353"}]},"count":1} $ curl http://localhost:8040/api/load_streams {"msg":"OK","code":0,"data":{"host":"10.16.10.7","load_streams":[]},"count":0} ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
