graphframes-latest is not an official release of graphframes. So I would not recommend anyone to use it.Anyway, graphframes is available in ML runtime, may be using ML runtime instead of the standard one is the best solution.
I also have this issue, and I resolved it by cast all the records columns in bigquery to string before I dump the data.I first create a view likecreate view xxx as
select
string_1,
string_2,
string_3,
to_json_string(record_1) as record_1,
to_json_s...