Writer initiates a writing operation (aka ingestion). A single ingestion is uniquely identified by its ref, provided using a WithRef option. Writer can be called multiple times with the same ref to access the same ingestion. Once all the data is written, use Writer.Commit to complete the ingestion.
(ctx context.Context, opts ...WriterOpt)
| 68 | // ingestion. |
| 69 | // Once all the data is written, use Writer.Commit to complete the ingestion. |
| 70 | Writer(ctx context.Context, opts ...WriterOpt) (Writer, error) |
| 71 | } |
| 72 | |
| 73 | // IngestManager provides methods for managing ingestions. An ingestion is a |
no outgoing calls