Is there a way to limit the bandwidth that Google Drive File Stream uses?

3

1

Is there a way to limit the bandwidth that Google Drive File Stream uses?

I'm using a Mac and when I resume syncing, the Internet becomes unusable. I have to stop syncing to browse simple web pages!

useR

Posted 2018-08-07T07:16:48.370

Reputation: 33

Answers

3

I am guessing you are using Drive File Stream instead of the now-depreciated Google Drive application. For Drive File Stream, there currently is no graphical options menu. However, this page from Google outlines how settings can still be changed using the defaults shell command.

In order to limit download bandwidth to 100 Kilobytes/second, open Terminal and enter the following command:

defaults write com.google.drivefs.settings BandwidthRxKBPS -int 100

The 100 can be changed to any integer value you choose, and note that the value is in kiloBYTES and not kiloBITS.

To set the value for upload speed, use the following command:

defaults write com.google.drivefs.settings BandwidthTxKBPS -int 100

In order to change all settings back to their default, you can use this command:

defaults delete com.google.drivefs.settings

Hope this helps! Comment with any questions you have.

Next-Door Tech

Posted 2018-08-07T07:16:48.370

Reputation: 622

-1

There is a bandwidth limit setting in the Google Drive app's preferences (settings) -> Advanced.

See this answer.

Fanatique

Posted 2018-08-07T07:16:48.370

Reputation: 3 475

Thanks but I don’t have the settings or preferences option for google drive on my Mac. The answer you mentioned is for windows. – useR – 2018-08-07T07:45:14.897

@useR There are such options for Mac.. as stated in here. The feature is for both Windows and Mac. Here is where to find it.

– Fanatique – 2018-08-07T07:51:46.067

This is incorrect. The answer is for Google Drive not Drive File Stream. – johan – 2019-08-25T13:28:30.047