AWS Glue, crawlers and issue with money datatype

0

I'm using a AWS Glue crawler for a RDS Aurora PostgreSQL, the table contains some columns with the money datatype, the crawler create the table with those columns as double.

AWSGlueDataCatalog_node1652381535100 = glueContext.create_dynamic_frame.from_catalog( database="tmp_db", table_name="postgres_public_list", transformation_ctx="AWSGlueDataCatalog_node1652381535100",)

But then when I start to working on the AWS Glue, any action, even a simple AWSGlueDataCatalog_node1652381535100.count() gives me this kind of error:

... Caused by: org.postgresql.util.PSQLException: Bad value for type double : 2,400.00 ...

Doesn't matter if I try to change the columns datatype to string, keeps saying the same error.

Any ideas how to solve this issue?

alcom
已提問 2 年前檢視次數 234 次
1 個回答
0

Hello,

I would like to inform you that MONEY[] is not supported due to the JDBC driver for PostgreSQL can’t handle those types properly. To process this kind of data, please cast the column to decimal type and make sure to verify it using printschema. B

For dynamic frame you can use Applymapping:

## To verify the datatype of the column
datasource0.printtSchema()

## Cast it to decimal using ApplyMapping
applymapping1 = ApplyMapping.apply(frame = datasource0, mappings = [("v1", "string", "v1", "string"),("XX_threshold", "double", "XX_threshold", "decimal(25,10)")], transformation_ctx = "applymapping1")

##Verify the schma if it is counted to Decimal or not.
applymapping1.printSchema()

applymapping1.toDF().show()

For dataframe you can use cast function:

from pyspark.sql.types import *

df=datasource0.toDF()
df2 = df.withColumn("age",col("age").cast("decimal(25,10)"))
df2.printSchema()
df2.show()
AWS
已回答 2 年前
  • Thank you your response. However this doesn't work, I tried the ApplyMapping before (even casting to string), and executing applymapping1.toDF().show() gives me the same error:

    ... Caused by: org.postgresql.util.PSQLException: Bad value for type double : ...

    Is like even doing transformations AWS Glue keeps the original datatype from the crawler, at least thats the behaviour that I experience until now.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南