soumilshah1995 commented on issue #351: URL: https://github.com/apache/incubator-xtable/issues/351#issuecomment-1973129493
@the-other-tim-brown followed the steps mentioned above Here is Spark submit ``` spark-submit \ --class org.apache.hudi.utilities.streamer.HoodieStreamer \ --packages 'org.apache.hudi:hudi-spark3.4-bundle_2.12:0.14.0' \ --properties-file spark-config.properties \ --master 'local[*]' \ --executor-memory 1g \ --jars /Users/soumilshah/IdeaProjects/SparkProject/DeltaStreamer/jar/hudi-extensions-0.1.0-beta1.jar \ /Users/soumilshah/IdeaProjects/SparkProject/DeltaStreamer/jar/hudi-utilities-slim-bundle_2.12-0.14.0.jar \ --table-type COPY_ON_WRITE \ --op UPSERT \ --source-limit 4000000 \ --source-ordering-field ts \ --source-class org.apache.hudi.utilities.sources.CsvDFSSource \ --target-base-path 'file:///Users/soumilshah/IdeaProjects/SparkProject/DeltaStreamer/hudi/bronze_orders' \ --target-table bronze_orders \ --sync-tool-classes io.onetable.hudi.sync.OneTableSyncTool \ --hoodie-conf 'hoodie.datasource.write.recordkey.field=order_id' \ --hoodie-conf 'hoodie.datasource.write.partitionpath.field=order_date' \ --hoodie-conf 'hoodie.datasource.write.precombine.field=ts' \ --hoodie-conf 'hoodie.streamer.source.dfs.root=file://///Users/soumilshah/IdeaProjects/SparkProject/DeltaStreamer/sampledata/orders' \ --hoodie-conf 'hoodie.deltastreamer.csv.header=true' \ --hoodie-conf 'hoodie.deltastreamer.csv.sep=\t' \ --hoodie-conf 'hoodie.onetable.formats=DELTA,ICEBERG' \ --hoodie-conf 'hoodie.onetable.target.metadata.retention.hr=168' ``` Job works fine but I do not see Delta Logs files am I missing something here ?  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@xtable.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org