|
| 1 | +#!/bin/sh |
| 2 | + |
| 3 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 4 | +# or more contributor license agreements. See the NOTICE file |
| 5 | +# distributed with this work for additional information |
| 6 | +# regarding copyright ownership. The ASF licenses this file |
| 7 | +# to you under the Apache License, Version 2.0 (the |
| 8 | +# "License"); you may not use this file except in compliance |
| 9 | +# with the License. You may obtain a copy of the License at |
| 10 | +# |
| 11 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +# |
| 13 | +# Unless required by applicable law or agreed to in writing, |
| 14 | +# software distributed under the License is distributed on an |
| 15 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | +# KIND, either express or implied. See the License for the |
| 17 | +# specific language governing permissions and limitations |
| 18 | +# under the License. |
| 19 | + |
| 20 | + |
| 21 | +### Use range requests to download an Arrow IPC stream file in two parts |
| 22 | + |
| 23 | +# Get the length of the file `random.arrows` in bytes |
| 24 | +curl -I localhost:8008/random.arrows |
| 25 | +# Content-Length: 13550776 |
| 26 | + |
| 27 | +# Download the first half of the file to `random.arrows.part1` |
| 28 | +curl -r 0-6775388 localhost:8008/random.arrows -o random.arrows.part1 |
| 29 | + |
| 30 | +# Download the second half of the file to `random.arrows.part2` |
| 31 | +curl -r 6775389-13550776 localhost:8008/random.arrows -o random.arrows.part2 |
| 32 | + |
| 33 | +# Combine the two separate files into one file `random.arrows` then delete them |
| 34 | +cat random.arrows.part1 random.arrows.part2 > random.arrows |
| 35 | +rm random.arrows.part1 random.arrows.part2 |
| 36 | + |
| 37 | +# Clean up |
| 38 | +rm random.arrows |
| 39 | + |
| 40 | + |
| 41 | +### Simulate an interrupted download over a slow connection |
| 42 | + |
| 43 | +# Begin downloading the file at 1M/s but interrupt after five seconds |
| 44 | +timeout 5s curl --limit-rate 1M localhost:8008/random.arrows -o random.arrows |
| 45 | + |
| 46 | +# Resume the download at 1M/s |
| 47 | +curl -C - --limit-rate 1M localhost:8008/random.arrows -o random.arrows |
| 48 | + |
| 49 | +# Clean up |
| 50 | +rm random.arrows |
0 commit comments