Duplications Checker is an Apify actor that helps you find duplicates in your datasets or JSON array.
- Loads data from Apify Dataset, Key Value store or an arbitrary JSON and checks each item against all others for duplicate field.
- The check takes seconds to a maximum of a few minutes for larger datasets.
- Produces a report so you know exactly how many problems are there and which items contained them.
- It is very useful to append this actor as a webhook. You can easily chain another actor after this one to send an email or add a report to your Google Sheets to name just a few examples. Check Apify Store for more.
- Loads data in batches into memory (Key Value store or raw data are loaded all at once).
- Each item in the batch is scanned for the provided field. Actor keeps track of previous occurences and count duplicates.
- A report is created after the whole run and saved as
OUTPUT
to the default Key Value store. - Between each batch, the state of the actor is saved so it doesn't have to repeat the work after restart(migration).
This actor expects a JSON object as an input. You can also set it up in a visual UI editor on Apify. You can find examples in the Input and Example Run tabs of the actor page in Apify Store. All the input fields (regardless of section) are top level fields.
Main input fields
datasetId
<string> Id of dataset where the data are located. If you need to use other input types like Key value store or raw JSON, usekeyValueStoreRecord
orrawData
You have specify this,keyValueStoreRecord
orrawData
but only one of themcheckOnlyCleanItems
<boolean> Only clean dataset items will be loaded and use for duplications checking ifdatasetId
option is provided. Default: falsefields
<array> List of fields in each item that will be checked for duplicates. Each field must not be nested and it should contain only simple value (string or number). It is also possible to use optionfield
to pass only single <string> value (due to backward compatibility). You can prepare your data with preCheckFunction. RequiredpreCheckFunction
<stringified function> Stringified javascipt function that can apply arbitrary transformation to the input data before the check. See preCheckFunction section. OptionalminDuplications
<number> Minimum occurences to be included in the report. Default: 2
Show options
showIndexes
: <boolean> Indexes of the duplicate items will be shown in the OUTPUT report. Set to false if you don't need them. Default: trueshowItems
: <boolean> Duplicate items will be pushed to a dataset. Set to false if you don't need them. Default: trueshowMissing
: <boolean> Items where the values for thefield
is missing or isnull
or''
will be included in the report Default: true
Dataset pagination options
limit
: <number> How many items will be checked. Default: alloffset
: <number> From which item the checking will start. Use withlimit
to check specific items. Default: 0batchSize
: <number> You can change number of loaded and processed items in each batch. This is only needed to be changed if you have really huge items. Default: 1000
Other data sources
keyValueStoreRecord
<string> ID and record key if you want to load from KV store. Format is{keyValueStoreId}+{recordKey}
, e.g.s5NJ77qFv8b4osiGR+MY-KEY
. You have specify this,datasetId
orrawData
but only one of themrawData
<array> Array of objects to be checked. You have specify this,keyValueStoreRecord
ordatasetId
but only one of them*.
preCheckFunction
is useful to transform the input data before the actual check. Its main usefulness is to ensure that the field you are checking is a top level (not nested) field and that the value of that field is a simple value like number or string (The decision to not allow deep equality check for nested structures was made for simplicity and performance reasons).
So for example, let's say you have an item with a nested field images
:
[{
"url": "https://www.bloomingdales.com/shop/product/lauren-ralph-lauren-ruffled-georgette-dress?ID=3493626&CategoryID=1005206",
"images": [
{
"src": "https://images.bloomingdalesassets.com/is/image/BLM/products/9/optimized/10317399_fpx.tif",
"cloudPath": ""
}
],
... // more fields that you are not interested in
}]
If you want to check the first image URL for duplications and keep the item url
for a reference, you can easily transform the whole data with simple preCheckFunction
:
(data) => data.map((item) => ({ url: item.url, imageUrl: item.images[0].src }))
Now, set field
in input to imageUrl
and all will work nicely.
At the end of the actor run, the report is saved to the default Key Value store as an OUTPUT
. Also, if showItems
is true
, it will push duplicate items to the dataset.
By default, the report will include all information but you can opt-out if you set any of showIndexes
, showItems
, showMissing
to false
.
Report is an object where every field
value that appeared at least twice (which means it was duplicate) is inluced as a key. For each of them, report contains count
(minimum is 2), originalIndexes
(which are indexes of items in your original dataset or after preCheckFunction
) and outputIndexes
(only present when showItems
is enabled). The indexes should help you navigate the duplicates in your data.
{
"https://images.bloomingdalesassets.com/is/image/BLM/products/4/optimized/9153524_fpx.tif": {
"count": 2,
"originalIndexes": [
166,
202
],
"outputIndexes": [
0,
1
]
},
"https://images.bloomingdalesassets.com/is/image/BLM/products/9/optimized/9832349_fpx.tif": {
"count": 2,
"originalIndexes": [
1001,
1002
],
"outputIndexes": [
2,
3
]
}
}
The items are intentionally not included in the OUTPUT report to reduce its size. Instead they are pushed to the default dataset and you can locate them with outputIndexes
. If you need to connect the OUTPUT with the dataset for deeper analysis, you can find the items with the help of indexes.
The first version of the actor had the option to check more fields at once but it produced very complicated output and the implementation was too convoluted so I decided to abandon the idea for simplicity. In case you want to check more fields, simply run it once for each field. Since the actor consumption is pretty low, it is not a big deal.
More info coming soon!
If you find any problem or would like to add a new feature, please create an issue on the Github repo.
Thanks everybody for using it and giving any feedback!