Skip to content

Commit 1655264

Browse files
[ML] Rename analytics package to dataframe (#37583)
1 parent 9fd1d10 commit 1655264

21 files changed

+31
-31
lines changed

x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@
165165
import org.elasticsearch.xpack.ml.action.TransportUpdateProcessAction;
166166
import org.elasticsearch.xpack.ml.action.TransportValidateDetectorAction;
167167
import org.elasticsearch.xpack.ml.action.TransportValidateJobConfigAction;
168-
import org.elasticsearch.xpack.ml.analytics.process.AnalyticsProcessFactory;
169-
import org.elasticsearch.xpack.ml.analytics.process.AnalyticsProcessManager;
170-
import org.elasticsearch.xpack.ml.analytics.process.NativeAnalyticsProcessFactory;
168+
import org.elasticsearch.xpack.ml.dataframe.process.AnalyticsProcessFactory;
169+
import org.elasticsearch.xpack.ml.dataframe.process.AnalyticsProcessManager;
170+
import org.elasticsearch.xpack.ml.dataframe.process.NativeAnalyticsProcessFactory;
171171
import org.elasticsearch.xpack.ml.datafeed.DatafeedJobBuilder;
172172
import org.elasticsearch.xpack.ml.datafeed.DatafeedManager;
173173
import org.elasticsearch.xpack.ml.datafeed.persistence.DatafeedConfigProvider;

x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/action/TransportRunAnalyticsAction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
import org.elasticsearch.xpack.core.ml.action.RunAnalyticsAction;
3939
import org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper;
4040
import org.elasticsearch.xpack.ml.MachineLearning;
41-
import org.elasticsearch.xpack.ml.analytics.DataFrameDataExtractorFactory;
42-
import org.elasticsearch.xpack.ml.analytics.DataFrameFields;
43-
import org.elasticsearch.xpack.ml.analytics.process.AnalyticsProcessManager;
41+
import org.elasticsearch.xpack.ml.dataframe.DataFrameDataExtractorFactory;
42+
import org.elasticsearch.xpack.ml.dataframe.DataFrameFields;
43+
import org.elasticsearch.xpack.ml.dataframe.process.AnalyticsProcessManager;
4444

4545
import java.util.Arrays;
4646
import java.util.Collections;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics;
6+
package org.elasticsearch.xpack.ml.dataframe;
77

88
import org.elasticsearch.common.ParseField;
99
import org.elasticsearch.common.xcontent.ToXContentObject;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics;
6+
package org.elasticsearch.xpack.ml.dataframe;
77

88
import org.apache.logging.log4j.LogManager;
99
import org.apache.logging.log4j.Logger;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics;
6+
package org.elasticsearch.xpack.ml.dataframe;
77

88
import org.elasticsearch.index.query.QueryBuilder;
99
import org.elasticsearch.xpack.ml.datafeed.extractor.fields.ExtractedFields;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics;
6+
package org.elasticsearch.xpack.ml.dataframe;
77

88
import org.elasticsearch.ResourceNotFoundException;
99
import org.elasticsearch.action.ActionListener;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics;
6+
package org.elasticsearch.xpack.ml.dataframe;
77

88
public final class DataFrameFields {
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics.process;
6+
package org.elasticsearch.xpack.ml.dataframe.process;
77

88
import org.elasticsearch.common.Strings;
99
import org.elasticsearch.common.xcontent.ToXContent;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics.process;
6+
package org.elasticsearch.xpack.ml.dataframe.process;
77

88
import org.elasticsearch.xpack.ml.process.writer.AbstractControlMsgWriter;
99
import org.elasticsearch.xpack.ml.process.writer.LengthEncodedWriter;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* or more contributor license agreements. Licensed under the Elastic License;
44
* you may not use this file except in compliance with the Elastic License.
55
*/
6-
package org.elasticsearch.xpack.ml.analytics.process;
6+
package org.elasticsearch.xpack.ml.dataframe.process;
77

88
import org.elasticsearch.xpack.ml.process.NativeProcess;
99

0 commit comments

Comments
 (0)