MSCK REPAIR TABLE behaves differently when executed via Spark Context vs Athena Console/boto3

0

I have a Glue ETL job which creates partitions during the job

    additionalOptions = {"enableUpdateCatalog": True, "updateBehavior": "LOG"} 
    additionalOptions["partitionKeys"] = ["year", "month", "day"]

I don’t have it Update the Data Catalog because doing so changes all my Table Data Types. So after I am done, the way I get the Data Catalog updated with the correct partition information is to run MSCK REPAIR TABLE. If I do this inside the Glue ETL job using the Spark Context like so:

   spark.sql("use gp550_load_database_beta")
   spark.sql("msck repair table gp550_load_table_beta").show()

The following happens:

Serde Properties of my table are updated with “serialization.format : 1” Table Properties are updated with: EXTERNAL : TRUE spark.sql.partitionProvider : catalog

ALL Data Types in my table are set to “String” with a comment of “from deserializer”

Basically it makes a mess.

If I instead run MSCK REPAIR TABLE from boto3, or if I manually run it from Athena Console, then there are no issues. No Serde Properties are changes, no table properties, no data types are changed, it simply adds my partitions to the Data Catalog like I want. I do like so in my ETL job:

    client = boto3.client('athena')
    sql = 'MSCK REPAIR TABLE gp550_load_database_beta.gp550_load_table_beta'
    context = {'Database': 'gp550_load_database_beta'}

    client.start_query_execution(QueryString = sql, 
                                 QueryExecutionContext = context,
                                 ResultConfiguration= { 'OutputLocation': 's3://aws-glue-assets-977465404123-us-east-1/temporary/' })

Why does it behave so differently? Is it because somehow I need to tell Spark to work with HIVE? I had thought that since I already had a spark context it would be easy to use that to kick off the MSCK REPAIR TABLE, but obviously I was surprised at the result!

bfeeny
posta 2 anni fa111 visualizzazioni
Nessuna risposta

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande