-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add joins, insertion & search to correlation engine
Signed-off-by: Subhobrata Dey <[email protected]>
- Loading branch information
Showing
29 changed files
with
4,145 additions
and
8 deletions.
There are no files selected for viewing
751 changes: 751 additions & 0 deletions
751
...lusterTest/java/org/opensearch/plugin/correlation/EventsCorrelationPluginTransportIT.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
32 changes: 32 additions & 0 deletions
32
...src/main/java/org/opensearch/plugin/correlation/events/action/IndexCorrelationAction.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.plugin.correlation.events.action; | ||
|
||
import org.opensearch.action.ActionType; | ||
|
||
/** | ||
* Transport Action for indexing correlations | ||
* | ||
* @opensearch.internal | ||
*/ | ||
public class IndexCorrelationAction extends ActionType<IndexCorrelationResponse> { | ||
|
||
/** | ||
* Instance of IndexCorrelationAction | ||
*/ | ||
public static final IndexCorrelationAction INSTANCE = new IndexCorrelationAction(); | ||
/** | ||
* Name of IndexCorrelationAction | ||
*/ | ||
public static final String NAME = "cluster:admin/index/correlation/events"; | ||
|
||
private IndexCorrelationAction() { | ||
super(NAME, IndexCorrelationResponse::new); | ||
} | ||
} |
Oops, something went wrong.