Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

AttributeError: Dataframe has no attribute bucketBy

avatar

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?

2 REPLIES 2

avatar
Master Collaborator

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.

avatar

sorry , there was a typo, the code I am trying to run is :-
df.write.bucketBy(2,"col_name").saveAsTable("table")