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

Support Running on Linux Machines #830

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,20 @@ docker-compose up

Once you see some data printed with a `only showing top 20 rows` notice, you're ready to proceed with the tutorial.

### Linux Instructions

If you run docker-compose on a amd64 machine, you may see the error:

```chronon-main-1 | exec /bin/bash: exec format error```

This can occur is you don't have QEMU installed. This can be easily resolved by installing QEMU:

```bash
sudo apt-get update; sudo apt-get install -y qemu-system qemu-user-static
```

Run docker-compose up again, and you should be able to proceed with the tutorial.

## Introduction

In this example, let's assume that we're a large online retailer, and we've detected a fraud vector based on users making purchases and later returning items. We want to train a model that will be called when the **checkout** flow commences and predicts whether this transaction is likely to result in a fraudulent return.
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ services:
- CHRONON_LOG_TABLE=default.chronon_log_table
- CHRONON_ONLINE_CLASS=ai.chronon.quickstart.online.ChrononMongoOnlineImpl
- CHRONON_ONLINE_ARGS=-Zuser=admin -Zpassword=admin -Zhost=mongodb -Zport=27017 -Zdatabase=admin
platform: linux/arm64


volumes:
Expand Down