This is an automated email from the ASF dual-hosted git repository.
tloubrieu pushed a change to branch SDAP-268
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git.
from dfa5a40 create handler manager to have multiple endpoint for the same
algorithm
add e5f8ef8 implement a demo asynchronous mode in the restapi
No new revisions were added by this update.
Summary of changes:
analysis/README.md | 3 +-
analysis/conda-requirements.txt | 1 +
analysis/webservice/algorithms/NexusCalcHandler.py | 2 +-
.../webservice/algorithms_spark/TimeAvgMapSpark.py | 25 ++++---
.../webservice/algorithms_spark/TimeSeriesSpark.py | 1 -
analysis/webservice/jobs/__init__.py | 1 +
analysis/webservice/jobs/job.py | 14 ++++
.../request/handlers/NexusAsyncJobHandler.py | 81 ++++++++++++++++++++++
.../request/handlers/NexusHandlerManager.py | 19 +++--
.../request/handlers/NexusRequestHandler.py | 64 ++++++++++++++++-
.../nexus_tornado/request/handlers/__init__.py | 3 +-
.../request/renderers/NexusRendererFactory.py | 2 +
analysis/webservice/webapp.py | 1 +
analysis/webservice/webmodel/Exceptions.py | 2 +-
14 files changed, 195 insertions(+), 24 deletions(-)
create mode 100644 analysis/webservice/jobs/__init__.py
create mode 100644 analysis/webservice/jobs/job.py
create mode 100644
analysis/webservice/nexus_tornado/request/handlers/NexusAsyncJobHandler.py