Home / RedHat / EX378
Latest EX378 Exam Practice Questions
The practice questions for EX378 exam was last updated on 2025-09-15 .
Viewing page 1 out of 29 pages.
Viewing questions 1 out of 146 questions.
Configure a timeout duration via MicroProfile Config instead of annotation.
Explanation:
What is a channel in the context of Quarkus reactive messaging, and how is it used?
Explanation: A channel is a named stream of messages used to link producers and consumers. Channels are declared implicitly via @Incoming and @Outgoing, and configured in application.properties.
How do you propagate trace context between microservices using HTTP?
Explanation: Use the quarkus-rest-client-reactive with context propagation: @RegisterRestClient @Path("/next") public interface DownstreamService { @GET @Traced // optional, to enforce tracing on outgoing call String callNext(); } Context is auto-propagated using W3C Trace Context headers.
How do you verify parent-child relationships of spans across services?
Explanation: Open Jaeger UI ® Search for trace by service ® Click on a trace • You’ll see a hierarchical view • Parent spans include metadata like HTTP method and service name Child spans appear nested under parent spans.
Set authentication failure response for unauthorized users.
Explanation: Use Quarkus’s default or define a custom ExceptionMapper<UnauthorizedException> to return a JSON response with error details.
Exam Code: EX378Q & A: 450 Q&AsUpdated: 2025-09-15