This is an automated email from the ASF dual-hosted git repository.
skperez pushed a change to branch matchup-bugfixes
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
from 9a0c0e5 Fix matchup bugs
add 57f98a7 Sdap 388 proxy (#162)
add 07a48c6 chore: add insitu application to ingress template (#167)
add 3fa3a82 fix bugs in helm chart after update for proxy feature (#170)
add cd58f7b Fix for null count field in return for matchup_spark request
(#171)
add 240ce1f SDAP-371: Fix domssubset API (#172)
add 9f29fcb Updated matchup to ensure both time and space are account for
when 'matchOnce' is true (#176)
add 8706e29 SDAP-397: Requested matchup updates (#180)
add cec3b3e Fix CSV/NetCDF bug (#175)
add a9932a9 SDAP-396: saildrone insitu (#179)
add 4bfca7c Merge branch 'master' of
github.com:apache/incubator-sdap-nexus into matchup-bugfixes
No new revisions were added by this update.
Summary of changes:
CHANGELOG.md | 13 ++
analysis/README.md | 22 +-
analysis/conda-requirements.txt | 5 +-
analysis/setup.py | 2 +-
analysis/tests/algorithms/test_subsetter.py | 126 +++++++++++
analysis/{ => tests/redirect}/__init__.py | 0
analysis/tests/redirect/collections-config.yaml | 20 ++
analysis/tests/webapp_test.py | 14 ++
analysis/webservice/algorithms/DataSeriesList.py | 19 +-
.../webservice/algorithms/doms/BaseDomsHandler.py | 13 +-
.../algorithms/doms/DomsInitialization.py | 42 ++--
analysis/webservice/algorithms/doms/config.py | 17 +-
analysis/webservice/algorithms/doms/insitu.py | 79 +++++++
analysis/webservice/algorithms/doms/subsetter.py | 244 +++++++++++++--------
analysis/webservice/algorithms_spark/Matchup.py | 132 +++++------
analysis/webservice/apidocs/openapi.yml | 6 +-
.../app_builders/HandlerArgsBuilder.py | 43 ++++
.../nexus_tornado/app_builders/NexusAppBuilder.py | 75 +++++++
.../app_builders/RedirectAppBuilder.py | 16 ++
.../app_builders/SparkContextBuilder.py | 17 ++
.../nexus_tornado/app_builders/__init__.py | 2 +
analysis/webservice/redirect/RedirectHandler.py | 34 +++
.../webservice/redirect/RemoteCollectionMatcher.py | 38 ++++
analysis/webservice/redirect/__init__.py | 2 +
analysis/webservice/webapp.py | 132 ++++-------
data-access/nexustiles/dao/CassandraProxy.py | 15 +-
data-access/nexustiles/dao/SolrProxy.py | 2 +
data-access/nexustiles/model/nexusmodel.py | 20 +-
data-access/nexustiles/nexustiles.py | 11 +-
docker/nexus-webapp/Dockerfile | 2 +-
helm/README.md | 31 +++
helm/templates/ingress.yml | 54 +++--
helm/templates/webapp.yml | 10 +-
helm/values.yaml | 9 +-
34 files changed, 934 insertions(+), 333 deletions(-)
create mode 100644 analysis/tests/algorithms/test_subsetter.py
copy analysis/{ => tests/redirect}/__init__.py (100%)
create mode 100644 analysis/tests/redirect/collections-config.yaml
create mode 100644 analysis/webservice/algorithms/doms/insitu.py
create mode 100644
analysis/webservice/nexus_tornado/app_builders/HandlerArgsBuilder.py
create mode 100644
analysis/webservice/nexus_tornado/app_builders/NexusAppBuilder.py
create mode 100644
analysis/webservice/nexus_tornado/app_builders/RedirectAppBuilder.py
create mode 100644
analysis/webservice/nexus_tornado/app_builders/SparkContextBuilder.py
create mode 100644 analysis/webservice/nexus_tornado/app_builders/__init__.py
create mode 100644 analysis/webservice/redirect/RedirectHandler.py
create mode 100644 analysis/webservice/redirect/RemoteCollectionMatcher.py
create mode 100644 analysis/webservice/redirect/__init__.py