I have a task that I am not sure how to achieve if it's even possible in Velocity..
So, there is a FEED into a complex Analytic that has multiple Feature Layer and Stream Layer Outputs.
Now, there is a new FEED the contents of which are four simple data elements. What I am looking to do is update one of the original Feature Layers created in the first analytic that has about 60 data elements but only a single data element should be changed with data from the new feed and it would be based on the Primary Key (Track Field).
If this were a SQL data set a simple UPDATE FL.Vehcile t1 SET State = t2.state FROM Feed.presence t2 WHERE t1.VehicleID = t2.VehicleID might be all that's needed or an INSERT .......... On CONFLICT UPDATE ........
I just don't think I have ever had an output NODE that was not a full INSERT instead of an UPDATE.
Hoping someone can point me at some documentation I have not found yet.
TIA --