Advertisement
Guest User

Untitled

a guest
Mar 24th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. curl -XPUT 'localhost:9200/_river/fi/_meta' -d '{
  2. "type" : "jdbc",
  3. "jdbc" : {
  4. "url" : "jdbc:mysql://localhost:3306/future_image_typo3",
  5. "user" : "xxxxxxx",
  6. "password" : "xxxxxx",
  7. "sql" : "select * from 0_fotos"
  8. },
  9. "index" : {
  10. "index" : "jdbc",
  11. "type" : "jdbc",
  12. "index_settings" : {
  13. "refresh_interval": "1s",
  14. "analysis" : {
  15. "analyzer" : {
  16. "my_analyzer" : {
  17. "tokenizer" : "standard",
  18. "filter" : ["standard", "lowercase", "my_snow"]
  19. }
  20. },
  21. "filter" : {
  22. "my_snow" : {
  23. "type" : "snowball",
  24. "language" : "German2"
  25. }
  26. }
  27. }
  28. },
  29. "type_mapping":{
  30. "jdbc":{
  31. "properties":{
  32. "act_download":{
  33. "type":"long"
  34. },
  35. "active":{
  36. "type":"long"
  37. },
  38. "added":{
  39. "type":"string"
  40. },
  41. "camera":{
  42. "type":"string"
  43. },
  44. "cart_count":{
  45. "type":"long"
  46. },
  47. "category":{
  48. "type":"string"
  49. },
  50. "city":{
  51. "type":"string"
  52. },
  53. "code":{
  54. "type":"long"
  55. },
  56. "colormode":{
  57. "type":"string"
  58. },
  59. "copyright":{
  60. "type":"string"
  61. },
  62. "country":{
  63. "type":"string"
  64. },
  65. "create_date":{
  66. "type":"date",
  67. "format":"yyyy/MM/dd"
  68. },
  69. "credit":{
  70. "type":"string"
  71. },
  72. "deleted":{
  73. "type":"long"
  74. },
  75. "description":{
  76. "type":"string"
  77. },
  78. "filename":{
  79. "type":"string"
  80. },
  81. "flash":{
  82. "type":"string"
  83. },
  84. "headline":{
  85. "type":"string"
  86. },
  87. "imageformat":{
  88. "type":"string"
  89. },
  90. "keywords":{
  91. "type":"string"
  92. },
  93. "last_modified":{
  94. "type":"date",
  95. "format":"dateOptionalTime"
  96. },
  97. "lens":{
  98. "type":"string"
  99. },
  100. "orientation":{
  101. "type":"string"
  102. },
  103. "pfad_extern":{
  104. "type":"string"
  105. },
  106. "pfad_intern":{
  107. "type":"string"
  108. },
  109. "photog_show":{
  110. "type":"long"
  111. },
  112. "photographer":{
  113. "type":"long"
  114. },
  115. "photographer_name":{
  116. "type":"string"
  117. },
  118. "resolution":{
  119. "type":"string"
  120. },
  121. "size":{
  122. "type":"string"
  123. },
  124. "special_instructions":{
  125. "type":"string"
  126. },
  127. "state":{
  128. "type":"string"
  129. },
  130. "sub_category":{
  131. "type":"string"
  132. },
  133. "terms_of_use":{
  134. "type":"string"
  135. },
  136. "text_full":{
  137. "type":"string"
  138. },
  139. "title":{
  140. "type":"string"
  141. }
  142. }
  143. }
  144. }
  145. }
  146. }'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement