Skip to content
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

[ASCII-2510] Add remote-autodiscovery scheduler streaming endpoint #31324

Merged
merged 13 commits into from
Dec 11, 2024

Conversation

pgimalac
Copy link
Member

@pgimalac pgimalac commented Nov 21, 2024

What does this PR do?

Add a remote autodiscovery scheduler GRPC endpoint in the API.

The endpoint streams autodiscovery config event changes (schedule, unschedule).
On starting the connection, it sends all currently scheduled configs.

Motivation

Use it in the POC checks-agent, to avoid having to include autodiscovery and its transitive dependencies.

Describe how to test/QA your changes

Unit tests have been added.
The first user is the (POC) checks agent, which will ensure this works as expected, see #31571.

Possible Drawbacks / Trade-offs

Additional Notes

@pgimalac pgimalac requested review from a team as code owners November 21, 2024 15:48
@pgimalac pgimalac requested a review from hush-hush November 21, 2024 15:48
@pgimalac pgimalac marked this pull request as draft November 21, 2024 15:48
@pgimalac pgimalac requested review from GustavoCaso and removed request for hush-hush November 21, 2024 15:49
@github-actions github-actions bot added the long review PR is complex, plan time to review it label Nov 21, 2024
@agent-platform-auto-pr
Copy link
Contributor

agent-platform-auto-pr bot commented Nov 21, 2024

Test changes on VM

Use this command from test-infra-definitions to manually test this PR changes on a VM:

inv aws.create-vm --pipeline-id=50689176 --os-family=ubuntu

Note: This applies to commit 6b8d1d8

Comment on lines 61 to 78
if err != nil {
log.Warnf("error sending %s autodiscovery event: %s", eventType.String(), err)
s.done <- err
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we exit if there is an error when sending an event? If we disconnect here, we need to figure a way reconnect.

What other option do you think we could do?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I kept that logic from the AK branch, but I'm wondering the same... 🤔

Copy link
Member Author

@pgimalac pgimalac Nov 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could implement a retry mechanism, but that's already what happens inside s.out.Send (I think ?) so I'm not sure it's super useful

Copy link

cit-pr-commenter bot commented Nov 21, 2024

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: 50d1a7f5-1c0f-480d-8a72-ab96fb982214

Baseline: bcfd6ab
Comparison: 6b8d1d8
Diff

Optimization Goals: ✅ No significant changes detected

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_idle_all_features memory utilization +1.63 [+1.51, +1.74] 1 Logs bounds checks dashboard
quality_gate_logs % cpu utilization +1.07 [-1.93, +4.06] 1 Logs
quality_gate_idle memory utilization +0.32 [+0.28, +0.36] 1 Logs bounds checks dashboard
file_to_blackhole_500ms_latency egress throughput +0.31 [-0.47, +1.09] 1 Logs
file_to_blackhole_0ms_latency_http2 egress throughput +0.19 [-0.66, +1.04] 1 Logs
file_to_blackhole_300ms_latency egress throughput +0.09 [-0.54, +0.72] 1 Logs
file_to_blackhole_100ms_latency egress throughput +0.03 [-0.72, +0.79] 1 Logs
file_tree memory utilization +0.03 [-0.09, +0.14] 1 Logs
uds_dogstatsd_to_api ingress throughput +0.01 [-0.09, +0.11] 1 Logs
file_to_blackhole_0ms_latency egress throughput +0.01 [-0.81, +0.83] 1 Logs
file_to_blackhole_0ms_latency_http1 egress throughput +0.00 [-0.82, +0.83] 1 Logs
tcp_dd_logs_filter_exclude ingress throughput +0.00 [-0.01, +0.01] 1 Logs
uds_dogstatsd_to_api_cpu % cpu utilization -0.03 [-0.76, +0.69] 1 Logs
otel_to_otel_logs ingress throughput -0.07 [-0.69, +0.55] 1 Logs
file_to_blackhole_1000ms_latency_linear_load egress throughput -0.13 [-0.59, +0.34] 1 Logs
tcp_syslog_to_blackhole ingress throughput -0.27 [-0.35, -0.18] 1 Logs
file_to_blackhole_1000ms_latency egress throughput -0.35 [-1.13, +0.43] 1 Logs

Bounds Checks: ❌ Failed

perf experiment bounds_check_name replicates_passed links
file_to_blackhole_100ms_latency lost_bytes 8/10
file_to_blackhole_0ms_latency lost_bytes 10/10
file_to_blackhole_0ms_latency memory_usage 10/10
file_to_blackhole_0ms_latency_http1 lost_bytes 10/10
file_to_blackhole_0ms_latency_http1 memory_usage 10/10
file_to_blackhole_0ms_latency_http2 lost_bytes 10/10
file_to_blackhole_0ms_latency_http2 memory_usage 10/10
file_to_blackhole_1000ms_latency memory_usage 10/10
file_to_blackhole_1000ms_latency_linear_load memory_usage 10/10
file_to_blackhole_100ms_latency memory_usage 10/10
file_to_blackhole_300ms_latency lost_bytes 10/10
file_to_blackhole_300ms_latency memory_usage 10/10
file_to_blackhole_500ms_latency lost_bytes 10/10
file_to_blackhole_500ms_latency memory_usage 10/10
quality_gate_idle memory_usage 10/10 bounds checks dashboard
quality_gate_idle_all_features memory_usage 10/10 bounds checks dashboard
quality_gate_logs lost_bytes 10/10
quality_gate_logs memory_usage 10/10

Explanation

Confidence level: 90.00%
Effect size tolerance: |Δ mean %| ≥ 5.00%

Performance changes are noted in the perf column of each table:

  • ✅ = significantly better comparison variant performance
  • ❌ = significantly worse comparison variant performance
  • ➖ = no significant change in performance

A regression test is an A/B test of target performance in a repeatable rig, where "performance" is measured as "comparison variant minus baseline variant" for an optimization goal (e.g., ingress throughput). Due to intrinsic variability in measuring that goal, we can only estimate its mean value for each experiment; we report uncertainty in that value as a 90.00% confidence interval denoted "Δ mean % CI".

For each experiment, we decide whether a change in performance is a "regression" -- a change worth investigating further -- if all of the following criteria are true:

  1. Its estimated |Δ mean %| ≥ 5.00%, indicating the change is big enough to merit a closer look.

  2. Its 90.00% confidence interval "Δ mean % CI" does not contain zero, indicating that if our statistical model is accurate, there is at least a 90.00% chance there is a difference in performance between baseline and comparison variants.

  3. Its configuration does not mark it "erratic".

CI Pass/Fail Decision

Passed. All Quality Gates passed.

  • quality_gate_idle, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check lost_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check memory_usage: 10/10 replicas passed. Gate passed.

Copy link

cit-pr-commenter bot commented Nov 21, 2024

Go Package Import Differences

Baseline: bcfd6ab
Comparison: 6b8d1d8

binaryosarchchange
agentlinuxamd64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
agentlinuxarm64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
agentwindowsamd64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
agentdarwinamd64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
agentdarwinarm64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
iot-agentlinuxamd64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
iot-agentlinuxarm64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
heroku-agentlinuxamd64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
cluster-agentlinuxamd64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream
cluster-agentlinuxarm64
+2, -0
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/proto
+github.com/DataDog/datadog-agent/comp/core/autodiscovery/stream

@pgimalac pgimalac force-pushed the pgimalac/add-remote-autodiscovery branch from 8f9a959 to 9b5586c Compare November 27, 2024 09:52
@pgimalac pgimalac marked this pull request as ready for review November 27, 2024 12:59
@adel121
Copy link
Contributor

adel121 commented Nov 28, 2024

Hello @pgimalac

Could you please add more details to the PR description?

I feel like I am missing a lot of context about what (and why) we are trying to achieve here.

@pgimalac pgimalac changed the title [ASCII-2510] Add remote-autodiscovery config server to API [ASCII-2510] Add remote-autodiscovery scheduler streaming endpoint Nov 29, 2024
@pgimalac pgimalac added the qa/done QA done before merge and regressions are covered by tests label Dec 6, 2024
@agent-platform-auto-pr
Copy link
Contributor

Package size comparison

Comparison with ancestor bcfd6abb95c101caf619f5b2290a27b489ab3056

Diff per package
package diff status size ancestor threshold
datadog-agent-amd64-deb 0.27MB ⚠️ 1270.94MB 1270.67MB 140.00MB
datadog-iot-agent-amd64-deb 0.07MB ⚠️ 113.26MB 113.20MB 10.00MB
datadog-dogstatsd-amd64-deb 0.08MB ⚠️ 78.40MB 78.32MB 10.00MB
datadog-heroku-agent-amd64-deb 0.17MB ⚠️ 526.62MB 526.45MB 70.00MB
datadog-agent-x86_64-rpm 0.27MB ⚠️ 1280.17MB 1279.91MB 140.00MB
datadog-agent-x86_64-suse 0.27MB ⚠️ 1280.17MB 1279.91MB 140.00MB
datadog-iot-agent-x86_64-rpm 0.07MB ⚠️ 113.33MB 113.26MB 10.00MB
datadog-iot-agent-x86_64-suse 0.07MB ⚠️ 113.33MB 113.26MB 10.00MB
datadog-dogstatsd-x86_64-rpm 0.08MB ⚠️ 78.47MB 78.40MB 10.00MB
datadog-dogstatsd-x86_64-suse 0.08MB ⚠️ 78.47MB 78.40MB 10.00MB
datadog-agent-arm64-deb 0.21MB ⚠️ 1005.05MB 1004.85MB 140.00MB
datadog-iot-agent-arm64-deb 0.07MB ⚠️ 108.74MB 108.67MB 10.00MB
datadog-dogstatsd-arm64-deb 0.06MB ⚠️ 55.65MB 55.59MB 10.00MB
datadog-agent-aarch64-rpm 0.21MB ⚠️ 1014.27MB 1014.06MB 140.00MB
datadog-iot-agent-aarch64-rpm 0.07MB ⚠️ 108.81MB 108.74MB 10.00MB

Decision

⚠️ Warning

Copy link
Contributor

@adel121 adel121 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM for container-platform files

@pgimalac
Copy link
Member Author

/merge

@dd-devflow
Copy link

dd-devflow bot commented Dec 11, 2024

Devflow running: /merge

View all feedbacks in Devflow UI.


2024-12-11 13:44:48 UTC ℹ️ MergeQueue: pull request added to the queue

The median merge time in main is 24m.


2024-12-11 14:24:17 UTC 🚨 MergeQueue: This merge request is in error

mergequeue build completed successfully, but the github api returned an error while merging the pr.
GitHub returned an error during the merge attempt. This is a known issue that can often be resolved by retrying the merge request in an hour.

Details

Error: PUT https://api.github.com/repos/DataDog/datadog-agent/pulls/31324/merge: 405 Merge already in progress []

FullStacktrace:
activity error (type: github.GithubService_MergePullRequest, scheduledEventID: 41, startedEventID: 42, identity: 1@github-worker-8b7455884-xxmms@): PUT https://api.github.com/repos/DataDog/datadog-agent/pulls/31324/merge: 405 Merge already in progress [] (type: GitFailure, retryable: false): PUT https://api.github.com/repos/DataDog/datadog-agent/pulls/31324/merge: 405 Merge already in progress [] (type: ErrorResponse, retryable: true)

@pgimalac
Copy link
Member Author

/merge

@dd-devflow
Copy link

dd-devflow bot commented Dec 11, 2024

Devflow running: /merge

View all feedbacks in Devflow UI.


2024-12-11 14:29:59 UTC ℹ️ MergeQueue: pull request added to the queue

The median merge time in main is 24m.


2024-12-11 15:01:36 UTC ℹ️ MergeQueue: This merge request was merged

@dd-mergequeue dd-mergequeue bot merged commit 2ef9618 into main Dec 11, 2024
220 checks passed
@dd-mergequeue dd-mergequeue bot deleted the pgimalac/add-remote-autodiscovery branch December 11, 2024 15:01
@github-actions github-actions bot added this to the 7.62.0 milestone Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog/no-changelog long review PR is complex, plan time to review it qa/done QA done before merge and regressions are covered by tests team/agent-shared-components
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants