ductile
Version:
Elasticsearch Bulk Loader
25 lines (24 loc) • 593 B
text/coffeescript
module.exports = (index = 'myindex', type = 'mytype') -> [
{
index:
_id: '0ea74996-f3f9-5a88-ba19-f5ea93afa833'
_index: index
_type: type
}
{
uid: '0ea74996-f3f9-5a88-ba19-f5ea93afa833'
name: 'Dr. Leah F. Parker'
address: '362 Rurel Way'
}
{
index:
_id: '7303e089-1b8f-5556-b427-8189d17d993a'
_index: index
_type: type
}
{
uid: '7303e089-1b8f-5556-b427-8189d17d993a'
name: 'Miss Rosie J. Paul'
address: '530 Dimde Trail'
}
]