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

[RELEASE] Release version 1.3.0 #889

Closed
34 tasks done
github-actions bot opened this issue Nov 5, 2021 · 15 comments
Closed
34 tasks done

[RELEASE] Release version 1.3.0 #889

github-actions bot opened this issue Nov 5, 2021 · 15 comments
Assignees

Comments

@github-actions
Copy link
Contributor

github-actions bot commented Nov 5, 2021

Release OpenSearch and OpenSearch Dashboards 1.3.0

I noticed that a manifest was automatically created in manifests/1.3.0. Please follow the following checklist to make a release.

How to use this issue

This Release Issue

This issue captures the state of the OpenSearch release, its assignee is responsible for driving the release. Please contact them or @mention them on this issue for help. There are linked issues on components of the release where individual components can be tracked.

Release Steps

There are several steps to the release process, these steps are completed as the whole release and components that are behind present risk to the release. The release owner completes the tasks in this ticket, whereas component owners resolve tasks on their ticket in their repositories.

Steps have completion dates for coordinating efforts between the components of a release; components can start as soon as they are ready far in advance of a future release.

Component List

To aid in understanding the state of the release there is a table with status indicating each component state. This is updated based on the status of the component issues.

Preparation

  • Assign this issue to a release owner.
  • Declare a pencils down date for new features to be merged
  • March 1st is pencils down for feature freeze.
  • Update the Campaigns section to include monitoring campaigns during this release.
  • Update this issue so all RELEASE- placeholders have actual dates.
  • Document any new quality requirements or changes.
  • Declare a pencils down date for new features to be merged.
  • Finalize scope and feature set and update the Public Roadmap.
  • Create a version label in each component repo.
  • Create a release issue in every component repo that links back to this issue, update Components section with these links.
  • Ensure that all release issues created above are assigned to an owner in the component team.

CI/CD (Feature Freeze) - March 1st

Campaigns

Code Complete - Ends March 13th

  • Code Complete (March 1st - March 9th): The code corresponding to a specific release is ready and the branch 1.3 is added to the manifest.
  • Verify pull requests to add each component to manifests/1.3.0/opensearch-1.3.0.yml has been merged.

Release testing - March 15th - March 16th

  • Declare a release candidate build, and publish all test results.
  • Sanity Testing (March 15th - March 16th): Sanity testing and fixing of critical issues found by teams. Teams test their component within the distribution, ensuring integration, backwards compatibility, and perf tests pass.

Release - March 17th

  • Verify all issued labeled v1.3.0 in all projects have been resolved.
  • Complete documentation for this release.
  • Author blog post for this release.
  • Gather, review and publish release notes.
  • March 17th- Publish this release on opensearch.org.
  • March 17th - Publish blog post - release is launched!

Post Release

Components

Replace with links to all component tracking issues.

Component On track Notes
opensearch-project/OpenSearch#2257 🟢 Released
opensearch-project/OpenSearch-Dashboards#1282 🟢 Released
opensearch-project/alerting#314 🟢 Released
opensearch-project/alerting-dashboards-plugin#179 🟢 Released
opensearch-project/anomaly-detection#383 🟢 Released
opensearch-project/anomaly-detection-dashboards-plugin#182 🟢 Released
opensearch-project/asynchronous-search#97 🟢 Released
opensearch-project/common-utils#120 🟢 Released
opensearch-project/reporting#288 🟢 Released
opensearch-project/dashboards-visualizations#50 🟢 Released
opensearch-project/index-management#277 🟢 Released
opensearch-project/index-management-dashboards-plugin#152 🟢 Released
opensearch-project/job-scheduler#129 🟢 Released
opensearch-project/k-NN#300 🟢 Released
opensearch-project/performance-analyzer#142 🟢 Released
opensearch-project/security#1643 🟢 Released
opensearch-project/security-dashboards-plugin#910 🟢 Released
opensearch-project/sql#448 🟢 Released
opensearch-project/cross-cluster-replication#313 🟢 Released
opensearch-project/observability#503 🟢 Released
opensearch-project/ml-commons#155 🟢 Released
Legend

Symbol Meaning
🟢 On track with overall release
🟡 Missed last milestone
🔴 Missed multiple milestones

Issue:

Retro section:

@tmarkley
Copy link
Contributor

tmarkley commented Dec 6, 2021

When are the component issues going to be created?

@dblock
Copy link
Member

dblock commented Dec 6, 2021

When are the component issues going to be created?

Once all the items above are done, ie. we don't have a release owner for 1.3 AFAIK or dates, cc: @bbarani

@eugenesk24
Copy link
Contributor

eugenesk24 commented Feb 11, 2022

Added insights-and-visualizations components to 1.3 manifest (ganttCharts, reporting, observability, workbench)
#1617 #1615

@peternied
Copy link
Member

@zelinh Much of the preparation for release 1.3 hasn't been complete, can this be updated so we can be sure of the dates/deliverables?

@zelinh
Copy link
Member

zelinh commented Feb 28, 2022

Release version 1.3 opensearch-project/observability#503

Thanks for reminding. Updated with the dates.

@peterzhuamazon
Copy link
Member

Issue: opensearch-project/k-NN#306

@peterzhuamazon
Copy link
Member

@zelinh
Copy link
Member

zelinh commented Mar 15, 2022

Release testing

We have new Artifacts built and ready for testing.


  • Use Docker-Compose to setup a cluster

    • Download this gist as docker-compose.yml on your machine
    • Get latest image versions docker-compose pull
    • Start the cluster docker-compose up
  • OpenSearch docker

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch:1.3.0 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:1.3.0
      • Connect command curl https://localhost:9200
    • Start with security
      • Docker command docker pull opensearchstaging/opensearch:1.3.0 && docker run -it -p 9200:9200 -e "discovery.type=single-node" opensearchstaging/opensearch:1.3.0
      • Connect command curl --insecure https://admin:admin@localhost:9200
  • OpenSearch-Dashboards docker

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.0 && docker run -it --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:1.3.0
      • URL https://localhost:5601
    • Start without security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.0 && docker run -it --network="host" opensearchstaging/opensearch-dashboards:1.3.0
      • URL https://localhost:5601
  • Use TARs to deploy OpenSearch Manually (Updated 03/15/2022 13:00 PDT)

From Docker Release

@zelinh
Copy link
Member

zelinh commented Mar 15, 2022

Integration tests for OpenSearch have been run, and here are the results.

ARM64
Jenkins Integ-test Job number 478

2022-03-15 22:03:36 INFO     | alerting             | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | alerting             | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | anomaly-detection    | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | anomaly-detection    | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | asynchronous-search  | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | asynchronous-search  | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | dashboards-reports   | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | index-management     | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | index-management     | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | k-NN                 | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | k-NN                 | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | ml-commons           | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | ml-commons           | without-security     | PASS  |    0 |
2022-03-15 22:03:36 INFO     | sql                  | with-security        | PASS  |    0 |
2022-03-15 22:03:36 INFO     | sql                  | without-security     | PASS  |    0 |

x64
Jenkins Integ-test Job number 479

2022-03-16 01:11:59 INFO     | alerting             | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | alerting             | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | anomaly-detection    | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | anomaly-detection    | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | asynchronous-search  | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | asynchronous-search  | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | dashboards-reports   | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | index-management     | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | index-management     | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | k-NN                 | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | k-NN                 | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | ml-commons           | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | ml-commons           | without-security     | PASS  |    0 |
2022-03-16 01:11:59 INFO     | sql                  | with-security        | PASS  |    0 |
2022-03-16 01:11:59 INFO     | sql                  | without-security     | PASS  |    0 |

@kavilla
Copy link
Member

kavilla commented Mar 16, 2022

UPDATE:

  • plugins/alerting-dashboards-plugin manually running the steps in this test passed
       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  plugins/alerting-dashboards-plugin/      01:14        3        3        -        -        - │
  │    acknowledge_alerts_modal_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      02:13        5        5        -        -        - │
  │    alert_spec.js                                                                               │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      01:19        2        2        -        -        - │
  │    alerts_dashboard_flyout_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:41        4        4        -        -        - │
  │    bucket_level_monitor_spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:11        4        4        -        -        - │
  │    destination_spec.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:16        4        4        -        -        - │
  │    query_level_monitor_spec.js                                                                 │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        05:55       22       22        -        -        -  

  • plugins/observability-dashboards manually running all pass locally
       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  plugins/observability-dashboards/ap      02:20       20       16        -        4        - │
  │    p_analytics.spec.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/ev      01:44       24       22        -        2        - │
  │    ent_analytics.spec.js                                                                       │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/no      04:08       28       26        -        2        - │
  │    tebooks.spec.js                                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/pa      07:07       26       26        -        -        - │
  │    nels.spec.js                                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:37        8        4        -        4        - │
  │    ace_analytics_dashboard.spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:28        6        5        -        1        - │
  │    ace_analytics_services.spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:29        5        5        -        -        - │
  │    ace_analytics_traces.spec.js                                                                │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        16:55      117      104        -       13        -  
  • plugins/anomaly-detection-dashboards-plugin manually running all pass locally
       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  plugins/anomaly-detection-dashboard      00:14        1        1        -        -        - │
  │    s-plugin/create_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:10        8        8        -        -        - │
  │    s-plugin/dashboard_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:08        5        5        -        -        - │
  │    s-plugin/detector_configuration_spe                                                         │
  │    c.js                                                                                        │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:14       11       11        -        -        - │
  │    s-plugin/detector_list_spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      01:05        6        6        -        -        - │
  │    s-plugin/historical_analysis_spec.j                                                         │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:09        6        6        -        -        - │
  │    s-plugin/overview_spec.js                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:08        3        3        -        -        - │
  │    s-plugin/real_time_results_spec.js                                                          │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:15        3        3        -        -        - │
  │    s-plugin/sample_detector_spec.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        02:24       43       43        -        -        -  

Core OpenSearch Dashboards:

  • Use Docker-Compose to setup a cluster [SMOKE TEST PASSED]
  • Docker command [SMOKE TEST PASSED]
    • However for no security I believe there is a typo curl https://localhost:5601 ~~> http://localhost:5601

Integ-test (with-security):

      Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  core-opensearch-dashboards/opensear      00:32       34       34        -        -        - │
  │    ch-dashboards/dashboard_sanity_test                                                         │
  │    _spec.js                                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      01:13        3        3        -        -        - │
  │    acknowledge_alerts_modal_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      02:12        5        5        -        -        - │
  │    alert_spec.js                                                                               │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      01:19        2        2        -        -        - │
  │    alerts_dashboard_flyout_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:41        4        4        -        -        - │
  │    bucket_level_monitor_spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:11        4        4        -        -        - │
  │    destination_spec.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:16        4        4        -        -        - │
  │    query_level_monitor_spec.js                                                                 │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:13        1        1        -        -        - │
  │    s-plugin/create_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:10        8        8        -        -        - │
  │    s-plugin/dashboard_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:08        5        5        -        -        - │
  │    s-plugin/detector_configuration_spe                                                         │
  │    c.js                                                                                        │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:14       11       11        -        -        - │
  │    s-plugin/detector_list_spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      01:05        6        6        -        -        - │
  │    s-plugin/historical_analysis_spec.j                                                         │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:08        6        6        -        -        - │
  │    s-plugin/overview_spec.js                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:07        3        3        -        -        - │
  │    s-plugin/real_time_results_spec.js                                                          │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:15        3        3        -        -        - │
  │    s-plugin/sample_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/gantt-chart-dashboards/gant      00:25        9        9        -        -        - │
  │    t_ui.spec.js                                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:18        3        3        -        -        - │
  │    -plugin/indices_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      01:00        5        5        -        -        - │
  │    -plugin/managed_indices_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:18        5        5        -        -        - │
  │    -plugin/policies_spec.js                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:28        4        4        -        -        - │
  │    -plugin/rollups_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:18        4        4        -        -        - │
  │    -plugin/transforms_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/ap      02:42       20        9        1        2        8 │
  │    p_analytics.spec.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/ev      01:43       24       22        -        2        - │
  │    ent_analytics.spec.js                                                                       │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/no      04:05       28       26        -        2        - │
  │    tebooks.spec.js                                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/pa      08:08       26       25        1        -        - │
  │    nels.spec.js                                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:36        8        4        -        4        - │
  │    ace_analytics_dashboard.spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:28        6        5        -        1        - │
  │    ace_analytics_services.spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:28        5        5        -        -        - │
  │    ace_analytics_traces.spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/query-workbench-dashboards/      01:21       20       20        -        -        - │
  │    ui.spec.js                                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/01-creat      04:07       14       14        -        -        - │
  │    e.spec.js                                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/02-edit.      01:20        3        3        -        -        - │
  │    spec.js                                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/03-detai      01:57        6        6        -        -        - │
  │    ls.spec.js                                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/04-downl      01:15        5        5        -        -        - │
  │    oad.spec.js                                                                                 │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/audit_log_spec.js       00:05        4        4        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/auth_spec.js            00:03        2        2        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/get_started_spec.j      00:07        8        8        -        -        - │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/internalusers_spec      00:05        4        4        -        -        - │
  │    .js                                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/permissions_spec.j      00:07        5        5        -        -        - │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/roles_spec.js           00:05        4        4        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/tenants_spec.js         00:04        2        2        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  2 of 40 failed (5%)                      40:36      323      302        2       11        8  

Integ-test (with-security):

       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  core-opensearch-dashboards/opensear      00:28       34       34        -        -        - │
  │    ch-dashboards/dashboard_sanity_test                                                         │
  │    _spec.js                                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/alerting-dashboards-plugin/      02:34        3        1        2        -        - │
  │    acknowledge_alerts_modal_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      02:13        5        5        -        -        - │
  │    alert_spec.js                                                                               │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      01:19        2        2        -        -        - │
  │    alerts_dashboard_flyout_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:38        4        4        -        -        - │
  │    bucket_level_monitor_spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:10        4        4        -        -        - │
  │    destination_spec.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      00:15        4        4        -        -        - │
  │    query_level_monitor_spec.js                                                                 │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/anomaly-detection-dashboard      00:13        1        -        1        -        - │
  │    s-plugin/create_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:08        8        8        -        -        - │
  │    s-plugin/dashboard_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/anomaly-detection-dashboard      01:07        5        4        1        -        - │
  │    s-plugin/detector_configuration_spe                                                         │
  │    c.js                                                                                        │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:13       11       11        -        -        - │
  │    s-plugin/detector_list_spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      01:03        6        6        -        -        - │
  │    s-plugin/historical_analysis_spec.j                                                         │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/anomaly-detection-dashboard      02:05        6        4        2        -        - │
  │    s-plugin/overview_spec.js                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:06        3        3        -        -        - │
  │    s-plugin/real_time_results_spec.js                                                          │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:12        3        3        -        -        - │
  │    s-plugin/sample_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/gantt-chart-dashboards/gant      00:24        9        9        -        -        - │
  │    t_ui.spec.js                                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/index-management-dashboards      01:15        3        2        1        -        - │
  │    -plugin/indices_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:58        5        5        -        -        - │
  │    -plugin/managed_indices_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:18        5        5        -        -        - │
  │    -plugin/policies_spec.js                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:25        4        4        -        -        - │
  │    -plugin/rollups_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      00:18        4        4        -        -        - │
  │    -plugin/transforms_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/ap      02:19       20       16        -        4        - │
  │    p_analytics.spec.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/ev      01:43       24       22        -        2        - │
  │    ent_analytics.spec.js                                                                       │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/no      04:05       28       26        -        2        - │
  │    tebooks.spec.js                                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/pa      07:07       26       26        -        -        - │
  │    nels.spec.js                                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:38        8        4        -        4        - │
  │    ace_analytics_dashboard.spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:28        6        5        -        1        - │
  │    ace_analytics_services.spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/tr      00:28        5        5        -        -        - │
  │    ace_analytics_traces.spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/query-workbench-dashboards/      01:21       20       20        -        -        - │
  │    ui.spec.js                                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/01-creat      04:06       14       14        -        -        - │
  │    e.spec.js                                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/02-edit.      01:20        3        3        -        -        - │
  │    spec.js                                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/03-detai      01:57        6        6        -        -        - │
  │    ls.spec.js                                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/04-downl      01:15        5        5        -        -        - │
  │    oad.spec.js                                                                                 │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/audit_log_spec.js         1ms        -        -        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/auth_spec.js              1ms        -        -        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/get_started_spec.j        1ms        -        -        -        -        - │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/internalusers_spec        1ms        -        -        -        -        - │
  │    .js                                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/permissions_spec.j        1ms        -        -        -        -        - │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/roles_spec.js             1ms        -        -        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/tenants_spec.js           1ms        -        -        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  5 of 40 failed (13%)                     43:24      294      274        7       13        -  

Note: still working on the flakiness of the tests. Will verify the failures are due to the tests.

BWC Tests:

ARM64:

2022-03-16 23:42:51 INFO     | OpenSearch-Dashboards | with-security        | PASS  |    0 |
2022-03-16 23:42:51 INFO     | OpenSearch-Dashboards | without-security     | PASS  |    0 |

x64:

2022-03-16 23:32:02 INFO     | OpenSearch-Dashboards | with-security        | PASS  |    0 |
2022-03-16 23:32:02 INFO     | OpenSearch-Dashboards | without-security     | PASS  |    0 |

@kotwanikunal
Copy link
Member

Performance Test Results for 1.3

Product/ Version
Architecture
Description Instance Type Workload Details Index Latency (ms) p50 Index Latency (ms) p90 Index Latency (ms) p99 Index Latency (ms) p100 Index Throughput (docs/s) p0 Index Throughput (docs/s) p50 Index Throughput (docs/s) p100 Index Throughput (docs/s) Ops Count Index Operation Counts Op Error Count Index Operation Counts Error Rate Query Latency (ms) p50 Query Latency (ms) p90 Query Latency (ms) p99 Query Latency (ms) p100 Query Throughput (docs/s) p0 Query Throughput (docs/s) p50 Query Throughput (docs/s) p100 Query Operation Counts Ops Count Query Operation Counts Op Error Count Error Rate****Query** Operation Counts** CPU (%) p50 CPU (%) p90 CPU (%) p99 CPU (%) p100 Memory (%) p50 Memory (%) p90 Memory (%) p99 Memory (%) p100 GC (ms) Old GC (ms) Young
OpenSearch - 1.2.4 X64 With Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 2,579.861 3,520.364 6,313.868 10,723.423 8,701.994 29,726.189 35,058.828 47,092 3 0 376.264 386.332 397.261 414.355 1.726 1.739 1.752 1,510 0 0
-

-

-

-

-

-

-

-
0 1,461,734
OpenSearch - 1.2.4 X64 Without Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 2,362.598 3,236.466 5,784.684 8,857.483 31,498.318 32,766.942 39,234.711 46,806 0 0 373.703 396.696 427.153 453.192 1.728 1.741 1.755 1,510 0 0
-

-

-

-

-

-

-

-
0 1,352,970
OpenSearch - 1.2.4 ARM64 With Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 2,017.177 2,751.985 4,231.724 6,382.166 37,080.961 38,277.204 43,749.133 46,466 0 0 455.615 465.53 473.529 480.406 1.703 1.728 1.748 1,510 0 0 96 97 97 97 47 67.17 62 84 0 1,133,266
OpenSearch - 1.2.4 ARM64 Without Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 1,735.608 2,441.217 4,120.747 6,621.198 42,665.582 44,063.449 51,886.902 45,907 0 0 459.009 470.43 478.969 482.57 1.694 1.721 1.753 1,510 0 0 96 97 98 98 45 66.63 60.8 68 0 1,050,383
OpenSearch - 1.3.0 X64 With Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 2,043.519 2,758.102 4,748.371 7,043.104 36,184.391 37,770.62 44,188.625 46,434 0 0 368.594 377.903 386.466 394.664 1.731 1.742 1.753 1,510 0 0 96 97 97 97 59 86 74.5 86 417,244 1,083,631
OpenSearch - 1.3.0 X64 Without Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 1,906.334 2,577.319 4,414.418 7,146.647 39,169.781 40,723.06 48,473.305 46,130 0 0 345.892 351.94 362.478 366.735 1.727 1.742 1.757 1,510 0 0 97 98 98 98 56 82.4 73 87 282,526 993,500
OpenSearch - 1.3.0 ARM64 With Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 1,826.75 2,528.959 3,840.279 6,118.669 40,652.949 41,847.641 48,189.52 46,151 0 0 470.154 478.125 487.114 501.449 1.713 1.738 1.75 1,510 0 0 94 96 96 96 58 81 74 84 362,323 858,253
OpenSearch - 1.3.0 ARM64 Without Security m5.xlarge nyc_taxis/ 2 warmupIterations/ 3 testIterations 1,579.35 2,270.458 3,543.64 6,652.866 47,181.598 48,635.408 56,767.453 45,527 0 0 446.884 455.503 461.76 549.725 1.705 1.731 1.753 1,510 0 0 94 96 97 97 55 82 73 84 237,532 813,487

@zelinh
Copy link
Member

zelinh commented Mar 24, 2022

On release day (Mar 17, 2022)

Maven was released in this URL: https://repo1.maven.org/maven2/org/opensearch/opensearch/1.3.0/

Screen Shot 2022-03-24 at 4 21 02 PM

Screen Shot 2022-03-17 at 10 55 39 AM

Docker release: https://hub.docker.com/r/opensearchproject/opensearch/tags?page=1&name=1.3.0

@zelinh
Copy link
Member

zelinh commented Mar 24, 2022

Release 1.3.0 was completed. Closing this issue.

@zelinh zelinh closed this as completed Mar 24, 2022
@dblock
Copy link
Member

dblock commented Mar 25, 2022

The post-release items, such as increment version to 1.3.1, has not been done. I don't see working manifests in https://github.com/opensearch-project/opensearch-build/tree/main/manifests/1.3.1, reopening.

@dblock dblock reopened this Mar 25, 2022
@zelinh
Copy link
Member

zelinh commented Mar 31, 2022

Closing this since post-release items for 1.3.0 have been done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants