Advertisement
Guest User

Untitled

a guest
Mar 19th, 2016
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. {
  2. "template": "dupe_badge_v1-*",
  3. "settings": {
  4. "index.number_of_replicas": "1",
  5. "index.routing.allocation.total_shards_per_node": "-1",
  6. "index.number_of_shards": “3”,
  7. "index.auto_expand_replicas": "false"
  8. },
  9. "mappings": {
  10. "_default_": {
  11. "dynamic_templates": [{
  12. "string_template": {
  13. "mapping": {
  14. "index": "not_analyzed",
  15. "type": "string"
  16. },
  17. "match_mapping_type": "string",
  18. "match": "*"
  19. }
  20. }],
  21. "_all": {
  22. "enabled": false
  23. },
  24. "properties": {
  25. "readerdesc": {
  26. "index": "not_analyzed",
  27. "type": "string"
  28. },
  29. "firstname": {
  30. "index": "not_analyzed",
  31. "type": "string"
  32. },
  33. "cardnum": {
  34. "index": "not_analyzed",
  35. "type": "long"
  36. },
  37. "event_time_utc": {
  38. "format": "YYYY-MM-dd HH:mm:ss",
  39. "index": "not_analyzed",
  40. "ignore_malformed": true,
  41. "type": "date"
  42. },
  43. "department": {
  44. "index": "not_analyzed",
  45. "type": "string"
  46. },
  47. "floor": {
  48. "index": "not_analyzed",
  49. "type": "long"
  50. },
  51. "building": {
  52. "index": "not_analyzed",
  53. "type": "string"
  54. },
  55. "email": {
  56. "index": "not_analyzed",
  57. "type": "string"
  58. },
  59. "lastname": {
  60. "index": "not_analyzed",
  61. "type": "string"
  62. }
  63. }
  64. }
  65. },
  66. "aliases": {}
  67. }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement