Reputation: 775
Does Jenkins store build status information into a database on its own? Does it have a plugin to talk to an Oracle database? If yes, can the slaves running on remote sites do this on their own, without master having to do the database interaction?
I will be running Jenkins on remote sites.Won't network hiccups cause master to think that the build has failed?
Upvotes: 11
Views: 25729
Reputation: 325
You can configure Audit to Database plugin to store build data into DB using oracle, mysql, postgres, etc.
Regards!
Upvotes: 8
Reputation: 111565
Does Jenkins store build status information into a database on its own?
Everything is stored locally in XML files on the master.
Does it have a plugin to talk to an Oracle database?
No, for the reason above.
Won't network hiccups cause master to think that the build has failed?
Yes.
Upvotes: 22