issue with how monotonically_increasing_id works

i have following code, which i use to add unique id to my DF. DF can have complete duplicate rows (all columns same), so i cannot use SHA or any other algo.

I am using ADB, DBR 14.3, spark 3.5.0

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>def create_one_partition (df: DataFrame = None):
if df:
if df.rdd.getNumPartitions() > 1:
df = df.coalesce(1)
return df
def add_consecutive_unique_id_column(df: DataFrame, unique_id_col_name: str = "unique_id"):
"""
Add a consecutive unique identifier column to a DataFrame.
Args:
- df: DataFrame to which the unique identifier column will be added
- unique_id_col_name: Name of the column for the unique identifier (default: "unique_id")
Returns:
- DataFrame: DataFrame with a consecutive unique identifier column
"""
# If the temporary unique_id_tmp column doesn't exist, create it
if "unique_id_tmp" not in df.columns:
df = create_one_partition(df)
df = df.withColumn("unique_id_tmp", monotonically_increasing_id())
# Use row_number to generate consecutive unique IDs based on the temporary unique_id_tmp column
window_spec = Window.orderBy("unique_id_tmp")
df = df.withColumn(unique_id_col_name, row_number().over(window_spec))
# Drop the original unique_id_tmp column as it's no longer needed
df = df.drop("unique_id_tmp")
##return df
return df
</code>
<code>def create_one_partition (df: DataFrame = None): if df: if df.rdd.getNumPartitions() > 1: df = df.coalesce(1) return df def add_consecutive_unique_id_column(df: DataFrame, unique_id_col_name: str = "unique_id"): """ Add a consecutive unique identifier column to a DataFrame. Args: - df: DataFrame to which the unique identifier column will be added - unique_id_col_name: Name of the column for the unique identifier (default: "unique_id") Returns: - DataFrame: DataFrame with a consecutive unique identifier column """ # If the temporary unique_id_tmp column doesn't exist, create it if "unique_id_tmp" not in df.columns: df = create_one_partition(df) df = df.withColumn("unique_id_tmp", monotonically_increasing_id()) # Use row_number to generate consecutive unique IDs based on the temporary unique_id_tmp column window_spec = Window.orderBy("unique_id_tmp") df = df.withColumn(unique_id_col_name, row_number().over(window_spec)) # Drop the original unique_id_tmp column as it's no longer needed df = df.drop("unique_id_tmp") ##return df return df </code>
def create_one_partition (df: DataFrame = None):
    if df:
        if df.rdd.getNumPartitions() > 1:
            df = df.coalesce(1)
    return df
    

def add_consecutive_unique_id_column(df: DataFrame, unique_id_col_name: str = "unique_id"):
    """
    Add a consecutive unique identifier column to a DataFrame.

    Args:
    - df: DataFrame to which the unique identifier column will be added
    - unique_id_col_name: Name of the column for the unique identifier (default: "unique_id")

    Returns:
    - DataFrame: DataFrame with a consecutive unique identifier column
    """
    # If the temporary unique_id_tmp column doesn't exist, create it
    if "unique_id_tmp" not in df.columns:
        df = create_one_partition(df)
        df = df.withColumn("unique_id_tmp", monotonically_increasing_id())

    # Use row_number to generate consecutive unique IDs based on the temporary unique_id_tmp column
    window_spec = Window.orderBy("unique_id_tmp")
    df = df.withColumn(unique_id_col_name, row_number().over(window_spec))

    # Drop the original unique_id_tmp column as it's no longer needed
    df = df.drop("unique_id_tmp")

    ##return df
    return df

but issue with this code is, when i try to use resultant DF in my code for any purpose. the value this column keeps changing. It is behaving as if spark is not generating values, but keeping this code as view, making this code completely useless.

any idea? to get around this? so DF doesnt keep generating this column value again and again.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật