I can think of a few things that may or may not help.
1) Put a FeatureHolder transformer just before the writer feature type. If you are reading from and writing to the same table, there might be an issue about something being locked. The FeatureHolder should prevent the writing from happening until the reading is complete.
2) Are you sure the Requestor/Supplier connections are the right way around? I get the feeling you want to update the bee table with raw survey data, but if so I would expect that table to be the requestor.
3) I'd pay close attention to what is emerging from the FeatureMerger. For example, disable the writer and add an Inspector or Logger after the FeatureMerger, so you can see exactly what is being output (and what the rowid values are).
4) The FeatureMerger has parameters "Reject Null and Missing Keys" and "Ignore Nulls". You might want to try those and see if what comes out of the transformer is any different.
Hope this helps to get you started in the right direction.
I can think of a few things that may or may not help.
1) Put a FeatureHolder transformer just before the writer feature type. If you are reading from and writing to the same table, there might be an issue about something being locked. The FeatureHolder should prevent the writing from happening until the reading is complete.
2) Are you sure the Requestor/Supplier connections are the right way around? I get the feeling you want to update the bee table with raw survey data, but if so I would expect that table to be the requestor.
3) I'd pay close attention to what is emerging from the FeatureMerger. For example, disable the writer and add an Inspector or Logger after the FeatureMerger, so you can see exactly what is being output (and what the rowid values are).
4) The FeatureMerger has parameters "Reject Null and Missing Keys" and "Ignore Nulls". You might want to try those and see if what comes out of the transformer is any different.
Hope this helps to get you started in the right direction.
Much appreciated for this Mark. Will have a go at this.
I can think of a few things that may or may not help.
1) Put a FeatureHolder transformer just before the writer feature type. If you are reading from and writing to the same table, there might be an issue about something being locked. The FeatureHolder should prevent the writing from happening until the reading is complete.
2) Are you sure the Requestor/Supplier connections are the right way around? I get the feeling you want to update the bee table with raw survey data, but if so I would expect that table to be the requestor.
3) I'd pay close attention to what is emerging from the FeatureMerger. For example, disable the writer and add an Inspector or Logger after the FeatureMerger, so you can see exactly what is being output (and what the rowid values are).
4) The FeatureMerger has parameters "Reject Null and Missing Keys" and "Ignore Nulls". You might want to try those and see if what comes out of the transformer is any different.
Hope this helps to get you started in the right direction.
Hi Mark,
Thanks for your answer. My bandage solution was to generate a rowid with UUID Generator.
However, I would like to know if the AGOL feature service reader can pick up the values in the rowid and the globalid fields. It picks up objectid no problem. The reader and the writer know that they exist but when you inspect what comes out, there is no rowid or globalid in the feature attributes noted as properties or values of the feature.
Cheers,
Andrew