Skip to content

Commit

Permalink
Updates - remove references to old packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jjbrosnan committed Jan 18, 2022
1 parent cfbeb6e commit 1d3c108
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 54 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ which functions as the data backbone for prominent hedge funds, banks, and finan

## Supported Languages

| Language | Server Application | Client Application (OpenAPI) |
| ------------- | ------------------ | ---------------------------- |
| Python | Yes | Yes |
| Java / Groovy | Yes | Yes |
| C++ | No | Yes |
| JavaScript | No | Yes |
| gRPC | - | Yes |
| Language | Server Application | Client Application |
| ------------- | ------------------ | ------------------ |
| Python | Yes | Yes |
| Java / Groovy | Yes | Yes |
| C++ | No | Yes |
| JavaScript | No | Yes |
| gRPC | - | Yes |

## Run Deephaven

Expand Down Expand Up @@ -118,6 +118,12 @@ docker-compose up -d

Run the following commands to launch Deephaven for Python server applications with the [TensorFlow](https://www.tensorflow.org/) module pre-installed.

```bash
curl https://raw.githubusercontent.com/deephaven/deephaven-core/main/containeres/python/TensorFlow/docker-compose.yml -O
docker-compose pull
docker-compose up -d
```

### Launch: Python with example data

Run the following commands to launch Deephaven for Python server applications, with example data.
Expand Down
8 changes: 4 additions & 4 deletions containers/python-examples/NLTK/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,12 +33,12 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

examples:
image: ghcr.io/deephaven/examples
image: ghcr.io/deephaven/examples:latest
volumes:
- ./data:/data
command: initialize
Expand Down
8 changes: 4 additions & 4 deletions containers/python-examples/PyTorch/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,12 +33,12 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

examples:
image: ghcr.io/deephaven/examples
image: ghcr.io/deephaven/examples:latest
volumes:
- ./data:/data
command: initialize
Expand Down
8 changes: 4 additions & 4 deletions containers/python-examples/SciKit-Learn/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,12 +33,12 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

examples:
image: ghcr.io/deephaven/examples
image: ghcr.io/deephaven/examples:latest
volumes:
- ./data:/data
command: initialize
Expand Down
8 changes: 4 additions & 4 deletions containers/python-examples/TensorFlow/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,12 +33,12 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

examples:
image: ghcr.io/deephaven/examples
image: ghcr.io/deephaven/examples:latest
volumes:
- ./data:/data
command: initialize
Expand Down
12 changes: 6 additions & 6 deletions containers/python-examples/base/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.4"

services:
grpc-api:
image: ghcr.io/deephaven/grpc-api:${VERSION:-latest}
server:
image: ghcr.io/deephaven/server:${VERSION:-latest}
expose:
- '8080'
volumes:
Expand All @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,12 +33,12 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

examples:
image: ghcr.io/deephaven/examples
image: ghcr.io/deephaven/examples:latest
volumes:
- ./data:/data
command: initialize
Expand Down
10 changes: 5 additions & 5 deletions containers/python/NLTK/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.4"

services:
grpc-api:
image: ghcr.io/deephaven/nltk-base:${VERSION:-latest}
server:
image: ghcr.io/deephaven/server-nltk:${VERSION:-latest}
expose:
- '8080'
volumes:
Expand All @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,7 +33,7 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

Expand Down
10 changes: 5 additions & 5 deletions containers/python/PyTorch/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.4"

services:
grpc-api:
image: ghcr.io/deephaven/pytorch-base:${VERSION:-latest}
server:
image: ghcr.io/deephaven/server-pytorch:${VERSION:-latest}
expose:
- '8080'
volumes:
Expand All @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,7 +33,7 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

Expand Down
10 changes: 5 additions & 5 deletions containers/python/SciKit-Learn/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.4"

services:
grpc-api:
image: ghcr.io/deephaven/sklearn-base:${VERSION:-latest}
server:
image: ghcr.io/deephaven/server-sklearn:${VERSION:-latest}
expose:
- '8080'
volumes:
Expand All @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,7 +33,7 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

Expand Down
10 changes: 5 additions & 5 deletions containers/python/TensorFlow/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.4"

services:
grpc-api:
image: ghcr.io/deephaven/tensorflow-base:${VERSION:-latest}
server:
image: ghcr.io/deephaven/server-tensorflow:${VERSION:-latest}
expose:
- '8080'
volumes:
Expand All @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,7 +33,7 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

Expand Down
10 changes: 5 additions & 5 deletions containers/python/base/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.4"

services:
grpc-api:
image: ghcr.io/deephaven/grpc-api:${VERSION:-latest}
server:
image: ghcr.io/deephaven/server:${VERSION:-latest}
expose:
- '8080'
volumes:
Expand All @@ -22,9 +22,9 @@ services:
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest}
environment:
- BACKEND_ADDR=grpc-api:8080
- BACKEND_ADDR=server:8080
depends_on:
- grpc-api
- server
expose:
- '8080'

Expand All @@ -33,7 +33,7 @@ services:
depends_on:
- web
- grpc-proxy
- grpc-api
- server
ports:
- "${PORT:-10000}:10000"

Expand Down

0 comments on commit 1d3c108

Please sign in to comment.