ianmcook commented on issue #40597:
URL: https://github.com/apache/arrow/issues/40597#issuecomment-2002472019

   Range requests are how HTTP clients resume interrupted downloads. 
   
   To test whether a server supports range requests, you can use curl like this:
   
   1. Start the download, limiting the speed so it doesn't finish too quickly.
       ```sh
       curl --limit-rate 10K -o file.arrows http://localhost:8008
       ```
   2. Press `^C` to interrupt the download.
   3. Resume the download.
       ```sh
       curl --limit-rate 10K -o file.arrows -C - http://localhost:8008
       ```
   


-- 
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]

Reply via email to