-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Dataflow Streaming] Add support to read user worker settings from backend #32408
Conversation
60e62f0
to
98a306a
Compare
R: @scwhittle |
Stopping reviewer notifications for this pull request: review requested by someone other than the bot, ceding control. If you'd like to restart, comment |
...ker/src/main/java/org/apache/beam/runners/dataflow/worker/StreamingModeExecutionContext.java
Outdated
Show resolved
Hide resolved
...e/beam/runners/dataflow/worker/streaming/config/StreamingEngineComputationConfigFetcher.java
Outdated
Show resolved
Hide resolved
98a306a
to
e7b705d
Compare
Run Java Precommit |
Run Precommit Java |
Run Java Precommit |
This is ready for review, the failing test looks unrelated to the change. |
...ker/src/main/java/org/apache/beam/runners/dataflow/worker/StreamingModeExecutionContext.java
Outdated
Show resolved
Hide resolved
...va/org/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandle.java
Outdated
Show resolved
Hide resolved
...va/org/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandle.java
Outdated
Show resolved
Hide resolved
...va/org/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandle.java
Outdated
Show resolved
Hide resolved
...rg/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandleImpl.java
Outdated
Show resolved
Hide resolved
...rg/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandleImpl.java
Outdated
Show resolved
Hide resolved
...rg/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandleImpl.java
Outdated
Show resolved
Hide resolved
...org/apache/beam/runners/dataflow/worker/windmill/work/processing/StreamingWorkScheduler.java
Outdated
Show resolved
Hide resolved
*/ | ||
package org.apache.beam.runners.dataflow.worker.streaming.config; | ||
|
||
import com.google.common.base.Preconditions; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use vendored
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Should we remove the unvendored dependency from the classpath somehow?
...va/org/apache/beam/runners/dataflow/worker/streaming/config/FixedGlobalConfigHandleTest.java
Show resolved
Hide resolved
...pache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandleImplTest.java
Show resolved
Hide resolved
...pache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandleImplTest.java
Show resolved
Hide resolved
...va/org/apache/beam/runners/dataflow/worker/streaming/harness/StreamingWorkerStatusPages.java
Outdated
Show resolved
Hide resolved
...rg/apache/beam/runners/dataflow/worker/streaming/config/StreamingGlobalConfigHandleImpl.java
Outdated
Show resolved
Hide resolved
todo: Manage the threadpool shutdown |
Modified StreamingGlobalConfigHandleImpl to queue callbacks internally without relying on executors. PTAL |
This is on top of #32407.