Skip to content

Commit

Permalink
[DOP-16270] Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed May 29, 2024
1 parent fd6c112 commit 90ba720
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/changelog/0.11.1.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.11.1 (2024-05-28)
0.11.1 (2024-05-29)
===================

Features
Expand Down
11 changes: 9 additions & 2 deletions docs/connection/db_connection/hive/write.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ Examples
# Use the Hive partitioning columns to group the data. Create only 20 files per Hive partition.
# Also sort the data by column which most data is correlated with, reducing files size.
write_df = df.repartition(
20, "country", "business_date", "user_id"
).sortWithinPartitions("country", "business_date", "user_id")
20,
"country",
"business_date",
"user_id",
).sortWithinPartitions(
"country",
"business_date",
"user_id",
)
writer = DBWriter(
connection=hive,
Expand Down

0 comments on commit 90ba720

Please sign in to comment.