This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: section about transfer processes (#184)
* docs: section about transfer processes * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> * Update developer/wip/for-contributors/contributor-handbook.md Co-authored-by: Paul Latzelsperger <[email protected]> --------- Co-authored-by: Paul Latzelsperger <[email protected]>
- Loading branch information
1 parent
7327e64
commit 457bbc5
Showing
9 changed files
with
637 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+83 KB
developer/wip/for-contributors/diagrams/transfer-data-plane-consumer-pull.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
88 changes: 88 additions & 0 deletions
88
developer/wip/for-contributors/diagrams/transfer-data-plane-consumer-pull.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
' | ||
' Copyright (c) 2022 Amadeus | ||
' | ||
' This program and the accompanying materials are made available under the | ||
' terms of the Apache License, Version 2.0 which is available at | ||
' https://www.apache.org/licenses/LICENSE-2.0 | ||
' | ||
' SPDX-License-Identifier: Apache-2.0 | ||
' | ||
' Contributors: | ||
' Amadeus - Initial Version | ||
' | ||
|
||
@startuml | ||
|
||
|
||
skinParam NoteBackgroundColor WhiteSmoke | ||
skinParam NoteFontColor Black | ||
skinParam ParticipantBackgroundColor WhiteSmoke | ||
skinParam ActorBackgroundColor WhiteSmoke | ||
skinParam AgentBackgroundColor White | ||
skinParam AgentBorderColor SkyBlue | ||
skinparam shadowing false | ||
skinparam BoxPadding 10 | ||
|
||
!define ConsumerColor f8f2ff | ||
!define ProviderColor d9edff | ||
!define WarningColor Business | ||
!define LeadColor Technology | ||
|
||
autonumber | ||
|
||
box "Consumer ecosystem" #ConsumerColor | ||
participant CBE as "Backend Service" | ||
end box | ||
|
||
box Consumer EDC #ConsumerColor | ||
participant CCP as "Control Plane" #Business | ||
participant CDPS as "Data Plane Selector" #Business | ||
participant CDP as "Data Plane" #Business | ||
end box | ||
|
||
box Provider EDC #ProviderColor | ||
participant PDP as "Data Plane" #Business | ||
participant PDPS as "Data Plane Selector" #Business | ||
participant PCP as "Control Plane" #Business | ||
end box | ||
|
||
box "Provider ecosystem" #ProviderColor | ||
participant PBE as "Backend Service" | ||
end box | ||
|
||
title | ||
**Transfer Data Plane - Consumer Pull** | ||
end title | ||
autonumber 1 | ||
== Start Transfer Process (assumes contract has already been negotiated) == | ||
|
||
activate CCP | ||
CCP ->> PCP : send TransferRequestMessage with a destination | ||
activate PCP | ||
PCP ->> PCP : create DataFlowRequest | ||
PCP ->> PDPS : resolve data plane instance | ||
activate PDPS | ||
PDPS -->> PCP : data plane instance | ||
deactivate PDPS | ||
PCP ->> PDP : send DataFlowRequest | ||
activate PDP | ||
PDP ->> PDP : validate DataFlowRequest and generate the DataAddress | ||
PDP -->> PCP : acknowledge that request is valid attaching DataAddress | ||
deactivate PDP | ||
PCP ->> CCP : send TransferStartMessage attaching DataAddress | ||
CCP ->> CCP : dispatch the DataAddress | ||
deactivate PCP | ||
|
||
== Data querying == | ||
|
||
CBE ->> PDP : query data (any verb is supported) using DataAddress info | ||
activate CBE | ||
activate PDP | ||
PDP ->> PDP : token validation and data address retrivial | ||
deactivate PCP | ||
PDP ->> PBE : query data | ||
activate PBE | ||
return data | ||
PDP ->> CBE : return data | ||
|
||
@enduml |
Binary file added
BIN
+54.9 KB
developer/wip/for-contributors/diagrams/transfer-data-plane-provider-push.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.