This is an automated email from the ASF dual-hosted git repository.
skperez pushed a change to branch SDAP-371
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
from f683f28 Removed temp code
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)
new 80bb6e3 Merge branch 'master' of
github.com:apache/incubator-sdap-nexus into SDAP-371
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGELOG.md | 3 +
analysis/README.md | 22 +++-
analysis/conda-requirements.txt | 5 +-
analysis/setup.py | 2 +-
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 ++-
.../algorithms/doms/DomsInitialization.py | 42 ++++---
analysis/webservice/algorithms_spark/Matchup.py | 2 +-
.../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 +
docker/nexus-webapp/Dockerfile | 2 +-
helm/README.md | 31 +++++
helm/templates/ingress.yml | 54 ++++++---
helm/templates/webapp.yml | 10 +-
helm/values.yaml | 9 +-
26 files changed, 468 insertions(+), 143 deletions(-)
copy analysis/{ => tests/redirect}/__init__.py (100%)
create mode 100644 analysis/tests/redirect/collections-config.yaml
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