Skip to content
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
3 changes: 3 additions & 0 deletions docs/source/_static/css/glow.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ul.simple li p:last-of-type {
margin-bottom: 0px;
}
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

html_css_files = ['css/glow.css']

html_logo = '../../static/glow_logo_horiz_color_dark_bg.png'

html_favicon = '../../static/favicon.ico'
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ machine learning, enabling the scale of the cloud for genomics workflows.
getting-started
etl/index
tertiary/index
troubleshooting
additional-resources

.. modules
20 changes: 20 additions & 0 deletions docs/source/troubleshooting.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Troubleshooting
===============

- Job is slow or OOMs (throws an ``OutOfMemoryError``) while using an aggregate like ``collect_list`` or
``sample_call_summary_stats``

* Try disabling the `ObjectHashAggregate
<https://github.com/apache/spark/commit/27daf6bcde782ed3e0f0d951c90c8040fd47e985>`_ by setting
``spark.sql.execution.useObjectHashAggregateExec`` to ``false``

- Job is slow or OOMs while writing to partitioned table
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: the line spacing is awkward on rendering. The solution is closer to the next item than the item.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed by the css change

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice


* This error can occur when reading from highly compressed files. Try decreasing
``spark.files.maxPartitionBytes`` to a smaller value like ``33554432`` (32MB)

- My VCF looks weird after merging VCFs and saving with ``bigvcf``

* When saving to a VCF, the samples in the genotypes array must be in the same order for each row.
This ordering is not guaranteed when using ``collect_list`` to join multiple VCFs. Try sorting
the array using ``sort_array``.