Increase the default media chunksize to 100MB.
The current `DEFAULT_CHUNK_SIZE` of 512kb leads to unnecessarily slow
transfers, as in googlecolab/backend-container#1. Increasing this simply
lowers the overhead for large transfers.
Fixes #481.
diff --git a/googleapiclient/http.py b/googleapiclient/http.py
index d492aba..66af5d8 100644
--- a/googleapiclient/http.py
+++ b/googleapiclient/http.py
@@ -74,7 +74,7 @@
LOGGER = logging.getLogger(__name__)
-DEFAULT_CHUNK_SIZE = 512*1024
+DEFAULT_CHUNK_SIZE = 100*1024*1024
MAX_URI_LENGTH = 2048