Skip to content
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@
.settings
pom.xml.versionsBackup
target
tez-dist/src/docker/cache/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Optional parameters:
* `-Dtez.dag.state.classes=<comma-separated list of classes>`
(Default: DAG, Vertex, Task, TaskAttempt)
* `-Dtez.graphviz.title` (Default: Tez)
* `-Dtez.graphviz.output.file` (Default: Tez.gv)
* `-Dtez.graphviz.output.file` (Default: `tez-dag/target/Tez.gv`)

Example for `DAGImpl`:

Expand All @@ -197,7 +197,7 @@ mvn compile -Pvisualize \
Convert the `.gv` file to an image:

```bash
dot -Tpng -o Tez.png Tez.gv
dot -Tpng -o Tez.png tez-dag/target/Tez.gv
```

Building Contrib Tools
Expand Down
2 changes: 1 addition & 1 deletion tez-dag/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
org.apache.tez.dag.app.rm.node.AMNodeImpl,
org.apache.tez.dag.app.rm.container.AMContainerImpl</tez.dag.state.classes>
<tez.graphviz.title>Tez</tez.graphviz.title>
<tez.graphviz.output.file>Tez.gv</tez.graphviz.output.file>
<tez.graphviz.output.file>${project.build.directory}/Tez.gv</tez.graphviz.output.file>
</properties>
<artifactId>tez-dag</artifactId>

Expand Down
Loading