Can I edit (writeback, via Action) Objects that are backed by a stream?

I have a stream that backs an Object Type.

I would like to perform edits on this Object Type, via action, for example to change the value of a property.

Are edits supported for stream-backed Object Types ? Are there any alternatives ?

Streaming edits are not supported (docs)

There are a few workarounds:

  1. Hit the actions api using an async UDF (or python function) to create a batch object
  2. Write a message to a stream using stream proxy that gets union to the stream backing the dataset. Pass the edits through this stream
1 Like