We have Spark dataframes partitioned on multiple columns. For example, we have a partner column that can be Google, Facebook, and Bing. And we have a channel column that can be PLA and Text. We would like to run anomaly detection on Google-PLA, Google-TEXT, Facebook-TEXT,... etc. separately because they follow different patterns. So far I've figured out I can configure AnomalyCheckConfig with different filter description and using the same filter when checking for result. But first I need to filter out the data for each partition combo and then to run the anomaly test with its associated filter. One by one in serial. Is there a way to run them in parallel? Can I do addAnomalyCheck() with different AnomalyCheckConfigs multiple times to the whole dataframe and get the Verification result in one run?
Is it possible to run Deequ anomaly detection on multiple partitions separately in parallel
1.1k views Asked by Sifang At
1
There are 1 answers
Related Questions in PERFORMANCE
- Upsert huge amount of data by EFCore.BulkExtensions
- How can I resolve this error and work smoothly in deep learning?
- Efficiently processing many small elements of a collection concurrently in Java
- Theme Preloader for speed optimization in WordPress
- I need help to understand the time wich my simple ''hello world'' is taking to execute
- Non-blocking state update
- Do conditional checks cause bottlenecks in Javascript?
- Performance of sketch drastically decreases outside of the P5 Web Editor
- sample query for review for improvement on big query
- Is there an indexing strategy in Postgres which will operate effectively for JOINs with ORs
- Performance difference between two JavaScript code snippets for comparing arrays of strings
- C++ : Is there an objective universal way to compare the speed of iterative algorithms?
- How to configure api http request with load testing
- the difference in terms of performance two types of update in opensearch
- Sveltekit : really long to send the first page and intense CPU computation
Related Questions in APACHE-SPARK
- Getting error while running spark-shell on my system; pyspark is running fine
- ingesting high volume small size files in azure databricks
- Spark load all partions at once
- Databricks Delta table / Compute job
- Autocomplete not working for apache spark in java vscode
- How to overwrite a single partition in Snowflake when using Spark connector
- Parse multiple record type fixedlength file with beanio gives oom and timeout error for 10GB data file
- includeExistingFiles: false does not work in Databricks Autoloader
- Spark connectors from Azure Databricks to Snowflake using AzureAD login
- SparkException: Task failed while writing rows, caused by Futures timed out
- Configuring Apache Spark's MemoryStream to simulate Kafka stream
- Databricks can't find a csv file inside a wheel I installed when running from a Databricks Notebook
- Add unique id to rows in batches in Pyspark dataframe
- Does Spark Dynamic Allocation depend on external shuffle service to work well?
- Does Spark structured streaming support chained flatMapGroupsWithState by different key?
Related Questions in ANOMALY-DETECTION
- Need help realigning python fill_between with data points
- Multivariate irregular time series anomaly detection based on Deep Learning (or even self-attention)?
- Upgrading MAD-GANs source code to Tensorflow 2.x
- Optimal autoencoder model for picture anomaly detection
- Inconsistent Results in Reconstruction Error Calculation for Anomaly Detection with LSTM
- Opensearch Anomaly Detector Custom Expressions
- How to detect outlier in data using sliding IQR in Python/pandas?
- Graylog and Opensearch Dashboards in parallel
- Optimal approach for anomaly detection using One-Class SVM with multiple location IDs
- Creating HTTP code 500 alert using Datadog monitoring multiple systems in the same alert
- OpenVINOInferencer on GPU
- ModuleNotFoundError: No module named 'anomalib.engine'
- Using a mask to calculate a difference between values marked by the mask and follow up values
- Deep SVDD for images anomaly detection
- Do all pictures in the MVTec format dataset have to be in square shape?
Related Questions in AMAZON-DEEQU
- Error using PyDeequ Profile in Databricks
- Amazon deequ does not run in container but works locally
- Unable to pass variable to Deequ Checks
- How to set dynamic assert conditions for deequ verification checks in scala
- How to filter rows that violates constraints deequ
- deequ - How one can "train" deequ for a number trend?
- Pydeequ throwing Py4JJavaError
- closing pydeequ callback server
- Pydeequ - Datatype check for datetime column
- Data Quality Framework in AWS
- Spark Compatible Data Quality Framework for Narrow Data
- How to pass Cardinality Threshold value for Histogram in Deequ package?
- PyDeequ hasPattern fails with 'PatternMatch' object has no attribute '_Check'
- Inferred type arguments [_$1] do not conform to method type parameter bounds
- AWS Deequ Checks Error: isGreaterThanOrEqualTo is not a member of com.amazon.deequ.VerificationRunBuilder
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
If you have the partitioning column in your Spark DataFrame, you can instantiate multiple anomaly checks in a single
VerificationSuiteby specifying where conditions for the quality metric you want to run anomaly detection on. Assuming you want to compute theCompletenessof a columnc1, you can control for the partition withwhere = Some("partition = 'GOOGL'"), for example.