Created on 12-27-2017 05:48 AM - edited 09-16-2022 05:40 AM
In spark 2.2.0, I am trying to create table using bucketBy(), but not able to do so. it throws error message :-
AttributeError: Dataframe has no attribute bucketBy
code:- df.write.bucketBy.saveAsTable("table")
any solution?
Created 12-27-2017 05:58 AM
Not sure what you're trying to do there, but looks like you have a simple syntax error. bucketBy is a method. Please start with the API docs first.
Created on 12-27-2017 06:10 AM - edited 12-27-2017 06:10 AM
sorry , there was a typo, the code I am trying to run is :-df.write.bucketBy(2,"col_name").saveAsTable("table")