I was able to reproduce your issue in 7.9.2, the date field formatting for epoch_second is wrong in the Transforms UI. It looks like this was fixed in 7.10+ so upgrading should solve the problem for you.
I used these commands in Dev Console to verify:
PUT /test
{ "mappings": {"properties": {"post_date": {
"type":"date",
"format":"basic_date_time||epoch_second",
"store":true
} } } }
PUT /test/_doc/2
{
"user" : "test1",
"post_date" : "20150101T121030.000+01:00"
}
PUT /test/_doc/1
{
"user" : "test2",
"post_date" : 1521389162
}
GET test/_search
Let us know if you get still empty cells in other columns after the upgrade. There were some related fixes in regards to nested field across some releases.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.