Hi,
We have an application where we are storing various device data in Elasticsearch 1.6 for our production environment.
For our system, we have a different type for all the devices in the system. A sample of the mapping is as follows
Sample 1:
{
"device1": {
"properties": {
"attribute": {
"properties": {
"speed": {
"type": "long"
},
//.......
//......
Sample 2:
{
"device2": {
"properties": {
"attribute": {
"properties": {
"speed": {
"type": "string"
},
//.......
//......
Our system is very generic and we do not control the "attribute" type.
But this is creating a huge issue for the migration as different type mapping is no longer allowed. We have huge production data and we are just not able to migrate those data.
Please suggest some way in which we can go ahead with the migration.
Thanks in advance!