jobs

Sending (pushing) Soap WS messages trough biztalk at given time

廉价感情. 提交于 2020-01-05 08:54:15
问题 I would like to know if someone could provide example or a link on some tutorial which would show how to send messages using soap as a job (at given time) trough biztalk. I have expirience doing this with in java enviroment with JMS, but Im doing it for the first time in .net and its technologies. What I need to do could be broken into steps. Create WCF SOAP service that would have one method for sending collection of data from our system to a vendors system trough BizTalk. Do this at given

Continue Jenkins job after failed stage while marking stage as failed

安稳与你 提交于 2020-01-05 07:19:13
问题 I currently have separate perf tests running as 4 jenkins stages. Currently if a perf test fails the entire pipeline fails. I can mitigate this by wrapping in a try catch which will let me continue, but will mark the stage as a success when it has actually failed. I'd like to get a red failure box for the stage that has failed, and allow the other stages to run. I'm not worried if Jenkins marks the entire job as a failure, so long as the stage that failed is highlighted and doesn't prevent

Why do grails Quartz jobs die after a few minutes on production?

允我心安 提交于 2020-01-05 05:18:10
问题 Using the grails Quartz plugin (latest stable version, 0.4.2), I have four different Jobs that run fine in my development environment, most of them every minute. However in the production environment, they run for a few minutes and then "die" - they just don't run anymore. There is no Exception thrown or similar. The rest of the application still works fine. Does anybody have an idea what the reason for this could be? Where / How should I start analyzing the problem? 回答1: I also ran into an

Redis Queue Failed Job is being logged to MySQL

点点圈 提交于 2020-01-03 19:16:32
问题 Queue driver is set to use Redis QUEUE_DRIVER=redis With php /opt/artisan queue:work --tries=1 --queue="data-ingestion-default" --daemon The error, we receive is [2016-09-14 08:32:40] lumen.ERROR: InvalidArgumentException: Database [mysql] not configured. in /opt/vendor/illuminate/database/DatabaseManager.php:239 Stack trace: #0 /opt/vendor/illuminate/database/DatabaseManager.php(158): Illuminate\Database\DatabaseManager->getConfig('mysql') #1 /opt/vendor/illuminate/database/DatabaseManager

How to get corresponding build artifacts of a job in jenkins ?

血红的双手。 提交于 2020-01-03 17:21:26
问题 I create Jenkins jobs using hudson.cli.CLI jar . I have selected "Archive the artifacts" option in the "Post-build steps" section. It archives the artifacts on each succesfull build. I am using jenkins remote access api http://localhost:8080/job/job_name/api/json to get details about jobs . and http://localhost:8080/job/job_name/job_number/api/json to get details about builds . When I delete a build corresponding archived artifacts are not deleted. I'd like to make sure that they are deleted.

How to get corresponding build artifacts of a job in jenkins ?

怎甘沉沦 提交于 2020-01-03 17:21:14
问题 I create Jenkins jobs using hudson.cli.CLI jar . I have selected "Archive the artifacts" option in the "Post-build steps" section. It archives the artifacts on each succesfull build. I am using jenkins remote access api http://localhost:8080/job/job_name/api/json to get details about jobs . and http://localhost:8080/job/job_name/job_number/api/json to get details about builds . When I delete a build corresponding archived artifacts are not deleted. I'd like to make sure that they are deleted.

Monitor and handle MSGW messages on a job on an IBM i-series (AS/400) from Java

风格不统一 提交于 2020-01-03 05:31:11
问题 Does anyone know how one can automatically reply to messages with status MSGW that block a job on an IBM i-series (AS/400)? I'm using the jt400/jtopen library to access a program on an AS/400 from Java. I'm using the com.ibm.as400.access.ProgramCall class, which works fine, unless the program fails for some reason. As with almost any program, failures will happen sometimes, but unfortunately, in this case, it does not result in a status message or an exception. Instead, the calling thread

Eclispe does not show progress bar of user threads

浪尽此生 提交于 2020-01-03 02:33:05
问题 I created some user jobs on start-up of eclipse, but after launching the workbench I am not able to see the progress bar. Is there anywhere I have to mention these threads other than making them user threads? protected IStatus run(IProgressMonitor monitor) { monitor.beginTask("Download", -1); for (ProxyBean network : ProxyBean.get()) { // do something } monitor.done(); return Status.OK_STATUS; } I initialize it in this way: job = new MyJob(); job.setUser(true); job.schedule();` 回答1: Check

Installing SIGTSTP Foreground Process

江枫思渺然 提交于 2020-01-02 10:18:30
问题 I am trying to install a CTRL-Z (SIGTSTP) handler for a running foreground process. I set the handler ( sigaction ) right before I wait in the parent. Is this the right place? It doesn't seem to work right.. EDIT: I am writing a shell. Here is an outline of how my code looks like. I currently set the handler in the parent as shown below (which doesn't seem to work). // input from user for command to run pid_t pid; pid = fork(); // Child Process if (pid == 0) { // handle child stuff here //

BlockingCollection or Queue<T> for jobs?

心已入冬 提交于 2020-01-02 01:30:11
问题 I am developing a windows forms application ( c# ), and while program is running, it creates objects adds them to a list. I have to process the items in the list , with FIFO ( first in first out ). I want to do this in a backgroundthread and i have to process them in order, number 1 , number 2, number 3 and so on. And as soon as an item gets added to the list i want to process it. So i have to have something to check that list. What is the best way to achieve this? I know that