Starting with Spark 1.0.0, the Spark project will follow the semantic versioning guidelines with a few deviations. These small differences account for Spark’s nature as a multi-module project.
Each Spark release will be versioned: [MAJOR].[FEATURE].[MAINTENANCE]
When new components are added to Spark, they may initially be marked as “alpha”. Alpha components do not have to abide by the above guidelines, however, to the maximum extent possible, they should try to. Once they are marked “stable” they have to follow these guidelines.
An API is any public class or interface exposed in Spark that is not marked as “developer API” or “experimental”. Release A is API compatible with release B if code compiled against release A compiles cleanly against B. Currently, does not guarantee that a compiled application that is linked against version A will link cleanly against version B without re-compiling. Link-level compatibility is something we’ll try to guarantee in future releases.
Note, however, that even for features “developer API” and “experimental”, we strive to maintain maximum compatibility. Code should not be merged into the project as “experimental” if there is a plan to change the API later, because users expect the maximum compatibility from all available APIs.
From Spark 2.0.0, in general, feature (“minor”) releases occur every 4 months. Hence, Spark 2.2.0 would generally be released about 4 months after 2.1.0. Maintenance releases happen as needed depending on need. A minor release usually sees 1-2 maintenance releases in the 6 months following its first release. Major releases do not happen according to a fixed schedule.
| Date | Event | |
|---|---|---|
| ~ Nov 1 2016 | Code freeze. Release branch cut. | |
| Early Nov 2016 | QA period. Focus on bug fixes, tests, stability and docs. Generally, no new features merged. | |
| Late Nov 2016 | Release candidates (RC), voting, etc. until final release passes |
| Date | Event | |
|---|---|---|
| ~ Mar 1 2017 | Code freeze. Release branch cut. | |
| Early Mar 2017 | QA period. Focus on bug fixes, tests, stability and docs. Generally, no new features merged. | |
| Late Mar 2017 | Release candidates (RC), voting, etc. until final release passes |