你好,
我工作在一個流媒體數據處理。我開始一步從azure eventhub使用readstream讀取數據。現在我想writestream成δ表。
我的要求是,數據應該出現在外部位置(adls gen2)和表應該在我metastore可用。
當我嚐試以下代碼
Code_Snippet:
ext_table_location = " adls路徑”
autoloader_df。writeStream \
.format \(“δ”)
.outputMode \(“追加”)
.option (“checkpointLocation”, checkpoint_directory) \
.option (“mergeSchema”,“真正的”)\
.option(“路徑”,ext_table_location) \
.table (ext_table_location)
它是失敗的。有沒有流數據的標準方法對於這樣的場景嗎?
提前謝謝!