Skip to content

Commit

Permalink
Use a non-privileged port for the FTP server (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipleblanc authored Sep 23, 2024
1 parent 5af485c commit 92f0377
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,20 @@ Learn about Spice.ai with in-depth samples.
- [Local Materialization and Acceleration CQRS](acceleration/README.md)
- [Accelerated table data quality with constraint enforcement](constraints/README.md)
- [Streaming changes in real-time with Debezium CDC](cdc-debezium/README.md)
- [FTP/SFTP Data Connector](ftp/README.md)

## Security

- [Secure communication with TLS](tls/README.md)

## SDK Samples

- [Rust SDK](client-sdk/spice-rs-sdk-sample/README.md)
- [Python SDK](client-sdk/spicepy-sdk-sample/README.md)
- [Go SDK](client-sdk/gospice-sdk-sample/README.md)
- [JavaScript SDK](client-sdk/spice.js-sdk-sample/README.md)
- [Java SDK](client-sdk/spice-java-sdk-sample/README.md)

## Deploy Spice.ai

- Kubernetes - Sample coming soon.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion data-connectors/compose.yaml → ftp/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
- FTP_PASS=123
- FTP_USER=user
ports:
- '20-21:20-21/tcp'
- '20020-20021:20-21/tcp'
- '40000-40009:40000-40009/tcp'
volumes:
- './data:/home/user'
File renamed without changes.
1 change: 1 addition & 0 deletions data-connectors/spicepod.yaml → ftp/spicepod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ datasets:
file_format: csv
ftp_user: user
ftp_pass: 123
ftp_port: 20021
acceleration:
enabled: true
refresh_mode: full
Expand Down

0 comments on commit 92f0377

Please sign in to comment.