Last active
April 14, 2022 06:29
-
-
Save quoeamaster/f12f278d887ee798e2317dad811a02bd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| PUT _ingest/pipeline/test_p2 | |
| { | |
| "processors": [ | |
| { | |
| "gsub": { | |
| "field": "instructors", | |
| "pattern": "\\.", | |
| "replacement": "-" | |
| } | |
| } | |
| ] | |
| } | |
| /* test */ | |
| POST _ingest/pipeline/test_p2/_simulate | |
| { | |
| "docs": [ | |
| { | |
| "_source": { | |
| "instructors": "donna.karen@uni.gov,jojo.star.crusade@uni.gov" | |
| } | |
| } | |
| ] | |
| } | |
| ... | |
| /* results~ */ | |
| { | |
| "docs" : [ | |
| { | |
| "doc" : { | |
| "_index" : "_index", | |
| "_type" : "_doc", | |
| "_id" : "_id", | |
| "_source" : { | |
| "instructors" : "donna-karen@uni-gov,jojo-star-crusade@uni-gov" | |
| }, | |
| "_ingest" : { | |
| "timestamp" : "2022-04-14T06:12:12.161522158Z" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment