Hi everyone, so I'm trying on the latest transform.
I have 3 files. Those are: name, status, tgl.
- I will ingest data1 and data2 at the same time to index
transformtest
- then I will create transformation index
transformtest_continuous
. - Then I will ingest data3.
data1
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
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
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
-
transformtest
index containing 6 rows of data
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
-
transformtest_continuous
created withname
as Unique keys andtgl
as sort field. index containing 3 data
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 ingest,
transformtest
updated, now they have 9 rows
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
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?