Uses of Class
net.snowflake.ingest.utils.BackOffException
-
Packages that use BackOffException Package Description net.snowflake.ingest net.snowflake.ingest.connection -
-
Uses of BackOffException in net.snowflake.ingest
Methods in net.snowflake.ingest that throw BackOffException Modifier and Type Method Description HistoryResponse
SimpleIngestManager. getHistory(UUID requestId, Integer recentSeconds, String beginMark)
Pings the service to see the current ingest history for this tableHistoryRangeResponse
SimpleIngestManager. getHistoryRange(UUID requestId, String startTimeInclusive, String endTimeExclusive)
Pings the service to see the current ingest history for this tableIngestResponse
SimpleIngestManager. ingestFile(StagedFileWrapper file, UUID requestId)
ingestFile - ingest a single fileIngestResponse
SimpleIngestManager. ingestFile(StagedFileWrapper file, UUID requestId, boolean showSkippedFiles)
ingestFile - ingest a single fileIngestResponse
SimpleIngestManager. ingestFiles(List<StagedFileWrapper> files, UUID requestId)
ingestFiles - synchronously sends a request to the ingest service to enqueue these filesIngestResponse
SimpleIngestManager. ingestFiles(List<StagedFileWrapper> files, UUID requestId, boolean showSkippedFiles)
ingestFiles - synchronously sends a request to the ingest service to enqueue these files -
Uses of BackOffException in net.snowflake.ingest.connection
Methods in net.snowflake.ingest.connection that throw BackOffException Modifier and Type Method Description static HistoryRangeResponse
ServiceResponseHandler. unmarshallHistoryRangeResponse(org.apache.http.HttpResponse response, UUID requestId, org.apache.http.impl.client.CloseableHttpClient httpClient, org.apache.http.client.methods.HttpGet request, RequestBuilder builder)
Given an HttpResponse object - attempts to deserialize it into a HistoryRangeResponsestatic HistoryResponse
ServiceResponseHandler. unmarshallHistoryResponse(org.apache.http.HttpResponse response, UUID requestId, org.apache.http.impl.client.CloseableHttpClient httpClient, org.apache.http.client.methods.HttpGet httpGetHistory, RequestBuilder builder)
unmarshallHistoryResponse Given an HttpResponse object - attempts to deserialize it into a HistoryResponse objectstatic IngestResponse
ServiceResponseHandler. unmarshallIngestResponse(org.apache.http.HttpResponse response, UUID requestId, org.apache.http.impl.client.CloseableHttpClient httpClient, org.apache.http.client.methods.HttpPost httpPostForIngestFile, RequestBuilder builder)
unmarshallIngestResponse Given an HttpResponse object - attempts to deserialize it into an IngestResponse object
-