Skip to content

Commit

Permalink
Refine
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Mar 10, 2024
1 parent 0510052 commit 20e812c
Showing 1 changed file with 27 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,17 @@ You will be oscillating between two applications:
}
)
)

(
add_record_to_senzing(
{
"DATA_SOURCE": "Test",
"RECORD_ID": "6",
"RECORD_ID": "4",
"DRIVERS_LICENSE_NUMBER": "12435345",
"DATE_OF_BIRTH": "20/12/1965",
"SSN_NUMBER": "883-24-5259",
"ADDR_FULL":"3465 Wilmington Road, NY, Ohio 47201",
"NAME_FIRST": "Syndey",
"NAME_LAST": "Shorter",
"NAME_FULL": "Thea Shorts",
"GENDER": "F",
"DSRC_ACTION": "A"
}
Expand Down Expand Up @@ -187,7 +189,8 @@ You will be oscillating between two applications:
search {"DRIVERS_LICENSE_NUMBER": "12435345"}
```

Notice two entities, One for "TEST: 1" and a second for "TEST: 6".
Notice two entities.
One for "TEST: 1" and a second for "TEST: 4" seen in the "Data Sources" column.

1. :pencil2: In `G2Explorer.py`,
using the "Entity ID" values from the two entities shown above,
Expand Down Expand Up @@ -217,17 +220,18 @@ You will be oscillating between two applications:
add_record_to_senzing(
{
"DATA_SOURCE": "Test",
"RECORD_ID": "4",
"RECORD_ID": "6",
"DRIVERS_LICENSE_NUMBER": "12435345",
"DATE_OF_BIRTH": "20/12/1965",
"SSN_NUMBER": "883-24-5259",
"ADDR_FULL":"3465 Wilmington Road, NY, Ohio 47201",
"NAME_FULL": "Thea Shorts",
"NAME_FULL": "Cindy Shorter",
"GENDER": "F",
"DSRC_ACTION": "A"
}
)
)

```

1. In the
Expand All @@ -253,10 +257,23 @@ You will be oscillating between two applications:
search {"DRIVERS_LICENSE_NUMBER": "12435345"}
```

Notice three entities, "TEST: 1", "TEST: 6", and "TEST: 4".
Notice one entity.
There are no longer two entities, nor three.
Senzing has determined that all three records refer to the same entity.

1. :pencil2: In `G2Explorer.py`,
using the "Entity ID" value from the entity shown above,
run `why`.
Example:

```console
why 1
```

TODO: Explain what is shown.

1. :pencil2: In `G2Explorer.py`,
using an "Entity ID" values from the three entities shown above,
using the "Entity ID" value from the entity shown above,
run `how`.
Example:

Expand All @@ -274,12 +291,12 @@ You will be oscillating between two applications:

## Shutdown

20. To end the Senzing gRPC service using Docker,
21. To end the Senzing gRPC service using Docker,
use `ctrl-c` to stop the `docker run ...` program.

## Restart

21. To restart the service, re-run the command seen in Step #3.
22. To restart the service, re-run the command seen in Step #3.
Although the port mappings using `--publish` may be changed, the value of `--volume`
must match the original value so the database files on your workstation will be attached.

Expand Down

0 comments on commit 20e812c

Please sign in to comment.