Skip to content

Commit

Permalink
chore(docs):[#408] improve blob store docs and level 2 view
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-jhartmann committed Aug 5, 2024
1 parent 809c479 commit d2c15b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 3 additions & 2 deletions docs/src/docs/arc42/building-block-view/level-1.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ A job is processed in this order:
6. Assembles the complete item graph.

|*BlobStore*
|The BlobStore is the database where the relationships and tombstones are stored for a requested item.
|The BlobStore is the database where the intermediate relationships and tombstones are stored as BLOBs during job processing. When complete, the job will take these intermediate BLOBs and consolidate them in the job response.
The BLOBs are single-use only and will not be re-used for future jobs.

|*JobStore*
|The JobStore is the database where the jobs with the information about the requested item are stored.
|The JobStore is the database where the jobs with the information about the requested item are stored. Completed and failed jobs will be deleted from the JobStore after their configured time-to-live is reached.

|*Digital Twin Client*
|The Digital Twin Client is the interface to the Digital Twin Registry. It provides an interface for the Asset Administration Shells.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ skinparam defaultFontName "Architects daughter"
component [**TransferProcessManagement**] <<Component>> as TransferProcessManagement {
component [**AASTransferProcessManager**] <<Component>> as TransferProcessManager
component [**DecentralDigitalTwinRegistryService**] <<Component>> as DTRService {
component [**DecentralDigitalTwinRegistryClient**] <<Component>> as DTRClient {
component [**EndpointDataForConnectorsService**] <<Component>> as EndpointDataForConnectorsService
}
component [**DecentralDigitalTwinRegistryClient**] <<Component>> as DTRClient
}
component [**EdcSubmodelFacade**] <<Component>> as SubmodelFacade {
component [**EdcSubmodelClient**] <<Component>> as SubmodelClient {
Expand Down Expand Up @@ -51,7 +49,6 @@ SubmodelClient ----( SMSAPI
interface "PolicyStoreAPI" as PolicyStoreAPI
PolicyCheckerService --( PolicyStoreAPI
PolicyStoreAPI -- PolicyStoreService
EndpointDataForConnectorsService -> SubmodelFacade

database BlobStore
TransferProcessManager -left-( BlobStoreInterface
Expand Down

0 comments on commit d2c15b2

Please sign in to comment.