Can someone clarify when a Trigger executes on a single record vs. multiple in one context?Is there a simple way to serialize execution of Batchable class?@future and triggersHow can I communicate a trigger exception to user in a bulk upsert for each record?How to detect the name or id of currently running batch job from trigger?Trigger Execution order/contextCalling executeBatch() method of two Batchable classes in execute method of a Schedule class, Will this hit governor limits?Trigger Using The Incorrect Account ID in Bulk UpdatesWhy is this ContentNote trigger receiving 1 record at a time even though multiple records are being inserted?Delete Records before UpdateCan a Change Event Trigger include the same record multiple times?
Importance of moon phases for Apollo missions
Why are Oscar, India, and X-Ray (O, I, and X) not used as taxiway identifiers?
Has Iron Man made any suit for underwater combat?
Do I have to mention my main character's age?
Can "Taking algebraic closure" be made into a functor?
Which dice game has a board with 9x9 squares that has different colors on the diagonals and midway on some edges?
Is there an English word to describe when a sound "protrudes"?
Why was Quirrell said to be in the Black Forest if Voldemort was actually in Albania?
How much did NASA help with the making of "First Man"?
Why can't a country print its own money to spend it only abroad?
Can I make Ubuntu 18.04 switch between multiple windows of the program by just clicking the icon?
What are "the high ends of castles" called?
Why is a PhD thesis typically 150 pages?
Does a "melee spell attack" use my spellcasting ability, or my Strength?
Considerations when providing money to only one child out of two
Can someone clarify when a Trigger executes on a single record vs. multiple in one context?
How does mathematics work?
Is there any direct train from LHR Airport to Newcastle Gateshead?
My current job follows "worst practices". How can I talk about my experience in an interview without giving off red flags?
Impact of throwing away fruit waste on a peak > 3200 m above a glacier
Why is there an extra "t" in Lemmatization?
Why Lie algebras if what we care about in physics are groups?
Do I care if the housing market has gone up or down, if I'm moving from one house to another?
1025th term of the given sequence.
Can someone clarify when a Trigger executes on a single record vs. multiple in one context?
Is there a simple way to serialize execution of Batchable class?@future and triggersHow can I communicate a trigger exception to user in a bulk upsert for each record?How to detect the name or id of currently running batch job from trigger?Trigger Execution order/contextCalling executeBatch() method of two Batchable classes in execute method of a Schedule class, Will this hit governor limits?Trigger Using The Incorrect Account ID in Bulk UpdatesWhy is this ContentNote trigger receiving 1 record at a time even though multiple records are being inserted?Delete Records before UpdateCan a Change Event Trigger include the same record multiple times?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.
Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.
What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.
For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...
I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?
Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.
apex trigger batch triggercontext executioncontext
|
show 1 more comment
This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.
Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.
What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.
For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...
I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?
Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.
apex trigger batch triggercontext executioncontext
4
If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.
– Thomas Taylor
8 hours ago
It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?
– Natalie Paige
8 hours ago
1
@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine
– Brian Miller
8 hours ago
1
If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.
– Thomas Taylor
7 hours ago
1
This is a great conversation to prime my continued investigation to my issue. Thank you both!!
– Natalie Paige
7 hours ago
|
show 1 more comment
This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.
Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.
What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.
For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...
I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?
Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.
apex trigger batch triggercontext executioncontext
This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.
Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.
What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.
For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...
I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?
Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.
apex trigger batch triggercontext executioncontext
apex trigger batch triggercontext executioncontext
asked 8 hours ago
Natalie PaigeNatalie Paige
11510 bronze badges
11510 bronze badges
4
If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.
– Thomas Taylor
8 hours ago
It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?
– Natalie Paige
8 hours ago
1
@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine
– Brian Miller
8 hours ago
1
If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.
– Thomas Taylor
7 hours ago
1
This is a great conversation to prime my continued investigation to my issue. Thank you both!!
– Natalie Paige
7 hours ago
|
show 1 more comment
4
If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.
– Thomas Taylor
8 hours ago
It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?
– Natalie Paige
8 hours ago
1
@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine
– Brian Miller
8 hours ago
1
If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.
– Thomas Taylor
7 hours ago
1
This is a great conversation to prime my continued investigation to my issue. Thank you both!!
– Natalie Paige
7 hours ago
4
4
If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.
– Thomas Taylor
8 hours ago
If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.
– Thomas Taylor
8 hours ago
It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?
– Natalie Paige
8 hours ago
It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?
– Natalie Paige
8 hours ago
1
1
@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine
– Brian Miller
8 hours ago
@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine
– Brian Miller
8 hours ago
1
1
If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.
– Thomas Taylor
7 hours ago
If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.
– Thomas Taylor
7 hours ago
1
1
This is a great conversation to prime my continued investigation to my issue. Thank you both!!
– Natalie Paige
7 hours ago
This is a great conversation to prime my continued investigation to my issue. Thank you both!!
– Natalie Paige
7 hours ago
|
show 1 more comment
2 Answers
2
active
oldest
votes
If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.
In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).
There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.
add a comment |
In addition to @BrianMiller answer,
If one or more publishers publish Platform Event Foo__e
as follows
- T(0) - publish 10
Foo__e
- T(1) - publish 3
Foo__e
- T(2) - publish 6
Foo__e
then the trigger that subscribes to Foo__e could see anywhere from:
1 to all 19 (and anything in between) Foo__e
in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "459"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f270452%2fcan-someone-clarify-when-a-trigger-executes-on-a-single-record-vs-multiple-in-o%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.
In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).
There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.
add a comment |
If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.
In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).
There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.
add a comment |
If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.
In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).
There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.
If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.
In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).
There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.
answered 8 hours ago
Brian MillerBrian Miller
1,4465 silver badges21 bronze badges
1,4465 silver badges21 bronze badges
add a comment |
add a comment |
In addition to @BrianMiller answer,
If one or more publishers publish Platform Event Foo__e
as follows
- T(0) - publish 10
Foo__e
- T(1) - publish 3
Foo__e
- T(2) - publish 6
Foo__e
then the trigger that subscribes to Foo__e could see anywhere from:
1 to all 19 (and anything in between) Foo__e
in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
add a comment |
In addition to @BrianMiller answer,
If one or more publishers publish Platform Event Foo__e
as follows
- T(0) - publish 10
Foo__e
- T(1) - publish 3
Foo__e
- T(2) - publish 6
Foo__e
then the trigger that subscribes to Foo__e could see anywhere from:
1 to all 19 (and anything in between) Foo__e
in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
add a comment |
In addition to @BrianMiller answer,
If one or more publishers publish Platform Event Foo__e
as follows
- T(0) - publish 10
Foo__e
- T(1) - publish 3
Foo__e
- T(2) - publish 6
Foo__e
then the trigger that subscribes to Foo__e could see anywhere from:
1 to all 19 (and anything in between) Foo__e
in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.
In addition to @BrianMiller answer,
If one or more publishers publish Platform Event Foo__e
as follows
- T(0) - publish 10
Foo__e
- T(1) - publish 3
Foo__e
- T(2) - publish 6
Foo__e
then the trigger that subscribes to Foo__e could see anywhere from:
1 to all 19 (and anything in between) Foo__e
in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.
answered 7 hours ago
cropredycropredy
38.4k4 gold badges45 silver badges133 bronze badges
38.4k4 gold badges45 silver badges133 bronze badges
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
add a comment |
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
This is wonderful - I didn't know Platform Events operate in this fashion
– Brian Miller
7 hours ago
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f270452%2fcan-someone-clarify-when-a-trigger-executes-on-a-single-record-vs-multiple-in-o%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.
– Thomas Taylor
8 hours ago
It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?
– Natalie Paige
8 hours ago
1
@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine
– Brian Miller
8 hours ago
1
If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.
– Thomas Taylor
7 hours ago
1
This is a great conversation to prime my continued investigation to my issue. Thank you both!!
– Natalie Paige
7 hours ago