-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update docs and pin to java-sdk 0.1.0 (#11)
- update docs for use of GH creds - update mermaid markdown usage with mermaid cli - depend on upstream java sdk 0.1.0 vs. snapshot (fixes BouncyCastle Runtime Issues)
- Loading branch information
1 parent
76653d1
commit 6484699
Showing
10 changed files
with
157 additions
and
98 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
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,11 @@ | ||
Mermaid CLI is used to generate images from Mermaid markdown | ||
|
||
[mermaid.cli](https://github.com/mermaid-js/mermaid-cli) | ||
``` | ||
npm install -g @mermaid-js/mermaid-cli | ||
``` | ||
|
||
To generate images from mermaid: | ||
``` | ||
mmdc -i <input>.mmd -o <output>.svg | ||
``` |
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,22 @@ | ||
--- | ||
title: Generic NanoTDF NiFi Flows | ||
--- | ||
flowchart TD | ||
a[Nifi Processor] | ||
b["`**UpdateAttribute**`" Add data policy attributes to FlowFile] | ||
c["`**ConvertToNanoTDF**`"] | ||
d["Process NanoTDF"] | ||
e["Handle Error"] | ||
e2["Handle Max Size Error"] | ||
f[Nifi Processor] | ||
g["`**ConvertFromZTDF**`"] | ||
h[Process Plaintext] | ||
i[Handle Error] | ||
a -- success (content = Plaintext) --> b | ||
b -- success (content = Plaintext)--> c | ||
c -- success (content = NanoTDF) --> d | ||
c -- failure --> e | ||
c -- exceeds_size_limit --> e2 | ||
f -- success (content = NanoTDF) --> g | ||
g -- success (content = Plaintext) --> h | ||
g -- failure --> i |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,20 @@ | ||
--- | ||
title: Generic ZTDF NiFi Flows | ||
--- | ||
flowchart TD | ||
a[Nifi Processor] | ||
b["`**UpdateAttribute**`" Add data policy attributes to FlowFile] | ||
c["`**ConvertToZTDF**`"] | ||
d["Process ZTDF"] | ||
e["Handle Error"] | ||
f[Nifi Processor] | ||
g["`**ConvertFromZTDF**`"] | ||
h[Process Plaintext] | ||
i[Handle Error] | ||
a -- success (content = PlainText) --> b | ||
b -- success (content = PlainText) --> c | ||
c -- success (content = ZTDF) --> d | ||
c -- failure --> e | ||
f -- success (content = ZTDF) --> g | ||
g -- success (content = PlainText) --> h | ||
g -- failure --> i |
Oops, something went wrong.