-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Ass sugested here http://blog.trifork.com/2013/01/10/how-to-write-an-elasticsearch-river-plugin/ implement BulkkProcessor API - Bulk processor concurrent request: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-threadpool.html#modules-threadpool
- Loading branch information
1 parent
0da87d2
commit 973dba9
Showing
9 changed files
with
376 additions
and
120 deletions.
There are no files selected for viewing
196 changes: 121 additions & 75 deletions
196
src/main/java/org/elasticsearch/river/mongodb/Indexer.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
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ public enum Status { | |
|
||
RUNNING, | ||
STOPPED, | ||
IMPORT_FAILED, | ||
INITIAL_IMPORT_FAILED; | ||
|
||
} |
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
Oops, something went wrong.