Uses of Class
net.snowflake.ingest.streaming.InsertValidationResponse
-
Packages that use InsertValidationResponse Package Description net.snowflake.ingest.streaming net.snowflake.ingest.streaming.internal -
-
Uses of InsertValidationResponse in net.snowflake.ingest.streaming
Methods in net.snowflake.ingest.streaming that return InsertValidationResponse Modifier and Type Method Description InsertValidationResponse
SnowflakeStreamingIngestChannel. insertRow(Map<String,Object> row, String offsetToken)
Insert one row into the channel, the row is represented using Map where the key is column name and the value is a row of data.InsertValidationResponse
SnowflakeStreamingIngestChannel. insertRows(Iterable<Map<String,Object>> rows, String offsetToken)
Insert a batch of rows into the channel with the end offset token only, please seeSnowflakeStreamingIngestChannel.insertRows(Iterable, String, String)
for more information.InsertValidationResponse
SnowflakeStreamingIngestChannel. insertRows(Iterable<Map<String,Object>> rows, String startOffsetToken, String endOffsetToken)
Insert a batch of rows into the channel, each row is represented using Map where the key is column name and the value is a row of data. -
Uses of InsertValidationResponse in net.snowflake.ingest.streaming.internal
Methods in net.snowflake.ingest.streaming.internal that return InsertValidationResponse Modifier and Type Method Description InsertValidationResponse
IngestionStrategy. insertRows(net.snowflake.ingest.streaming.internal.AbstractRowBuffer<T> rowBuffer, Iterable<Map<String,Object>> rows, String startOffsetToken, String endOffsetToken)
Insert a batch of rows into the row buffer
-