Key questions about this property
The answers below summarize the purpose, scope, default effect, and review scenarios for this property.
| What does it do? |
This property controls whether transformations of web service import sets without coalesce fields are executed concurrently or sequentially, impacting performance and data handling. |
| What area does it affect? |
Web service import sets |
| What does the default mean? |
The default value is "false", which means this behavior is disabled by default. |
| When should you review it? |
Review this property when optimizing data import performance or ensuring data integrity during transformations. |
Out of the box property record
Raw metadata from the property record.
| Property name |
glide.import_set_insert_serialized_when_no_coalesce |
| Sys ID |
e45846119f33210041a496fcc67fcf06 |
| Type |
boolean |
| Application |
Global |
| Default value |
false |
| Description |
Controls the processing of web service import sets which have no coalesce field(s) defined. When this property is set to false (default), the instance will perform transformations concurrently from the source to the target table. When this property is set to true, the instance will perform transformations one at a time for a given staging table. This property can be overridden by the table-specific property glide.import_set_insert_serialized.<table name>. |
| Updated |
2024-05-25 04:00:27 |
Sources
Official references and nearby text excerpts where this property appears.
Context preview
Snippet 1
... table serially (one at a time) to prevent duplicates. In import sets that do not specify any coalesce field, records are transformed concurrently. You can control this behavior using the glide.import_set_insert_serialized_when_no_coalesce property. The glide.import_set_insert_serialized.<table name> system property controls how the instance inserts records from web service calls into a specific import set table. When true, this property prevents identical simultaneous inserts ...
Related properties