-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RELEASE] Morpheus v23.11 #1400
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ture Add tests & docstrings for PromptTemplateNode
…avid-fea-sherlock-prompt-pipe [no ci]
…pipe Add integration test for PromptTemplateNode in a morpheus pipeline
…gardner-nv/Morpheus into david-fea-sherlock-arxiv-source-stage
Add README.md file and fix requirements.yaml file. Authors: - Devin Robison (https://github.com/drobison00) Approvers: - David Gardner (https://github.com/dagardner-nv) URL: #1309
…avid-fea-sherlock-arxiv-source-stage
Closes #1383 ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #1384
Closes ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #1385
- C++ unit test updates - Split some tests into multiple tests - Minor doc updates and fixes ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - Eli Fajardo (https://github.com/efajardo-nv) - Michael Demoret (https://github.com/mdemoret-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #1379
* Add missing dependencies for `requests`, `requests-cache` and `websockets` to `meta.yaml` * Dependencies which are only utilized by a single stage are intentionally omitted from `meta.yaml`, even if they appear in `cuda11.8_dev.yml` * Current that list is: `bs4`, `elasticsearch`, `feedparser` and `milvus` * Move `MILVUS_DATA_TYPE_MAP` from `morpheus/service/vdb/milvus_client.py` to `tests/test_milvus_vector_db_service.py` which was the only place it was used. Note: Since these dependencies all exist in `cuda11.8_dev.yml`, there is no effort made to update the tests to optionally skip their associated tests. Closes #1380 ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #1382
Authors: - Devin Robison (https://github.com/drobison00) Approvers: - David Gardner (https://github.com/dagardner-nv) - Michael Demoret (https://github.com/mdemoret-nv) URL: #1388
…1387) Resolves #1369 Authors: - Devin Robison (https://github.com/drobison00) Approvers: - Eli Fajardo (https://github.com/efajardo-nv) - Michael Demoret (https://github.com/mdemoret-nv) URL: #1387
…1386) This PR fixes the DOCA modules with building with `MORPHEUS_SUPPORT_DOCA=ON`. In addition, the following changes needed to be made: - Upgrade CMake from 3.24 -> 3.25 - Necessary to cleanly set `CMAKE_FIND_ROOT_PATH_MODE_INCLUDE` (and similar variables) using the `block()` function - Other option is to manually save off these specific variables and restore them all later which is cumbersome and error prone. - Adds dependency to `rdma-core>=48` - This is necessary since DOCA requires the MLX_1.19 symbols which arent in `rdma-core=28.9` Authors: - Michael Demoret (https://github.com/mdemoret-nv) - Pete MacKinnon (https://github.com/pdmack) Approvers: - Christopher Harris (https://github.com/cwharris) URL: #1386
* Adds two new decorators `source` and `stage` allowing stages to be created from python functions. * Accept & return types are inferred by inspecting the type annotations of the decorated function. * This removes the need for several lines of boilerplate code needed for simple Python-only stages. * Includes unrelated docstring fix to `morpheus/pipeline/stage_base.py` example: ```py from morpheus.pipeline.stage_decorator import source from morpheus.pipeline.stage_decorator import stage @source def source_gen(dataframes: list[cudf.DataFrame]) -> collections.abc.Iterator[MessageMeta]: for df in dataframes: yield MessageMeta(df) @stage def on_data(message: MessageMeta) -> MessageMeta: with message.mutable_dataframe() as df: print(df) return message ``` Closes #1253 ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Devin Robison (https://github.com/drobison00) - Michael Demoret (https://github.com/mdemoret-nv) URL: #1364
* Fixes a race condition where the `fix_bad_columns` method attempts to fix the same column more than once per-DF, resulting in a failure on the second attempt. ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) - Michael Demoret (https://github.com/mdemoret-nv) Approvers: - Devin Robison (https://github.com/drobison00) - Michael Demoret (https://github.com/mdemoret-nv) URL: #1390
…own process (#1392) Due to the changes in #1233, the pipeline shutdown process has been slightly altered. This updates the viz demo to shutdown correctly without error. Also added support for exiting on Ctrl+C Fixes #1391 Authors: - Michael Demoret (https://github.com/mdemoret-nv) Approvers: - Eli Fajardo (https://github.com/efajardo-nv) - David Gardner (https://github.com/dagardner-nv) URL: #1392
- Remove step to log in to Grafana dashboard since example was updated to not require it anymore. ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - Eli Fajardo (https://github.com/efajardo-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #1393
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Fixes #1395 Fixes #1394 Authors: - Michael Demoret (https://github.com/mdemoret-nv) Approvers: - Devin Robison (https://github.com/drobison00) - https://github.com/raykallen - David Gardner (https://github.com/dagardner-nv) URL: #1398
/ok to test |
This PR mitigates CVE-2023-47248 by importing `pyarrow_hotfix` as early as possible to ensure that the pyarrow hotfix is applied before any code can use it. Can be removed after upgrading to pyarrow 14.0.1 or later (which is dictated by cudf) Authors: - Michael Demoret (https://github.com/mdemoret-nv) Approvers: - Christopher Harris (https://github.com/cwharris) - David Gardner (https://github.com/dagardner-nv) URL: #1399
/ok to test |
/ok to test |
/ok to test |
1 similar comment
/ok to test |
mdemoret-nv
force-pushed
the
branch-23.11
branch
from
December 1, 2023 07:54
68c95ba
to
4aba460
Compare
/ok to test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
❄️ Code freeze for
branch-23.11
andv23.11
releaseWhat does this mean?
Only critical/hotfix level issues should be merged into
branch-23.11
until release (merging of this PR).All other development PRs should be retargeted towards the next release branch:
branch-24.03
.What is the purpose of this PR?
branch-23.11
intomain
for the release