-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from conductor-oss/fix/client-v4-external-sto…
…rage-support [Java Client v4] External storage support + Event refactoring
- Loading branch information
Showing
31 changed files
with
1,001 additions
and
144 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
50 changes: 50 additions & 0 deletions
50
...rc/main/java/com/netflix/conductor/client/config/DefaultConductorClientConfiguration.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,50 @@ | ||
/* | ||
* Copyright 2020 Conductor Authors. | ||
* <p> | ||
* 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 | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* 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 com.netflix.conductor.client.config; | ||
|
||
/** | ||
* A default implementation of {@link ConductorClientConfiguration} where external payload barriers | ||
* is disabled. SEE: SEE: <a href="https://conductor-oss.github.io/conductor/documentation/advanced/externalpayloadstorage.html">External Payload Storage</a> | ||
*/ | ||
public class DefaultConductorClientConfiguration implements ConductorClientConfiguration { | ||
|
||
@Override | ||
public int getWorkflowInputPayloadThresholdKB() { | ||
return 5120; | ||
} | ||
|
||
@Override | ||
public int getWorkflowInputMaxPayloadThresholdKB() { | ||
return 10240; | ||
} | ||
|
||
@Override | ||
public int getTaskOutputPayloadThresholdKB() { | ||
return 3072; | ||
} | ||
|
||
@Override | ||
public int getTaskOutputMaxPayloadThresholdKB() { | ||
return 10240; | ||
} | ||
|
||
@Override | ||
public boolean isExternalPayloadStorageEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isEnforceThresholds() { | ||
return false; | ||
} | ||
} |
Oops, something went wrong.