by
Altay
• New Contributor II
- 1115 Views
- 0 replies
- 0 kudos
Hi Everyone,I have an ingestion script where I use the delta merge to update and append newly incoming data in dataframe format to an existing delta table.I am experiencing an issue where all the variables that have been used previously loose their d...
- 1115 Views
- 0 replies
- 0 kudos
- 1562 Views
- 0 replies
- 0 kudos
We are working on multiline nested ( multilevel).The file is read and flattened using pyspark and the data frame is showing data using display() method. when saving the same dataframe it is giving executor lost failure error.for some files it is givi...
- 1562 Views
- 0 replies
- 0 kudos
- 1520 Views
- 0 replies
- 0 kudos
We are looking into enabling Predictive IO on our delta tables. In the ingest process we are using autoloader and I am wondering if autoloader will gett a flag to enable deletion vectors at table creation? Deletion vectors is a requirement for Predic...
- 1520 Views
- 0 replies
- 0 kudos
by
ros
• New Contributor III
- 3907 Views
- 2 replies
- 3 kudos
I installed hudi maven library org.apache.hudi:hudi-spark3.3-bundle_2.12:0.13.0 in Dbricks Runtime Ver : 12.2 LTS (includes Apache Spark 3.3.2, Scala 2.12) with spark config :spark.sql.catalog.spark_catalog org.apache.spark.sql.hudi.catalog.HoodieCat...
- 3907 Views
- 2 replies
- 3 kudos
Latest Reply
@Shanmugavel Chandrakasu %sql
create table hudi_cow_pt_tbl (
id bigint,
name string,
ts bigint,
dt string,
hh string
) using hudi
tblproperties (
type = 'cow',
primaryKey = 'id',
preCombineField = 'ts'
)
partitioned by (dt, hh)
location '/mnt/data/h...
1 More Replies