- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2022 10:56 PM
I write data to s3 like
data.write.format("delta").mode("append").option("mergeSchema", "true").save(s3_location)
and create a partitioned table like
CREATE TABLE IF NOT EXISTS demo_table
USING DELTA
PARTITIONED BY (column_a)
LOCATION {s3_location};
which throws an error
Error in SQL statement: AnalysisException: It is not allowed to specify partitioning when the table schema is not defined.
Is there a different way to write to s3 location so that I can solve this issue
- Labels:
-
Delta
-
Delta Tables
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2022 01:10 PM
@John Constantine , In CREATE TABLE, you need to specify fields:
CREATE TABLE IF NOT EXISTS demo_table
(column_a STRING,
number INT)
USING DELTA PARTITIONED BY
(column_a)
LOCATION
{s3_location};
and when you save data before creating a table, it should include a partition. I think it better first register the table and then write to it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2022 01:10 PM
@John Constantine , In CREATE TABLE, you need to specify fields:
CREATE TABLE IF NOT EXISTS demo_table
(column_a STRING,
number INT)
USING DELTA PARTITIONED BY
(column_a)
LOCATION
{s3_location};
and when you save data before creating a table, it should include a partition. I think it better first register the table and then write to it.

