Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vinetos/giraph-lab
A starter project for Hadoop and Giraph with Maven and Docker
https://github.com/vinetos/giraph-lab
apache docker giraph hacktoberfest hadoop hadoop-yarn
Last synced: about 1 month ago
JSON representation
A starter project for Hadoop and Giraph with Maven and Docker
- Host: GitHub
- URL: https://github.com/vinetos/giraph-lab
- Owner: Vinetos
- Created: 2023-09-14T15:50:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-07T09:19:58.000Z (about 1 year ago)
- Last Synced: 2024-04-14T22:59:58.550Z (9 months ago)
- Topics: apache, docker, giraph, hacktoberfest, hadoop, hadoop-yarn
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Giraph-Lab
This project is a simple lab to test Giraph graph computation. It is based on the [Giraph Quick Start](http://giraph.apache.org/quick_start.html) tutorial.
## Pre-requisites
You must have docker running on your machine. If you don't have it, you can install it from [here](https://docs.docker.com/install/).## How to run
1. Clone the repository
2. Update the code as you wish
3. Update the input graph with `graph.txt`
4. Update the `FILE` environment variable in `docker-compse.yml` to point to the file you want to run
```yml
environment:
FILE: "example.DummyComputation"
```
5. Run the container to build and execute the code
```
docker compose up --build
```