When I load my data through logstash I specify an index name pattern, to split the index up by time.
I now have a continuous transform running, grouping by a 1 hour date histogram, against that data. Problem is it's writing it all to a single index. How do I do the equivalent of logstash putting date elements into the index name? sales_hourly-2020-02, sales_hourly-2020-03, sales_hourly-2020-04 etc...
Transform creates the destination index for you if you haven't. That means, you can create the destination index yourself or for this case use aliases and index life-cycle management.
Thanks, looks like it'll work, even if it's not quite a smooth as the time based logstash naming (mostly a concern when bulk indexing historical data).
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.