Document Engine 1.17.0#150
Merged
Merged
Conversation
eteubert
approved these changes
Jul 2, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Expose the new Document Engine 1.17.0 runtime knobs in the
document-engineHelm chart.Async jobs and async
/api/buildAdded Helm values for the async jobs configuration introduced by
Document Engine:
config.asyncAdmissionQueues->
ASYNC_ADMISSION_QUEUESconfig.asyncAdmissionQueueLimits->
ASYNC_ADMISSION_QUEUE_LIMITSconfig.asyncWorkerQueues->
ASYNC_WORKER_QUEUESconfig.asyncJobTimeoutSeconds->
ASYNC_JOB_TIMEOUTconfig.asyncJobMaxRetries->
ASYNC_JOB_MAX_RETRIESconfig.asyncJobRetryBackoffSeconds->
ASYNC_JOB_RETRY_BACKOFF_SECONDSconfig.asyncJobsMetadataTtlSeconds->
ASYNC_JOBS_METADATA_TTLThe existing
config.asyncJobsTtlSecondsvalue continues to renderASYNC_JOBS_TTL.Async job encryption
Added
config.asyncJobEncryptionforASYNC_JOB_ENCRYPTION_KEYS,which Document Engine requires only when async Build API requests
contain sensitive persisted metadata such as remote URLs or PDF
passwords.
The chart supports both inline and external Secret configuration:
When
externalSecret.nameis empty,keysis rendered into thechart-owned Secret. When
externalSecret.nameis set, the pod receivesASYNC_JOB_ENCRYPTION_KEYSthrough an explicitsecretKeyRef, matchingexisting chart patterns for keyed external Secrets.
Batch render
Added
config.batchRendervalues:config.batchRender.maxConcurrency->
BATCH_RENDER_MAX_CONCURRENCYconfig.batchRender.maxPages->
BATCH_RENDER_MAX_PAGESconfig.batchRender.pageTimeoutSeconds->
BATCH_RENDER_PAGE_TIMEOUT_MSThe timeout value is configured in seconds in Helm values and rendered
in milliseconds for Document Engine.
Remote URL fetch policy
Added
config.remoteUrlFetchvalues:config.remoteUrlFetch.policy->
REMOTE_URL_FETCH_POLICYconfig.remoteUrlFetch.allowedHosts->
REMOTE_URL_FETCH_ALLOWED_HOSTSconfig.remoteUrlFetch.allowedCidrs->
REMOTE_URL_FETCH_ALLOWED_CIDRSconfig.remoteUrlFetch.allowEmbeddedCredentials->
REMOTE_URL_FETCH_ALLOW_EMBEDDED_CREDENTIALSFull-Text search
Added
config.searchvalues:config.search.ftsEnabled->
SEARCH_FTS_ENABLEDconfig.search.ftsEnrichment->
SEARCH_FTS_ENRICHMENTconfig.search.maxGlyphSidecarPageBytes->
SEARCH_MAX_GLYPH_SIDECAR_PAGE_BYTESconfig.search.ftsBuildOnWrite->
SEARCH_FTS_BUILD_ON_WRITESEARCH_MAX_GLYPH_SIDECAR_PAGE_BYTESis rendered as an integer stringto avoid scientific notation in Helm output.