Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```