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

chore: remove native execution #1423

Merged
merged 3 commits into from
Oct 24, 2023
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
22 changes: 0 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
resolver = "2"
members = [
"examples/fuel-explorer/fuel-explorer",
"examples/greetings-native/greetings-native-indexer",
"examples/greetings/greetings-data",
"examples/greetings/greetings-fuel-client",
"examples/greetings/greetings-indexer",
Expand Down
1 change: 0 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ SUBCOMMANDS:
new Create a new indexer project in a new directory
postgres Fuel Postgres Orchestrator
remove Stop and remove a running indexer
run-native Run a native indexer
start Standalone binary for the Fuel indexer service
status Check the status of a registered indexer
```
Expand Down
1 change: 0 additions & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
- [remove](./forc-index/remove.md)
- [start](./forc-index/start.md)
- [status](./forc-index/status.md)
- [run-native](./forc-index/run-native.md)
- [forc postgres](./forc-postgres/index.md)
- [create](./forc-postgres/create.md)
- [drop](./forc-postgres/drop.md)
Expand Down
1 change: 0 additions & 1 deletion docs/src/forc-index/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ OPTIONS:
-h, --help Print help information
--locked Ensure that the Cargo.lock file is up-to-date.
-m, --manifest <MANIFEST> Manifest file name of indexer being built.
--native Building for native execution.
-p, --path <PATH> Path to the indexer project.
-v, --verbose Enable verbose output.

Expand Down
1 change: 0 additions & 1 deletion docs/src/forc-index/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ OPTIONS:
-h, --help Print help information
--locked Ensure that the Cargo.lock file is up-to-date.
-m, --manifest <MANIFEST> Path to the manifest of indexer project being deployed.
--native Building for native execution.
-p, --path <PATH> Path to the indexer project.
--remove-data Remove all indexed data when replacing an existing indexer.
--replace-indexer If an indexer with the same UID exists, remove it.
Expand Down
1 change: 0 additions & 1 deletion docs/src/forc-index/new.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ OPTIONS:
-h, --help Print help information
--name <NAME> Name of indexer.
--namespace <NAMESPACE> Namespace to which indexer belongs.
--native Initialize an indexer with native execution enabled.
-v, --verbose Enable verbose output.
```
45 changes: 0 additions & 45 deletions docs/src/forc-index/run-native.md

This file was deleted.

4 changes: 1 addition & 3 deletions docs/src/project-components/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ The `end_block` field indicates the block height after which the indexer should

_Required._

The `module` field contains a file path that points to code that will be run as an _executor_ inside of the indexer. There are two available options for modules/execution: `wasm` and `native`. Note that when specifying a `wasm` module, the provided path must lead to a compiled WASM binary.

> Important: At this time, `wasm` is the preferred method of execution.
The `module` field contains a file path that points to code that will be run as an _executor_ inside of the indexer.

## `resumable`

Expand Down
81 changes: 0 additions & 81 deletions examples/greetings-native/Dockerfile

This file was deleted.

60 changes: 0 additions & 60 deletions examples/greetings-native/README.md

This file was deleted.

48 changes: 0 additions & 48 deletions examples/greetings-native/docker-compose.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions examples/greetings-native/greetings-native-indexer/Cargo.toml

This file was deleted.

Loading
Loading