salesforce_bulk_api_serial_or_parallel 0.1 → 0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 168891cce98cf2ba0ed42780d7ada453cad15358
|
4
|
+
data.tar.gz: 0055b5162bbe645440c55017c292831814157733
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bbd4908663e592e7a4d4862e5d6957e5720a8769e84d97c59ee9932eb9983237164410d89b356e98dbb5063c08591bdd7a1587e316c13203307714258240bad
|
7
|
+
data.tar.gz: ac2b523239d5fc37ec7d4eaa0b76b9f0a1bda889610c80615913b49fbd11e382cdfd28823127f4b442945204f92056be01acabf27632b463748c1cf25b7b2997
|
data/README.md
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
## Overview
|
4
4
|
|
5
5
|
Salesforce bulk API is a simple ruby gem for connecting to and using the Salesforce Bulk API. It is actually a re-written code from [salesforce_bulk](https://github.com/jorgevaldivia/salesforce_bulk).Written to suit many more other features as well.
|
6
|
+
This is a forked repo from https://github.com/yatish27/salesforce_bulk_api with support for setting the batch concurrency settings (serial vs parallel)
|
7
|
+
|
6
8
|
|
7
9
|
## How to use
|
8
10
|
|
@@ -33,7 +33,7 @@ module SalesforceBulkApiSerialOrParallel
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def delete(sobject, records, get_response = false, batch_size = 10000, timeout = 1500)
|
36
|
-
do_operation('delete', sobject, records, nil, get_response, timeout, batch_size
|
36
|
+
do_operation('delete', sobject, records, nil, get_response, timeout, batch_size)
|
37
37
|
end
|
38
38
|
|
39
39
|
def query(sobject, query, batch_size = 10000, timeout = 1500)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: salesforce_bulk_api_serial_or_parallel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brendan Keogh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
139
|
rubyforge_project: salesforce_bulk_api_serial_or_parallel
|
140
|
-
rubygems_version: 2.6.
|
140
|
+
rubygems_version: 2.6.10
|
141
141
|
signing_key:
|
142
142
|
specification_version: 4
|
143
143
|
summary: It uses the bulk api of salesforce to communicate with Salesforce CRM
|