Skip to content

Commit

Permalink
[MINOR] Fix configuration version
Browse files Browse the repository at this point in the history
Change the `.version("0.3.2")` to `.version("0.3.1")`

0.3.1 is not release yet.

No.

Pass GA.

Closes #1948 from pan3793/minor-version.

Lead-authored-by: Cheng Pan <[email protected]>
Co-authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
(cherry picked from commit ab68a4a)
Signed-off-by: Cheng Pan <[email protected]>
  • Loading branch information
pan3793 and pan3793 committed Sep 28, 2023
1 parent b465b5e commit 30e4063
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ object CelebornConf extends Logging {
val WORKER_UNAVAILABLE_INFO_EXPIRE_TIMEOUT: ConfigEntry[Long] =
buildConf("celeborn.master.workerUnavailableInfo.expireTimeout")
.categories("master")
.version("0.3.2")
.version("0.3.1")
.doc("Worker unavailable info would be cleared when the retention period is expired")
.timeConf(TimeUnit.MILLISECONDS)
.createWithDefaultString("1800s")
Expand Down Expand Up @@ -2220,7 +2220,7 @@ object CelebornConf extends Logging {
"the range fetch phase, as both the original and sorted files will be retained until the " +
"shuffle is finished. Note that the default value is configured as 'false' as a " +
"temporary workaround for CELEBORN-980. see CELEBORN-980 for more details.")
.version("0.3.2")
.version("0.3.1")
.internal
.booleanConf
.createWithDefault(false)
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/master.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ license: |
| celeborn.master.slot.assign.maxWorkers | 10000 | Max workers that slots of one shuffle can be allocated on. Will choose the smaller positive one from Master side and Client side, see `celeborn.client.slot.assign.maxWorkers`. | 0.3.1 |
| celeborn.master.slot.assign.policy | ROUNDROBIN | Policy for master to assign slots, Celeborn supports two types of policy: roundrobin and loadaware. Loadaware policy will be ignored when `HDFS` is enabled in `celeborn.storage.activeTypes` | 0.3.0 |
| celeborn.master.userResourceConsumption.update.interval | 30s | Time length for a window about compute user resource consumption. | 0.3.0 |
| celeborn.master.workerUnavailableInfo.expireTimeout | 1800s | Worker unavailable info would be cleared when the retention period is expired | 0.3.2 |
| celeborn.master.workerUnavailableInfo.expireTimeout | 1800s | Worker unavailable info would be cleared when the retention period is expired | 0.3.1 |
| celeborn.storage.activeTypes | HDD,SSD | Enabled storage levels. Available options: HDD,SSD,HDFS. | 0.3.0 |
| celeborn.storage.hdfs.dir | &lt;undefined&gt; | HDFS base directory for Celeborn to store shuffle data. | 0.2.0 |
<!--end-include-->
6 changes: 2 additions & 4 deletions docs/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,12 @@ license: |

# Migration Guide

## Upgrading from 0.3.1 to 0.3.2

- Since 0.3.2, Celeborn changed the default value of `celeborn.worker.monitor.disk.check.interval` from `60` to `30`.

## Upgrading from 0.3.0 to 0.3.1

- Since 0.3.1, Celeborn changed the default value of `celeborn.worker.directMemoryRatioToResume` from `0.5` to `0.7`.

- Since 0.3.1, Celeborn changed the default value of `celeborn.worker.monitor.disk.check.interval` from `60` to `30`.

## Upgrading from 0.2 to 0.3.0

- Celeborn 0.2 Client is compatible with 0.3 Master/Server, it allows to upgrade Master/Worker first then Client.
Expand Down

0 comments on commit 30e4063

Please sign in to comment.