How To Use vaex at Cloud Data Storage #2229
-
Hi, You did a great job congrats. I just need to ask a question. I have data on google Bigquery . How i directly read this data from google Bigquery? The problem is i could found a code that includes to_dataframe and that code converts data to pandas. This is loosing a lot of time and ram on big data. It is same other online cloud storages (like AWS) On tutorials always reading data from csv files. I need help to use vaex on my cloud projects. thanks a lot. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, This is not documented but is implemented. You need to install You can find the relevant methods here: from vaex.contrib.io.gbq import from_query, from_table, to_table The docstrings give an example of how these are used. I hope this helps a bit |
Beta Was this translation helpful? Give feedback.
Hi,
This is not documented but is implemented. You need to install
vaex-contrib
, which you get by default if you install the whole of vaex (viapip install vaex
orconda/mamba install -c conda-forge vaex
).You can find the relevant methods here:
The docstrings give an example of how these are used. I hope this helps a bit