steve_clarke
11/01/2021, 5:23 AMFound character '/' instead of field delimiter ','
The issue is the job refuses to process if I use the default setting of 100,000 records. I decide to back it off and changed it to 50,000 records and it loads. I would have thought however given the default was 100,000 rows that it should be okay.
Please Note: I am using the latest docker image meltano/meltano:v1.86.0-python3.8 .
I am running this in AWS ECS with a Task memory (MiB) 4096, and Task CPU (unit) 1024. Perhaps given the volume of data it sized a little too small for this initial load of at 500,000 row table with batches of 100,000 records? My other theory was perhaps processing 100,000 records on the Snowflake side takes longer and some ELT process is timing out. I would be interested in your thoughts on this and the two types of errors I received (see my logs below).
@florian.hines, I am wondering if this is similar to the issue reported by @nick_hamlin because he is having to back off the batch_size_rows in a pipelinewise target as well. His target is redshift and mine is snowflake.
Thanks
Steve
First Attempt using a batch_size of 100,000 for Snowflake.
``` 2021-10-29T184547.545+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "timer", "metric": "http_request_duration", "value": 0.059658050537109375, "tags": {"endpoint": "batch_result_list", "sobject": "My_Salesforce_Table", "status": "succeeded"}}
2021-10-29T184547.546+13:00
tap-salesforce | extractor | INFO Making GET request to https://my_salesforce_instance/services/async/41.0/job/7505P000000Y5jxQAC/batch/7515P000000p1D3QAI/result/7525P000000P84G with params: None
2021-10-29T184621.977+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 1, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T184721.979+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7580, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T184821.980+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7455, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T184921.981+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7689, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185021.983+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7773, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185121.983+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7683, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185221.987+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7576, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185321.989+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7715, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185422.041+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 8031, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185522.043+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7987, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29T185622.044+13:00
tap-salesforce | extractor | INFO METRIC: {"type": "counter", "metric": "record_count", "value": 7576, "tags": {"endpoint": "My_Salesforce_Table"}}
2021-10-29…florian.hines
11/01/2021, 3:10 PMaaronsteers
11/01/2021, 5:24 PMaaronsteers
11/01/2021, 5:32 PMsteve_clarke
11/01/2021, 7:56 PMaaronsteers
11/01/2021, 8:52 PMken_payne
11/03/2021, 11:12 AMsteve_clarke
11/04/2021, 4:52 AM