Senzing v4 SDK Breaking Changes
Items listed in this section are breaking changes from Senzing v3 to Senzing v4.
In the following sections, C/C++ language function names are listed. The function names are very similar for C#, Java, and Python. For example:
- C/C++:
Sz_addRecord - C#:
AddRecord - Java:
addRecord - Python:
add_record - sz_command:
add_record
File Changes
Senzing Engine Configuration File
| v3 | v4 |
|---|---|
etc/G2Module.ini |
etc/sz_engine_config.ini |
This file is the equivalent of the SENZING_ENGINE_CONFIGURATION_JSON environment variable. See Senzing Engine Configuration
for details.
Package Structure Changed
| v3 Package | v4 Package |
|---|---|
senzingapi-runtime |
senzingsdk-runtime |
senzingapi-tools |
senzingsdk-tools |
senzingapi-setup |
senzingsdk-setup |
senzingapi |
senzingsdk-poc |
Install Path Changed
| v3 | v4 |
|---|---|
/opt/senzing/g2/ |
/opt/senzing/er/ |
Executables Changed
| v3 | v4 |
|---|---|
bin/g2configupgrade |
bin/sz_configupgrade |
bin/g2dbupgrade |
bin/sz_dbupgrade |
Executables Removed
| Removed | Notes |
|---|---|
dbexport |
A program used for retrieving data from the G2 database repository, originally built for working with different non-SQL database types |
Python Scripts and Utilities Changed
| v3 | v4 |
|---|---|
python/G2Audit.py |
bin/sz_audit |
python/G2Command.py |
bin/sz_command |
python/G2ConfigTool.py |
bin/sz_configtool |
python/G2Explorer.py |
bin/sz_explorer |
python/G2Loader.py |
bin/sz_file_loader |
python/G2SetupConfig.py |
bin/sz_setup_config |
python/G2Snapshot.py |
bin/sz_snapshot |
Python Scripts Removed
| Removed |
|---|
CompressedFile.py |
DumpStack.py |
G2S3.py |
Function Changes
Function Prefix Changed
All C/C++ functions now start with the prefix Sz. Any existing functions have been renamed from G2 to Sz.
SzEngine (G2Engine) Functions Added
| Function | Notes |
|---|---|
Sz_getRecordPreview |
Allows preprocessing of a record, with output similar to Sz_getRecord. Great for evaluating JSON record mapping or generating statistics prior to loading data. |
SzEngine (G2Engine) Functions Renamed
| v3 Function | v4 Function |
|---|---|
Sz_closeExport |
Sz_closeExportReport |
G2_findPathExcludingByEntityID |
Sz_findPathByEntityIDWithAvoids |
G2_findPathExcludingByEntityID_V2 |
Sz_findPathByEntityIDWithAvoids_V2 |
G2_findPathExcludingByRecordID |
Sz_findPathByRecordIDWithAvoids |
G2_findPathExcludingByRecordID_V2 |
Sz_findPathByRecordIDWithAvoids_V2 |
G2_findPathIncludingSourceByEntityID |
Sz_findPathByEntityIDIncludingSource |
G2_findPathIncludingSourceByEntityID_V2 |
Sz_findPathByEntityIDIncludingSource_V2 |
G2_findPathIncludingSourceByRecordID_V2 |
Sz_findPathByRecordIDIncludingSource_V2 |
SzEngine (G2Engine) Functions Removed
Several SDK functions have been removed. In most cases, another function exists with the same functionality but with an improved signature.
| Removed Function | Remediation |
|---|---|
G2_addRecordWithReturnedRecordID |
Use Sz_addRecord and always pass in a RECORD_ID |
G2_addRecordWithInfoWithReturnedRecordID |
Use Sz_addRecordWithInfo and always pass in a RECORD_ID |
G2_whyEntityByEntityID |
Sz_howEntity is the preferred method for explaining resolutions |
G2_whyEntityByRecordID |
Sz_howEntity is the preferred method for explaining resolutions |
G2_process |
Was internal. The G2_getRedoRecord/G2_process pattern is now Sz_getRedoRecord/Sz_processRedoRecord |
G2_processWithResponse |
Was internal, now fully removed |
G2_processWithResponseResize |
Was internal, now fully removed |
G2_exportConfig |
Equivalent functionality is now available in the SzConfigManager SDK |
G2_exportConfigAndConfigID |
Equivalent functionality is now available in the SzConfigManager SDK |
G2_checkRecord |
Internal function, now fully removed |
G2_purgeRepository |
Moved to the internal SzDiagnostic SDK |
WithInfo Functions
-
The
G2_addRecordWithInfoandG2_deleteRecordWithInfofunctions have been removed from the Java SDK and Python SDK. The WithInfo functionality has now been included in theSz_addRecordandSz_deleteRecordfunctions when theSZ_WITH_INFOflag is used. -
G2_processWithInfo: This was internal, though we were using it in 3.x for theG2_getRedoRecord/G2_processpattern, which is nowSz_getRedoRecord/Sz_processRedoRecord. The WithInfo functionality has now been included in theSz_processRedoRecordfunction when theSZ_WITH_INFOflag is used. -
The
Sz_addRecord,Sz_deleteRecord, andSz_processRedoRecordfunctions now return a null value if theSZ_WITH_INFOflag is not used.
Internal SDK Changes
SzConfig (G2Config) Functions Renamed
| v3 Function | v4 Function |
|---|---|
G2Config_addDataSource |
SzConfig_registerDataSource |
G2Config_deleteDataSource |
SzConfig_unregisterDataSource |
G2Config_listDataSources |
SzConfig_getDataSourceRegistry |
SzDiagnostic Functions Added
| Function | Notes |
|---|---|
SzDiagnostic_purgeRepository |
Moved here from the main SDK |
SzDiagnostic_getRepositoryInfo |
Undocumented |
SzDiagnostic Functions Removed
The following 18 undocumented, internal-use only functions were removed:
| Removed Function |
|---|
G2Diagnostic_getPhysicalCores |
G2Diagnostic_getLogicalCores |
G2Diagnostic_getTotalSystemMemory |
G2Diagnostic_getAvailableMemory |
G2Diagnostic_getDBInfo |
G2Diagnostic_getDataSourceCounts |
G2Diagnostic_getMappingStatistics |
G2Diagnostic_getGenericFeatures |
G2Diagnostic_getEntitySizeBreakdown |
G2Diagnostic_getEntityDetails |
G2Diagnostic_getResolutionStatistics |
G2Diagnostic_getRelationshipDetails |
G2Diagnostic_getEntityResume |
G2Diagnostic_getEntityListBySize |
G2Diagnostic_fetchNextEntityBySize |
G2Diagnostic_closeEntityListBySize |
G2Diagnostic_findEntitiesByFeatureIDs |
G2Diagnostic_getFeature |
SzAudit (G2Audit) Deprecated
This SDK is now considered to be fully deprecated and should not be used anymore.
Engine Flag Changes
For complete flag documentation, see v4 Engine Flags .
Flag Prefix Changed
All flags now start with the prefix SZ_. Any existing flags have been renamed from G2_ to SZ_.
New Flags
| Flag | Description |
|---|---|
SZ_ENTITY_INCLUDE_RECORD_TYPES
|
Include record types in the entity documents |
SZ_ENTITY_INCLUDE_RELATED_RECORD_TYPES
|
Include record types for related entities in the entity documents |
SZ_ENTITY_INCLUDE_RECORD_UNMAPPED_DATA
|
Include unmapped data in the entity documents |
SZ_ENTITY_INCLUDE_MATCH_KEY_DETAILS |
Include a more detailed version of the match keys for entities and relationships |
SZ_FIND_PATH_MATCHING_INFO |
Include the relationship matching info for entity relationship paths |
SZ_FIND_NETWORK_MATCHING_INFO |
Include the relationship matching info for networks of related entities |
SZ_FIND_NETWORK_DEFAULT_FLAGS
|
Provides recommended information for the SDK find-network functions |
SZ_HOW_ENTITY_DEFAULT_FLAGS
|
Provides recommended information for the SDK how-functions |
SZ_RECORD_PREVIEW_DEFAULT_FLAGS |
Provides record feature details for getRecordPreview |
SZ_SEARCH_INCLUDE_MATCH_KEY_DETAILS |
Include the detailed match key information in search results |
SZ_WHY_ENTITIES_DEFAULT_FLAGS
|
Replaces G2_WHY_ENTITY_DEFAULT_FLAGS, focused on the whyEntities* functions |
SZ_WHY_RECORDS_DEFAULT_FLAGS
|
Replaces G2_WHY_ENTITY_DEFAULT_FLAGS, focused on the whyRecords* functions |
SZ_WHY_RECORD_IN_ENTITY_DEFAULT_FLAGS
|
Replaces G2_WHY_ENTITY_DEFAULT_FLAGS, focused on the whyRecordInEntity* functions |
SZ_WITH_INFO
|
Provides an AFFECTED_ENTITIES list when using addRecord or deleteRecord |
SZ_VIRTUAL_ENTITY_DEFAULT_FLAGS
|
Provides recommended information for the SDK virtual-entity functions |
Renamed and Modified Flags
| v3 Flag | v4 Flag | Notes |
|---|---|---|
G2_EXPORT_DEFAULT_FLAGS |
SZ_EXPORT_DEFAULT_FLAGS |
Reduced the information returned for each entity, to match the normal entity defaults |
G2_EXPORT_INCLUDE_RESOLVED |
SZ_EXPORT_INCLUDE_MULTI_RECORD_ENTITIES |
|
G2_EXPORT_INCLUDE_SINGLETONS |
SZ_EXPORT_INCLUDE_SINGLE_RECORD_ENTITIES |
|
G2_EXPORT_INCLUDE_ALL_RELATIONSHIPS |
SZ_EXPORT_INCLUDE_ALL_HAVING_RELATIONSHIPS |
|
G2_FIND_PATH_DEFAULT_FLAGS |
SZ_FIND_PATH_DEFAULT_FLAGS
|
Returns more path-based information, and less entity information |
Removed Flags
| Removed Flag | Remediation |
|---|---|
G2_ENTITY_INCLUDE_RECORD_FORMATTED_DATA |
Unmapped data is now available with the SZ_ENTITY_INCLUDE_RECORD_UNMAPPED_DATA
flag |
G2_WHY_ENTITY_DEFAULT_FLAGS |
Divided into SZ_WHY_ENTITIES_DEFAULT_FLAGS
, SZ_WHY_RECORDS_DEFAULT_FLAGS
, and SZ_WHY_RECORD_IN_ENTITY_DEFAULT_FLAGS
|
JSON Response Document Changes
The format and contents of the JSON response documents has changed significantly.
Sz_findNetwork Response Document
Sz_findNetwork response document includes all Sz_getEntity* response document changes.
- Added
ENTITY_PATH_LINKSsection - Added
ENTITY_NETWORK_LINKSsection
RESOLVED_ENTITY Section
- Removed
LAST_SEEN_DT - Added
FIRST_SEEN_DT - Added
RECORD_TYPESsection
FEATURES Section
- Added
ELEMENTvalues
RECORD SUMMARY Section
- Removed
FIRST_SEEN_DTandLAST_SEEN_DT
RECORDS Section
- Added
FIRST_SEEN_DT - Added
UNMAPPED_DATAsection - Removed
ENTITY_TYPE,ENTITY_KEY,ENTITY_DESC, andMATCH_LEVEL - Removed
NAME_DATA,ATTRIBUTE_DATA,IDENTIFIER_DATA,ADDRESS_DATA,PHONE_DATA,RELATIONSHIP_DATA,ENTITY_DATA, andOTHER_DATAsections
RELATED_ENTITIES Section
- Added
MATCH_KEY_DETAILS - Added
RECORD_TYPESsection - Removed
MATCH_LEVEL - Removed
FIRST_SEEN_DTandLAST_SEEN_DT - Removed
FIRST_SEEN_DTandLAST_SEEN_DTfromRECORDSsubsection
Sz_getRecord Response Document
RECORDS Section
- Added
FIRST_SEEN_DT - Added
UNMAPPED_DATAsection - Removed
ENTITY_TYPE,ENTITY_KEY - Removed
NAME_DATA,ATTRIBUTE_DATA,IDENTIFIER_DATA,ADDRESS_DATA,PHONE_DATA,RELATIONSHIP_DATA,ENTITY_DATA, andOTHER_DATAsections
Sz_howEntity Response Document
Sz_howEntity response document includes all Sz_getEntity* response document changes.
- Added
WHY_KEY_DETAILSsection (equivalent toMATCH_KEY_DETAILS)
FEATURE_SCORES Section
- Renamed
INBOUND_FEATtoINBOUND_FEAT_DESC,CANDIDATE_FEATtoCANDIDATE_FEAT_DESC - Added
ADDITIONAL_SCORESsubsection that contains the different component scores
Sz_searchByAttributes Response Document
Sz_searchByAttributes response document includes all Sz_getEntity* response document changes.
RESOLVED_ENTITY Section
- Added
MATCH_KEY_DETAILStoMATCH_INFOsubsection - Removed
MATCH_LEVELfromMATCH_INFOsubsection
FEATURE_SCORES Section
- Renamed
INBOUND_FEATtoINBOUND_FEAT_DESC,CANDIDATE_FEATtoCANDIDATE_FEAT_DESC - Added
ADDITIONAL_SCORESsubsection that contains the different component scores
Migration Guides
For detailed migration instructions, see:
If you have any questions, contact Senzing Support. Support is 100% FREE!