Hi,
Is it possible to make sub partitions in Machine Learning ?
domain and event are fields in every document.
I created a categorization ml job, with partition_field = domain, but this is not enough, I must split it by domain and event, and since its a categorization job, I already have by_field_name = mlcategory, so I guess the only way to achieve this is to concatenate domain and event and partition on it ?
this is the job config:
{
"job_id": "test_ml",
"description": "",
"groups": [],
"analysis_config": {
"bucket_span": "15m",
"detectors": [
{
"function": "count",
"by_field_name": "mlcategory",
"partition_field_name": "domain"
}
],
"influencers": [
"mlcategory"
],
"categorization_field_name": "error"
},
"data_description": {
"time_field": "date_time"
},
"analysis_limits": {
"model_memory_limit": "139MB"
},
"results_index_name": "test_ml"
}
thanks,
Omar