cancel
Showing results for 
Search instead for 
Did you mean: 
Community Platform Discussions
Connect with fellow community members to discuss general topics related to the Databricks platform, industry trends, and best practices. Share experiences, ask questions, and foster collaboration within the community.
cancel
Showing results for 
Search instead for 
Did you mean: 

DLT refresh time for combination of streaming and non streaming tables?

surajitDE
New Contributor II
@dlt.table
def joined_table():
    dim_df = spark.read.table("dim_table")  # Reloads every batch
    fact_df = spark.readStream.table("fact_stream")
    return fact_df.join(dim_df, "id", "left")
1 REPLY 1

surajitDE
New Contributor II

the question is default DLT pipeline refresh time is 5seconds but if I use combination of streaming and non streaming data then will it still be 5 seconds?

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group