This is an automated email from the ASF dual-hosted git repository.
xiaozhenliu pushed a change to branch
feat/xiaozhen-chat-assistant-1-backend-skeleton
in repository https://gitbox.apache.org/repos/asf/texera.git
from feb3b6a002 restructuring.
add d0c2ed12c4 refactor: update workflow result export functions for
local/dataset to be separate and symmetric (#3916)
add 8a4ee99e06 chore: add task issue template (#3918)
add 9945e3dea0 chore: simplify issue reporting with a markdown on code of
conduct (#3920)
add 2780caa2b3 feat(operator): add Stable Incremental Merge Sort (Scala)
(#3774)
add 4da3c26d59 fix(ui): file upload section border (#3906)
add 2e03207f2a chore: Remove publish section with whoami from .asf.yaml
(#3927)
add 84976e9439 feat(dockerfile): add build argument to toggle R support in
computing unit images (#3929)
add 870a9e045c chore: add test-ci branch protection rules (#3937)
add 927c9b262a chore(ci): explicitly declare main branch's CI rules (#3938)
add 3e833f5d0e chore(ci): rename CI names for `test-ci` rules (#3940)
add da679689c4 chore(ci): add CI with new names (#3941)
add b3317c1fad feat(operator): Add strip chart visualization operator
(#3913)
add 7b8b48463f chore: redirect GitHub emails (#3932)
add bfca0024e8 feat(gui): show region layer on workflow editor (#3753)
add 5cc1dde5fe Merge branch 'main' into
feat/xiaozhen-chat-assistant-1-backend-skeleton
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 42 +-
.github/ISSUE_TEMPLATE/bug-template.yaml | 11 +-
.github/ISSUE_TEMPLATE/feature-template.yaml | 10 +-
.github/ISSUE_TEMPLATE/task-template.yaml | 63 ++
.github/workflows/github-action-build.yml | 126 ++++
.../architecture/controller/Controller.scala | 12 +
.../controller/WorkflowScheduler.scala | 2 +
.../engine/architecture/scheduling/Schedule.scala | 2 +
...usUpdateEvent.scala => RegionUpdateEvent.scala} | 2 +-
bin/computing-unit-master.dockerfile | 70 +-
bin/computing-unit-worker.dockerfile | 67 +-
.../org/apache/amber/operator/LogicalOp.scala | 5 +-
.../StableMergeSortOpDesc.scala} | 42 +-
.../operator/sort/StableMergeSortOpExec.scala | 264 ++++++++
.../StripChartOpDesc.scala} | 100 +--
.../operator/sort/StableMergeSortOpExecSpec.scala | 708 +++++++++++++++++++++
frontend/package.json | 4 +
.../dataset-detail.component.scss | 7 +
.../service/user/download/download.service.ts | 5 +-
.../workspace/component/menu/menu.component.html | 10 +-
.../app/workspace/component/menu/menu.component.ts | 5 +
.../workflow-editor/workflow-editor.component.scss | 13 +-
.../workflow-editor/workflow-editor.component.ts | 62 ++
.../execute-workflow/execute-workflow.service.ts | 9 +
.../workflow-graph/model/joint-graph-wrapper.ts | 23 +-
.../model/workflow-action.service.ts | 2 +
.../workflow-result-export.service.ts | 2 +-
.../types/workflow-websocket.interface.ts | 5 +
.../{Sort.png => StableMergeSort.png} | Bin
frontend/src/assets/operator_images/StripChart.png | Bin 0 -> 45788 bytes
frontend/tsconfig.json | 1 +
frontend/yarn.lock | 417 +++++++++++-
32 files changed, 1927 insertions(+), 164 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE/task-template.yaml
copy
amber/src/main/scala/org/apache/texera/web/model/websocket/response/{ClusterStatusUpdateEvent.scala
=> RegionUpdateEvent.scala} (91%)
copy
common/workflow-operator/src/main/scala/org/apache/amber/operator/{keywordSearch/KeywordSearchOpDesc.scala
=> sort/StableMergeSortOpDesc.scala} (64%)
create mode 100644
common/workflow-operator/src/main/scala/org/apache/amber/operator/sort/StableMergeSortOpExec.scala
copy
common/workflow-operator/src/main/scala/org/apache/amber/operator/visualization/{contourPlot/ContourPlotOpDesc.scala
=> stripChart/StripChartOpDesc.scala} (52%)
create mode 100644
common/workflow-operator/src/test/scala/org/apache/amber/operator/sort/StableMergeSortOpExecSpec.scala
copy frontend/src/assets/operator_images/{Sort.png => StableMergeSort.png}
(100%)
create mode 100644 frontend/src/assets/operator_images/StripChart.png