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

Cherry-pick #20717 to 7.x: Improve registry file migration performance #20768

Merged
merged 1 commit into from
Aug 25, 2020

Conversation

kvch
Copy link
Contributor

@kvch kvch commented Aug 25, 2020

Cherry-pick of PR #20717 to 7.x branch. Original message:

What does this PR do?

Ensure that fsync is called only once after the migration of old state entries is complete.

Why is it important?

The registry uses a checkpoint-predicate that when true writes all state to
disk and calls fsync. The checkpoint operation is supposed to be disabled
when migration the old registry file.
During migration the old state will be directly copied (after cleanup
and schema changes are applied). The old state will only be deleted
after the migration of all states is complete.

Unfortunately the checkpoint predicate did return true, instead of
false, which did trigger a checkpoint operation per state to be
migrated. The fix disables fsync, and now finalizes the migration by
calling Checkpoint directly.

The PR also provides a benchmark (each "op" is one migration attempt). Before this fix (go test did kill the run after 10min for 10k entries):

BenchmarkMigration0To1/1-32  	             286	   4203353 ns/op
BenchmarkMigration0To1/10-32 	              34	  35730680 ns/op
BenchmarkMigration0To1/100-32         	       2	 720890839 ns/op
BenchmarkMigration0To1/1000-32        	       1	31633569085 ns/op
... test timed out after 10min

Benchmark results with fix (migration 100k entries took ~7.6s):

BenchmarkMigration0To1/1-32  	             274	   4371400 ns/op
BenchmarkMigration0To1/10-32 	             259	   4639209 ns/op
BenchmarkMigration0To1/100-32         	     100	  13374147 ns/op
BenchmarkMigration0To1/1000-32        	      13	 104220944 ns/op
BenchmarkMigration0To1/10000-32       	       2	 916656798 ns/op
BenchmarkMigration0To1/100000-32      	       1	7616648790 ns/op
PASS

Checklist

  • My code follows the style guidelines of this project
  • I have commented my code, particularly in hard-to-understand areas
    - [ ] I have made corresponding changes to the documentation
    - [ ] I have made corresponding change to the default configuration files
  • I have added tests that prove my fix is effective or that my feature works
  • I have added an entry in CHANGELOG.next.asciidoc or CHANGELOG-developer.next.asciidoc.

Related issues

## What does this PR do?

Ensure that fsync is called only once after the migration of old state entries is complete.

## Why is it important?

The registry uses a checkpoint-predicate that when true writes all state to
disk and calls fsync. The checkpoint operation is supposed to be disabled
when migration the old registry file.
During migration, the old state will be directly copied (after cleanup
and schema changes are applied). The old state will only be deleted
after the migration of all states is complete.

Unfortunately, the checkpoint predicate did return true, instead of
false, which did trigger a checkpoint operation per state to be
migrated. The fix disables fsync, and now finalizes the migration by
calling Checkpoint directly.

The PR also provides a benchmark (each "op" is one migration attempt). Before this fix (go test did kill the run after 10min for 10k entries):

```
BenchmarkMigration0To1/1-32  	             286	   4203353 ns/op
BenchmarkMigration0To1/10-32 	              34	  35730680 ns/op
BenchmarkMigration0To1/100-32         	       2	 720890839 ns/op
BenchmarkMigration0To1/1000-32        	       1	31633569085 ns/op
... test timed out after 10min
```

Benchmark results with the fix (migration 100k entries took ~7.6s):

```
BenchmarkMigration0To1/1-32  	             274	   4371400 ns/op
BenchmarkMigration0To1/10-32 	             259	   4639209 ns/op
BenchmarkMigration0To1/100-32         	     100	  13374147 ns/op
BenchmarkMigration0To1/1000-32        	      13	 104220944 ns/op
BenchmarkMigration0To1/10000-32       	       2	 916656798 ns/op
BenchmarkMigration0To1/100000-32      	       1	7616648790 ns/op
PASS
```

Closes elastic#20705

(cherry picked from commit 03748b3)
@kvch kvch added [zube]: In Review backport Team:Services (Deprecated) Label for the former Integrations-Services team labels Aug 25, 2020
@elasticmachine
Copy link
Collaborator

Pinging @elastic/integrations-services (Team:Services)

@botelastic botelastic bot added needs_team Indicates that the issue/PR needs a Team:* label and removed needs_team Indicates that the issue/PR needs a Team:* label labels Aug 25, 2020
@elasticmachine
Copy link
Collaborator

💔 Tests Failed

Pipeline View Test View Changes Artifacts preview

Expand to view the summary

Build stats

  • Build Cause: [Pull request #20768 opened]

  • Start Time: 2020-08-25T07:43:34.417+0000

  • Duration: 73 min 31 sec

Test stats 🧪

Test Results
Failed 14
Passed 17971
Skipped 1847
Total 19832

Test errors

Expand to view the tests failures

  • Name: Build and Test / Auditbeat oss Mac OS X / TestEventReader – file_integrity

    • Age: 1
    • Duration: 1.05
    • Error Details: Failed
  • Name: Build and Test / Auditbeat oss Mac OS X / TestEventReader/created – file_integrity

    • Age: 1
    • Duration: 1
    • Error Details: Failed
  • Name: Build and Test / Auditbeat oss Mac OS X / TestRaces – file_integrity

    • Age: 1
    • Duration: 1.36
    • Error Details: Failed
  • Name: Build and Test / Auditbeat oss Linux / test_dashboards – auditbeat.tests.system.test_base.Test

    • Age: 1
    • Duration: 0.339
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_dev_tool_export_dashboard_by_id – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.279
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_dev_tool_export_dashboard_by_id_from_space – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.313
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_dev_tool_export_dashboard_from_yml – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.151
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_export_dashboard_cmd_export_dashboard_by_id – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.143
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_export_dashboard_cmd_export_dashboard_by_id_and_decoding – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.314
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_export_dashboard_cmd_export_dashboard_from_yml – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.217
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_load_dashboard – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.284
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_load_dashboard_into_space – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.958
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_load_only_index_patterns – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.277
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1
  • Name: Build and Test / Libbeat / Libbeat oss / test_load_without_dashboard – libbeat.tests.system.test_dashboard.Test

    • Age: 1
    • Duration: 0.175
    • Error Details: AssertionError: Expected exit code to be 0, but it was 1

Steps errors

Expand to view the steps failures

  • Name: Mage build test

    • Description: mage build test

    • Duration: 12 min 13 sec

    • Start Time: 2020-08-25T08:07:27.751+0000

    • log

  • Name: Mage build unitTest

    • Description: mage build unitTest

    • Duration: 2 min 15 sec

    • Start Time: 2020-08-25T08:27:20.784+0000

    • log

  • Name: Recursively delete the current directory from the workspace

    • Description: script returned exit code 1

    • Duration: 0 min 10 sec

    • Start Time: 2020-08-25T08:29:44.568+0000

    • log

  • Name: Mage build test

    • Description: mage build test

    • Duration: 33 min 24 sec

    • Start Time: 2020-08-25T08:07:26.723+0000

    • log

Log output

Expand to view the last 100 lines of log output

[2020-08-25T08:55:11.512Z] [Google Cloud Storage Plugin] Downloading: Beats/beats/PR-20768-1/source/source.tgz to local path: /var/lib/jenkins/workspace/Beats_beats_PR-20768/source.tgz
[2020-08-25T08:55:21.531Z] + tar --version
[2020-08-25T08:55:21.849Z] + tar -xpf source.tgz
[2020-08-25T08:55:32.207Z] + rm source.tgz
[2020-08-25T08:55:32.232Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats
[2020-08-25T08:55:32.281Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Lint
[2020-08-25T08:55:32.444Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Elastic-Agent-x-pack
[2020-08-25T08:55:32.607Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Winlogbeat-oss
[2020-08-25T08:55:32.767Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-crosscompile
[2020-08-25T08:55:32.932Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/dockerlogbeat
[2020-08-25T08:55:33.095Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Generators-Metricbeat-Linux
[2020-08-25T08:55:33.257Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Journalbeat
[2020-08-25T08:55:33.420Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Functionbeat-x-pack
[2020-08-25T08:55:33.584Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Packetbeat-Linux
[2020-08-25T08:55:33.854Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Elastic-Agent-x-pack-Windows
[2020-08-25T08:55:34.022Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-OSS-Unit-tests
[2020-08-25T08:55:34.183Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Heartbeat-oss
[2020-08-25T08:55:34.343Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-crosscompile
[2020-08-25T08:55:34.507Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Winlogbeat-Windows-x-pack
[2020-08-25T08:55:34.673Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Heartbeat-Windows
[2020-08-25T08:55:34.841Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-oss-Windows
[2020-08-25T08:55:35.010Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-x-pack-Windows
[2020-08-25T08:55:35.177Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-x-pack
[2020-08-25T08:55:35.340Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-oss-Linux
[2020-08-25T08:55:35.506Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Filebeat-x-pack-Windows
[2020-08-25T08:55:35.672Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Filebeat-Windows
[2020-08-25T08:55:35.852Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Winlogbeat-Windows
[2020-08-25T08:55:36.018Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Functionbeat-Windows
[2020-08-25T08:55:36.185Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Libbeat-x-pack
[2020-08-25T08:55:36.351Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Packetbeat-Windows
[2020-08-25T08:55:36.518Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack-Windows
[2020-08-25T08:55:36.684Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-Windows
[2020-08-25T08:55:36.851Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Generators-Beat-Linux
[2020-08-25T08:55:37.016Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-oss-Mac-OS-X
[2020-08-25T08:55:37.181Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Filebeat-x-pack-Mac-OS-X
[2020-08-25T08:55:37.347Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Elastic-Agent-Mac-OS-X
[2020-08-25T08:55:37.513Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Filebeat-Mac-OS-X
[2020-08-25T08:55:37.683Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Auditbeat-x-pack-Mac-OS-X
[2020-08-25T08:55:37.849Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Filebeat-x-pack
[2020-08-25T08:55:38.015Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-Mac-OS-X
[2020-08-25T08:55:38.179Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Packetbeat-Mac-OS-X
[2020-08-25T08:55:38.341Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack-Mac-OS-X
[2020-08-25T08:55:38.503Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Functionbeat-Mac-OS-X-x-pack
[2020-08-25T08:55:38.669Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Filebeat-oss
[2020-08-25T08:55:38.831Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-OSS-Go-Integration-tests
[2020-08-25T08:55:38.990Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Libbeat-oss
[2020-08-25T08:55:39.153Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Generators-Beat-Mac-OS-X
[2020-08-25T08:55:39.316Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Heartbeat-Mac-OS-X
[2020-08-25T08:55:39.479Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-OSS-Python-Integration-tests
[2020-08-25T08:55:39.644Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Generators-Metricbeat-Mac-OS-X
[2020-08-25T08:55:39.808Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack
[2020-08-25T08:55:40.329Z] + cat
[2020-08-25T08:55:40.329Z] + /usr/local/bin/runbld ./runbld-script --job-name elastic+beats+pull-request
[2020-08-25T08:55:40.329Z] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[2020-08-25T08:55:46.918Z] runbld>>> runbld started
[2020-08-25T08:55:46.918Z] runbld>>> 1.6.12/f45d832f2ba0aa2722ab4ec1fda8ad140f027f8b
[2020-08-25T08:55:47.866Z] runbld>>> The following profiles matched the job 'elastic+beats+pull-request' in order of occurrence in the config (last value wins).
[2020-08-25T08:55:47.866Z] runbld>>> Matches in the system config:
[2020-08-25T08:55:47.866Z] runbld>>> - Matched ^elastic\+beats
[2020-08-25T08:55:47.866Z] runbld>>> - Matched ^elastic\+beats\+pull-request
[2020-08-25T08:55:49.251Z] runbld>>> Debug logging enabled.
[2020-08-25T08:55:49.251Z] runbld>>> Storing result
[2020-08-25T08:55:49.251Z] runbld>>> Store result: created {:total 2, :successful 2, :failed 0} 1
[2020-08-25T08:55:49.251Z] runbld>>> BUILD: https://c150076387b5421f9154dfbf536e5c60.us-west1.gcp.cloud.es.io:9243/build-1597739501209/t/20200825085548-034FA598
[2020-08-25T08:55:49.251Z] runbld>>> Adding system facts.
[2020-08-25T08:55:50.637Z] runbld>>> Adding vcs info for the latest commit:  bfc711b2c03d998f738119550f75c631f021a73a
[2020-08-25T08:55:50.637Z] runbld>>> >>>>>>>>>>>> SCRIPT EXECUTION BEGIN >>>>>>>>>>>>
[2020-08-25T08:55:50.637Z] runbld>>> Adding /usr/lib/jvm/java-8-openjdk-amd64/bin to the path.
[2020-08-25T08:55:50.637Z] Processing JUnit reports with runbld...
[2020-08-25T08:55:50.637Z] + echo 'Processing JUnit reports with runbld...'
[2020-08-25T08:55:50.899Z] runbld>>> <<<<<<<<<<<< SCRIPT EXECUTION END <<<<<<<<<<<<
[2020-08-25T08:55:50.899Z] runbld>>> DURATION: 30ms
[2020-08-25T08:55:50.899Z] runbld>>> STDOUT: 40 bytes
[2020-08-25T08:55:50.899Z] runbld>>> STDERR: 49 bytes
[2020-08-25T08:55:50.899Z] runbld>>> WRAPPED PROCESS: SUCCESS (0)
[2020-08-25T08:55:50.899Z] runbld>>> Searching for build metadata in /var/lib/jenkins/workspace/Beats_beats_PR-20768
[2020-08-25T08:55:51.842Z] runbld>>> Storing build metadata: 
[2020-08-25T08:55:51.842Z] runbld>>> Adding test report.
[2020-08-25T08:55:51.842Z] runbld>>> Searching for junit test output files with the pattern: TEST-.*\.xml$ in: /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats
[2020-08-25T08:55:52.415Z] runbld>>> Found 136 test output files
[2020-08-25T08:55:54.334Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-openmetrics.xml
[2020-08-25T08:55:54.334Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-activemq.xml
[2020-08-25T08:55:54.334Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-iis.xml
[2020-08-25T08:55:54.334Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-istio.xml
[2020-08-25T08:55:54.334Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-tomcat.xml
[2020-08-25T08:55:54.334Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-OSS-Go-Integration-tests/metricbeat/build/TEST-go-integration-graphite.xml
[2020-08-25T08:55:54.595Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats_PR-20768/src/github.com/elastic/beats/Metricbeat-OSS-Go-Integration-tests/metricbeat/build/TEST-go-integration-windows.xml
[2020-08-25T08:55:55.981Z] runbld>>> Test output logs contained: Errors: 0 Failures: 14 Tests: 19681 Skipped: 1569
[2020-08-25T08:55:55.981Z] runbld>>> Storing result
[2020-08-25T08:55:55.981Z] runbld>>> FAILURES: 14
[2020-08-25T08:55:59.280Z] runbld>>> Store result: updated {:total 2, :successful 2, :failed 0} 2
[2020-08-25T08:55:59.280Z] runbld>>> BUILD: https://c150076387b5421f9154dfbf536e5c60.us-west1.gcp.cloud.es.io:9243/build-1597739501209/t/20200825085548-034FA598
[2020-08-25T08:55:59.280Z] runbld>>> Email notification disabled by environment variable.
[2020-08-25T08:55:59.280Z] runbld>>> Slack notification disabled by environment variable.
[2020-08-25T08:56:04.847Z] Running on Jenkins in /var/lib/jenkins/workspace/Beats_beats_PR-20768
[2020-08-25T08:56:05.021Z] [INFO] getVaultSecret: Getting secrets
[2020-08-25T08:56:05.090Z] Masking supported pattern matches of $VAULT_ADDR or $VAULT_ROLE_ID or $VAULT_SECRET_ID
[2020-08-25T08:56:06.142Z] + chmod 755 generate-build-data.sh
[2020-08-25T08:56:06.143Z] + ./generate-build-data.sh https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats/PR-20768/ https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats/PR-20768/runs/1 FAILURE 4351454
[2020-08-25T08:56:06.143Z] INFO: curl https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats/PR-20768/runs/1/steps/?limit=10000 -o steps-info.json

@kvch kvch merged commit 6aa76e0 into elastic:7.x Aug 25, 2020
@zube zube bot removed the [zube]: Done label Nov 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport Team:Services (Deprecated) Label for the former Integrations-Services team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants