Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add model zoo server in the figure #9

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions figures/arch.dot
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ digraph G {

Jupyter [label="Jupyter Notebook server +\n SQLFlow magic command"];
SQLFlow [label="SQLFlow server"];
ModelZoo [label="Model Zoo server\n"];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems not enough to add only the model zoo node here -- the model zoo needs a Docker registry, file storage, and database system, right?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's true, yet we do not need to deploy a Docker registry or distributed file system for model storage, we use the publicly available service for the model zoo. I'll add them out side the VM.

Argo [label="Tekton on Kubernetes\n(each workflow step is a container)"];
AI [label="AI engine\n(Alibaba PAI, KubeFlow+Kuberntes, etc)"];
DBMS [label="database system\n(Hive, MySQL, MaxCompute, etc)"];
Expand All @@ -33,4 +34,5 @@ digraph G {

User3 -> Client;
Client -> SQLFlow [label="SQL/Flow program"];
Client -> ModelZoo [label="share models or use shared models"];
}
139 changes: 76 additions & 63 deletions figures/arch.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions figures/arch_vm.dot
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ digraph G {
label="sqlflow/sqlflow:latest";
Jupyter [label="Jupyter Notebook server +\n SQLFlow magic command"];
SQLFlow [label="SQLFlow server"];
ModelZoo [label="Model Zoo server"];
DBMS [label="MySQL"];
}
subgraph cluster_minikube {
Expand All @@ -42,4 +43,5 @@ digraph G {

User3 -> Client;
Client -> SQLFlow [label="SQL/Flow program"];
Client -> ModelZoo [label="share models or use shared models"];
}
Loading