Skip to content

Commit

Permalink
adding support for large YAML files as input
Browse files Browse the repository at this point in the history
  • Loading branch information
ElaiShalevRH authored and gabriel-farache committed Sep 18, 2024
1 parent 2e3a6c7 commit daef759
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pipeline/workflow-builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ ARG QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.100

# Additional java/mvn arguments to pass to the builder.
# This are is conventient to pass sonataflow and quarkus build time properties.
ARG MAVEN_ARGS_APPEND="-Dkogito.persistence.type=jdbc -Dquarkus.datasource.db-kind=postgresql -Dkogito.persistence.proto.marshaller=false"
# Note that the maxYamlCodePoints parameter contols the maximum input size for
# YAML input files, and is currently set to 35000000 characters (~33MB in UTF-8).
ARG MAVEN_ARGS_APPEND="-DmaxYamlCodePoints=35000000 -Dkogito.persistence.type=jdbc -Dquarkus.datasource.db-kind=postgresql -Dkogito.persistence.proto.marshaller=false"

# Argument for passing the resources folder if not current context dir
ARG WF_RESOURCES
Expand Down

0 comments on commit daef759

Please sign in to comment.