-
Notifications
You must be signed in to change notification settings - Fork 252
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
[Spark] Enable support for non-aggregation operations in Spark using the streaming interface #5599
Merged
assaf758
merged 49 commits into
mlrun:feature/spark-streaming
from
alxtkr77:feature/spark-streaming
May 21, 2024
Merged
[Spark] Enable support for non-aggregation operations in Spark using the streaming interface #5599
assaf758
merged 49 commits into
mlrun:feature/spark-streaming
from
alxtkr77:feature/spark-streaming
May 21, 2024
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
* how to register a datastore profile * Update docs/store/datastore.md Co-authored-by: Gal Topper <gal.topper@gmail.com> * Update docs/store/datastore.md Co-authored-by: Gal Topper <gal.topper@gmail.com> * fix: data store is 2 words * clarify example --------- Co-authored-by: Gal Topper <gal.topper@gmail.com>
…iled_recent_count (mlrun#5523)
* Remove unused import * Change import so that PyCharm detects inheritance correctly
* Add step kind to pipeline notification * better system test * redundant comment * fix ut --------- Co-authored-by: quaark <a.melnick@icloud.com>
…leanups in datastores (mlrun#5305)
…nContext` (mlrun#5552) fix deepcopy bug
…asures in the writer (mlrun#5554)
* [Model Monitoring] Add new TSDB target for all predictions Tracking count and latency. [ML-6349](https://iguazio.atlassian.net/browse/ML-6349) * Change TSDB predictions table path * Move predictions table * Fix * Fix parameter names * Fix
…t_scheduled_pipelines_pending_count (mlrun#5535)
…mlrun#5563) fix pipeline notification bugs Co-authored-by: quaark <a.melnick@icloud.com>
assaf758
merged commit May 21, 2024
364839d
into
mlrun:feature/spark-streaming
10 of 11 checks passed
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.
https://iguazio.atlassian.net/browse/ML-6474
Merge 1.7.0-rc17
Enable support for non-aggregation operations in Spark using the streaming interface.
Replace hasattr(obj, 'rdd') with 'rdd' in dir(obj) since hasattr() evaluates the property, which can lead to unintended behavior.
Update the system to handle single Parquet and CSV files.