Skip to content

Commit

Permalink
Merge pull request #4661 from martinwolst/pulsar-faq
Browse files Browse the repository at this point in the history
FAQ for using data sources tools with Pulsar as default
  • Loading branch information
hexylena authored Jan 19, 2024
2 parents 0bf554d + d464f0c commit 6d58dcd
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CONTRIBUTORS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,11 @@ mwolfien:
name: Markus Wolfien
joined: 2017-09

martinwolst:
name: Martin Wolstencroft
joined: 2024-01
orcid: 0000-0002-6080-1710
elixir_node: uk
smza:
name: Munazah Andrabi
joined: 2023-09
Expand Down
24 changes: 24 additions & 0 deletions topics/admin/faqs/data-source-with-pulsar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Using data source tools with Pulsar
area: deployment
box_type: tip
layout: faq
contributors: [martinwolst]
---

Data source tools such as UCSC Main will fail if Pulsar is the default destination.

To fix this issue you can force individual tools to run on a specific destination or handler by adding to your job_conf file:

For job_conf.xml
```xml
<tools>
<tool id="ucsc_table_direct1" destination="my-local" />
</tools>
```
For job_conf.yml
```yml
tools:
- id: ucsc_table_direct1
handler: my-local
```

0 comments on commit 6d58dcd

Please sign in to comment.