You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/08/22 18:55:56 UTC

[incubator-sdap-nexus] branch SDAP-483 updated (da2b45b -> 628714e)

This is an automated email from the ASF dual-hosted git repository.

rkk pushed a change to branch SDAP-483
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


    from da2b45b  SDAP-483: Added `.asf.yaml` to configure Jira auto-linking.
     add a30d09d  SDAP-482 Updated Saildrone in situ endpoint in config file (#269)
     add 3071f18  SDAP-455: Large Job Tracking (#249)
     add 2fea55a  SDAP-475 Algorithm bug fixes (#259)
     add 628714e  Merge branch 'master' into SDAP-483

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                       |   7 +-
 analysis/setup.py                                  |   3 +-
 .../webservice/algorithms/doms/BaseDomsHandler.py  |  19 +-
 .../webservice/algorithms/doms/DatasetListQuery.py |  14 +-
 .../algorithms/doms/DomsInitialization.py          |   3 +-
 .../webservice/algorithms/doms/ExecutionCancel.py  |  83 +++++++++
 .../webservice/algorithms/doms/ExecutionStatus.py  |  67 +++++++
 .../webservice/algorithms/doms/ResultsRetrieval.py |   6 +-
 .../webservice/algorithms/doms/ResultsStorage.py   |  78 ++++++---
 analysis/webservice/algorithms/doms/__init__.py    |   2 +
 analysis/webservice/algorithms/doms/config.py      |   2 +-
 analysis/webservice/algorithms_spark/Matchup.py    | 193 ++++++++++++++-------
 .../NexusCalcSparkTornadoHandler.py}               |  12 +-
 .../webservice/algorithms_spark/TimeAvgMapSpark.py |   4 +-
 .../webservice/algorithms_spark/TimeSeriesSpark.py |  15 +-
 analysis/webservice/apidocs/openapi.yml            |  52 ++++++
 analysis/webservice/config/scheduler.xml           |  10 ++
 .../app_builders/HandlerArgsBuilder.py             |   1 +
 .../app_builders/SparkContextBuilder.py            |   9 +-
 .../request/handlers/NexusRequestHandler.py        |  22 ++-
 .../webservice/webmodel/NexusExecutionResults.py   | 150 ++++++++++++++++
 data-access/requirements.txt                       |   2 +
 22 files changed, 637 insertions(+), 117 deletions(-)
 create mode 100644 analysis/webservice/algorithms/doms/ExecutionCancel.py
 create mode 100644 analysis/webservice/algorithms/doms/ExecutionStatus.py
 copy analysis/{test.py => webservice/algorithms_spark/NexusCalcSparkTornadoHandler.py} (79%)
 create mode 100644 analysis/webservice/config/scheduler.xml
 create mode 100644 analysis/webservice/webmodel/NexusExecutionResults.py