spark
spark copied to clipboard
Apache Spark - A unified analytics engine for large-scale data processing
### What changes were proposed in this pull request? This proposes to extend the available partitioning options for the JDBC data source. ### Why are the changes needed? Partitioning options...
### What changes were proposed in this pull request? The PR fixes the authentication failure of the proxy user on driver side while accessing kerberized hdfs through spark on k8s...
### What changes were proposed in this pull request? This modifies `GenerateUnsafeProjection` to wrap projections of non-null fields in try-catch blocks which swallow any `NullPointerException` that is thrown, and instead...
### What changes were proposed in this pull request? `ConstantPropagation` currently only supports replace constants in equality predicates. For example: `i = 5 AND j = i + 3` ->...
### What changes were proposed in this pull request? Extend Catalyst's type system by a new decimal type: Decimal128Type with Int128. ### Why are the changes needed? Spark SQL today...
### What changes were proposed in this pull request? Use AmazonKinesisClientBuilder.withCredentials instead of new AmazonKinesisClient(credentials) to cleanup following compilation warnings: > [warn] /home/runner/work/spark/spark/connector/kinesis-asl/src/main/scala/org/apache/spark/examples/streaming/KinesisWordCountASL.scala:108:25: [deprecation @ org.apache.spark.examples.streaming.KinesisWordCountASL.main.kinesisClient | origin=com.amazonaws.services.kinesis.AmazonKinesisClient. | version=]...
### What changes were proposed in this pull request? Add create datasource table options docs in `docs/sql-ref-syntax-ddl-create-table-datasource.md`. ### Why are the changes needed? improve the missed docs and example. ###...
### What changes were proposed in this pull request? Fix the shutdown hook call through to CoarseGrainedSchedulerBackend ### Why are the changes needed? Sometimes if the driver shuts down abnormally...
### What changes were proposed in this pull request? This PR replace `Files.createDirectory` with `Files.createDirectories`. ### Why are the changes needed? To avoid creating directory failures if the parent directory...
### What changes were proposed in this pull request? There are 2 `initDB` in `DBProvider` 1. `DB initDB(DBBackend dbBackend, File dbFile, StoreVersion version, ObjectMapper mapper)` 2. `DB initDB(DBBackend dbBackend, File...