Job integration
See original GitHub issueHi,
I’m testing the Job servicer and was looking at your docker-compose
file example in version 7.2.1
to run it locally. My understanding, since there’s no information anywhere about that, is that the storage should be share between the Web
and the Job
services. But, in the docker-compose
file, the Web
app stores in Redis and the Job
service locally (see excerpt below). Can you explain how to set those up properly.
Here’s my settings:
Web Service:
ConnectionStrings:
#Redis: server=""
Redis: server="localhost,abortConnect=false"
Elasticsearch: server=http://elastic:elastic@localhost:9200
Cache: provider=redis
MessageBus: provider=redis
Queue: provider=redis
Storage: provider=redis
OAuth: "DcorBaseUri=https://localhost:7100"
#Storage: provider=redis;path=..\..\DATA
#LDAP: ''
#Email: ""
...
# Base url for the ui used to build links in emails and other places.
BaseURL: 'http://localhost:7101/#!'
# Wether or not to run the jobs in process. Requires Redis to be configured when running jobs out of process.
RunJobsInProcess: false
AppScope: dev
Job Service:
ConnectionStrings:
Redis: server="localhost,abortConnect=false"
Elasticsearch: server=http://elastic:elastic@localhost:9200
Cache: provider=redis
MessageBus: provider=redis
Queue: provider=redis
#Storage: provider=redis #provider=folder;path=.\storage
Storage: provider=folder;path=.\storage
#Email: smtp://localhost:1025
# Base url for the ui used to build links in emails and other places.
BaseURL: "http://localhost:9001/#!"
#RunJobsInProcess: true
AppScope: dev
Issue Analytics
- State:
- Created 8 months ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
What is Career Integration? - Learning Abroad Center
The focus is primarily on integrating students' experiences abroad into their career and life planning. Career Integration is designed to: Apply the methodology ......
Read more >Workable's new Indeed Sponsored Jobs integration boosts ...
Workable already provides a free integration with Indeed that connects all your job postings to directly feed into Indeed. You can now use...
Read more >Job Board Integration - HR & Recruiting Glossary
Job board integration provides a way to take a job ad and post it to job boards so that it can be accessed...
Read more >Integration Jobs, Employment
188342 Integration jobs available on Indeed.com. Apply to Integration Specialist, Operations Manager, Technician and more!
Read more >Job Integrations
Glassdoor and Indeed have partnered to bring clients the power of our combined strengths in employer brand and hiring solutions.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok, I was able to test with both the Web and Job services pointing to the same folder, that worked. Now, if we want to use Redis as storage, is it possible?
Ok, this seems to have fixed the issue. Thanks for the help, much appreciated!