You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My PR fully resolves the following issues. I've referenced an issue in the PR title, for example "Issue 1234 - My
Feature". Note that before an issue is finished, you can still make a pull request by raising a separate issue
for your progress.
Core change: separate EKS Spark configuration from EMR
The branch introduces dedicated Spark configuration support for bulk import on EKS, separating it from the existing EMR properties.
New/removed property classes (java/core/.../properties/instance/)
EKSProperty.java (new) - defines EKS-specific Spark properties: executor instances, driver/executor memory, memory overhead, executor cores, and default parallelism. All with EKS-appropriate defaults (e.g. 12 g memory, tuned for Fargate).
BulkImportProperty.java (new) - extracts properties shared between EMR and EKS modes: BULK_IMPORT_CLASS_NAME, speculation settings, shuffle codec, executor Java options, etc. Previously these lived in EMRProperty.
EMRProperty.java (deleted) - properties split between BulkImportProperty (shared) and the remaining EMR-specific classes.
StateMachinePlatformExecutor.java
Simplified - Spark config construction moved into ConfigurationUtils, reducing duplication.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Make sure you have checked all steps below.
Issue
Feature". Note that before an issue is finished, you can still make a pull request by raising a separate issue
for your progress.
Tests
Documentation
separate issue for that below.