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

Gripper setup.py #255

Merged
merged 3 commits into from
May 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions cmd/erclient/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var InfoCmd = &cobra.Command{
}

var RowsCmd = &cobra.Command{
Use: "rows",
Use: "rows <collection>",
Short: "List rows from a collection",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
Expand All @@ -74,7 +74,7 @@ var RowsCmd = &cobra.Command{
}

var IdsCmd = &cobra.Command{
Use: "ids",
Use: "ids <collection>",
Short: "List ids from a collection",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
Expand All @@ -88,7 +88,7 @@ var IdsCmd = &cobra.Command{
}

var QueryCmd = &cobra.Command{
Use: "query",
Use: "query <collection> <field> <value>",
Short: "List rows with field match",
Args: cobra.ExactArgs(3),
RunE: func(cmd *cobra.Command, args []string) error {
Expand All @@ -113,7 +113,7 @@ var QueryCmd = &cobra.Command{
}

var GetCmd = &cobra.Command{
Use: "get",
Use: "get <collection> <ids ...>",
Short: "List rows with field match",
Args: cobra.MinimumNArgs(2),
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
10 changes: 8 additions & 2 deletions gripper/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GRIPPER
## GRIP Plugin External Resources

GRIP Plugin External Resources (GRIPPERs) are GRIP drivers that take external
resources and allow GRIP to access them are part of a unified graph.
GRIP Plugin External Resources (GRIPPERs) are GRIP drivers that take external
resources and allow GRIP to access them are part of a unified graph.
To integrate new resources into the graph, you
first deploy griper proxies that plug into the external resources. They are unique
and configured to access specific resources. These provide a view into external
Expand All @@ -12,6 +12,12 @@ every row a document. A gripper is written as a gRPC server.

![GIPPER Architecture](../website/static/img/gripper_architecture.png)

## GRIPPER versioning

The Plugin External Resource (PER) is version Alpha 1. As an alpha system,
the plugin interface works, but the API will change and there is no expectation
of continued support for older alpha APIs.

## GRIPPER proxy

With the external resources normalized to a single data model, the graph model
Expand Down
Empty file.
Loading