I am working on Databricks and I would like to know if I can read csv file from google cloud.
I was trying to read this guideline: https://docs.databricks.com/data/data.html
I can read the data locally in Python in this way
path = 'myJson.json'
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = path
client = storage.Client()
name = 'https://console.cloud.google.com/storage/browser/myBucket/'
bucket_id = 'myBucket'
bucket = client.get_bucket(bucket_id)
df = pd.read_csv('gs://myBucket/feed/us/2020/03/19/18/data0000000001.csv.gz, compression='gzip')