# Kibana transform latest continously not updating

**URL:** https://discuss.elastic.co/t/kibana-transform-latest-continously-not-updating/268739
**Category:** Elasticsearch
**Tags:** transforms
**Created:** [March 30, 2021, 7:28am UTC](https://discuss.elastic.co/t/kibana-transform-latest-continously-not-updating/268739 "2021-03-30T07:28:54Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![charles97](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/charles97/32/79243_2.png) [@charles97](https://discuss.elastic.co/u/charles97)
#### Post date: [March 30, 2021, 7:28am UTC](https://discuss.elastic.co/t/kibana-transform-latest-continously-not-updating/268739/1 "2021-03-30T07:28:54Z")

</div>

Hi everyone, so I'm trying on the latest transform.  
I have 3 files. Those are: name, status, tgl.

1. I will ingest data1 and data2 at the same time to index `transformtest`
2. then I will create transformation index `transformtest_continuous`.
3. Then I will ingest data3.

**data1**

```auto
name,status,tgl
a,0,3/5/2018 1:21:31 AM
b,0,3/5/2018 1:21:31 AM
c,0,3/5/2018 1:21:31 AM

```

**data2**

```auto
name,status,tgl
a,0,3/5/2019 1:21:31 AM
b,1,3/5/2019 1:21:31 AM
c,1,3/5/2019 1:21:31 AM

```

**data3**

```auto
name,status,tgl
a,0,3/5/2020 1:21:31 AM
b,4,3/5/2020 1:21:31 AM
c,4,3/5/2020 1:21:31 AM

```

1. `transformtest` index containing 6 rows of data

```auto
a,0,3/5/2018 1:21:31 AM
b,0,3/5/2018 1:21:31 AM
c,0,3/5/2018 1:21:31 AM
a,0,3/5/2019 1:21:31 AM
b,1,3/5/2019 1:21:31 AM
c,1,3/5/2019 1:21:31 AM

```

1. `transformtest_continuous` created with `name` as Unique keys and `tgl` as sort field. index containing 3 data

```auto
a,0,3/5/2019 1:21:31 AM
b,1,3/5/2019 1:21:31 AM
c,1,3/5/2019 1:21:31 AM

```

1. Data3 ingest, `transformtest` updated, now they have 9 rows

```auto
a,0,3/5/2018 1:21:31 AM
b,0,3/5/2018 1:21:31 AM
c,0,3/5/2018 1:21:31 AM
a,0,3/5/2019 1:21:31 AM
b,1,3/5/2019 1:21:31 AM
c,1,3/5/2019 1:21:31 AM
a,0,3/5/2020 1:21:31 AM
b,4,3/5/2020 1:21:31 AM
c,4,3/5/2020 1:21:31 AM

```

but `transform_continuous` not updated. I expected it would be data3

```auto
a,0,3/5/2020 1:21:31 AM
b,4,3/5/2020 1:21:31 AM
c,4,3/5/2020 1:21:31 AM

```

Am I missing something?

---

<div class="post-metadata">

### Author: ![Hendrik\_Muhs](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/hendrik_muhs/32/25802_2.png) [@Hendrik\_Muhs](https://discuss.elastic.co/u/Hendrik_Muhs)
#### Post date: [April 6, 2021, 1:48pm UTC](https://discuss.elastic.co/t/kibana-transform-latest-continously-not-updating/268739/2 "2021-04-06T13:48:32Z")

</div>

Can you share your configuration?

What did you configure for `sync`? From the data provided it looks like you are ingesting data with old timestamps, however the timestamp in `sync` should be recent to be seen.

---

<div class="post-metadata">

### Author: ![charles97](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/charles97/32/79243_2.png) [@charles97](https://discuss.elastic.co/u/charles97)
#### Post date: [April 21, 2021, 7:50am UTC](https://discuss.elastic.co/t/kibana-transform-latest-continously-not-updating/268739/3 "2021-04-21T07:50:07Z")

</div>

After some try-ons I realize that i have to bind the timeseries with `timestamp` not time columns (`tgl`). after change the time sync, it works properly. Thank you @Hendrik_Muhs for your respond. appreciate that so much. I don't understand why it `sync` properly with `timestamp` but not `tgl`

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [May 19, 2021, 7:51am UTC](https://discuss.elastic.co/t/kibana-transform-latest-continously-not-updating/268739/4 "2021-05-19T07:51:01Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
