Amazon web services – AWS Glue Pyspark Job is not ending
I am trying to read the data from RDS Postgres via PySpark 3.3 and AWS Glue 5.0 versions using the below command. df = ( self.config.spark_details.spark.read.format("jdbc") .option( "url", f"jdbc:postgresql://{self.postgres_host}:{self.postgres_port}/{self.postgres_database}", ) .option("driver", "org.postgresql.Driver") .option("user", self.postgres_username) .option("password", self.postgres_password) .option("query", query) .load() )…