-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor runner configuration, add labels to dataflow options (#718)
* Refactor runner configuration, add labels to dataflow options * Remove util method * Add javadocs for RunnerConfig class * Apply spotless
- Loading branch information
Chen Zhiling
authored
Jun 1, 2020
1 parent
a5c6dce
commit f9ce8ee
Showing
12 changed files
with
202 additions
and
114 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
36 changes: 36 additions & 0 deletions
36
core/src/main/java/feast/core/job/direct/DirectRunnerConfig.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright 2018-2020 The Feast Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package feast.core.job.direct; | ||
|
||
import feast.core.job.option.RunnerConfig; | ||
import feast.proto.core.RunnerProto.DirectRunnerConfigOptions; | ||
|
||
public class DirectRunnerConfig extends RunnerConfig { | ||
/** | ||
* Controls the amount of target parallelism the DirectRunner will use. Defaults to the greater of | ||
* the number of available processors and 3. Must be a value greater than zero. | ||
*/ | ||
Integer targetParallelism; | ||
|
||
/* BigQuery table specification, e.g. PROJECT_ID:DATASET_ID.PROJECT_ID */ | ||
String deadletterTableSpec; | ||
|
||
public DirectRunnerConfig(DirectRunnerConfigOptions runnerConfigOptions) { | ||
this.deadletterTableSpec = runnerConfigOptions.getDeadLetterTableSpec(); | ||
this.targetParallelism = runnerConfigOptions.getTargetParallelism(); | ||
} | ||
} |
This file contains 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
Oops, something went wrong.