-
Notifications
You must be signed in to change notification settings - Fork 922
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added faq for data sources with pulsar
- Loading branch information
1 parent
b1d9e82
commit 9a2b2da
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 prevent the error from occureing you can force individual tools to run on a different destination or handler by adding to the job_conf file like: | ||
|
||
|
||
```xml | ||
<tools> | ||
<tool id="longbar" destination="my-local" /> | ||
</tools> | ||
``` | ||
|
||
```yml | ||
tools: | ||
- id: longbar | ||
handler: my-local | ||
``` |