You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added ability for pserver to write provenance data as plain text using -prov_outputpath cmdline option
Services script now allows for disabling of pserver and provDB. If provDB is not used the pserver and AD will be automatically set to write provenance as plain text
Services script now waits for the provDB to exit before finishing up
addOptionalCommandLineArg(p, provdb_addr, "Address of the provenance database. If empty (default) the global function and counter statistics will not be send to the provenance DB.\nHas format \"ofi+tcp;ofi_rxm://${IP_ADDR}:${PORT}\". Should also accept \"tcp://${IP_ADDR}:${PORT}\"");
87
89
#endif
90
+
addOptionalCommandLineArg(p, prov_outputpath, "Output global provenance data to this directory. Can be used in place of or in conjunction with the provenance database. An empty string \"\" (default) disables this output");
91
+
88
92
89
93
init = true;
90
94
}
@@ -210,13 +214,25 @@ int main (int argc, char ** argv){
210
214
stat_sender.stop_stat_sender(1000);
211
215
212
216
#ifdef ENABLE_PROVDB
213
-
//Send final statistics to the provenance database
214
-
if(provdb_client.isConnected()){
215
-
progressStream << "Pserver: sending final statistics to provDB" << std::endl;
0 commit comments