Cast Record Before Insert for Open Indexes
This change modifies the insert plan to perform cast for open
indexes before inserting to primary index. This avoids modification
of indexes and then doing complex work to try and undo the insert.
In addition, feeds can simply log and remove tuples which have
open fields of incompatible type.
Change-Id: I0eef5813ddbfe1b9c518cd7f92d37c95e8486914
Reviewed-on: https://asterix-gerrit.ics.uci.edu/997
Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Reviewed-by: Michael Blow <mblow@apache.org>
diff --git a/asterixdb/asterix-algebra/src/main/java/org/apache/asterix/optimizer/rules/IntroduceSecondaryIndexInsertDeleteRule.java b/asterixdb/asterix-algebra/src/main/java/org/apache/asterix/optimizer/rules/IntroduceSecondaryIndexInsertDeleteRule.java
index f5cfa2b..ae69093 100644
--- a/asterixdb/asterix-algebra/src/main/java/org/apache/asterix/optimizer/rules/IntroduceSecondaryIndexInsertDeleteRule.java
+++ b/asterixdb/asterix-algebra/src/main/java/org/apache/asterix/optimizer/rules/IntroduceSecondaryIndexInsertDeleteRule.java
@@ -146,8 +146,8 @@
AssignOperator assignOp = (AssignOperator) op2;
ILogicalExpression assignExpr = assignOp.getExpressions().get(0).getValue();
if (assignExpr.getExpressionTag() == LogicalExpressionTag.FUNCTION_CALL) {
- ScalarFunctionCallExpression funcExpr = (ScalarFunctionCallExpression) assignOp.getExpressions()
- .get(0).getValue();
+ ScalarFunctionCallExpression funcExpr =
+ (ScalarFunctionCallExpression) assignOp.getExpressions().get(0).getValue();
fid = funcExpr.getFunctionIdentifier();
}
}
@@ -214,10 +214,10 @@
}
// At this point, we have the data type info, and the indexes info as well
- // Initialize inputs to the SINK operator Op0 (The SINK) is now without input
if (secondaryIndexTotalCnt > 0) {
op0.getInputs().clear();
}
+ // Initialize inputs to the SINK operator Op0 (The SINK) is now without input
// Prepare filtering field information (This is the filter created using the "filter with" key word in the
// create dataset ddl)
@@ -247,11 +247,12 @@
try {
DatasetDataSource ds = (DatasetDataSource) (insertOp.getDataSource());
ARecordType insertRecType = (ARecordType) ds.getItemType();
- // A new variable which represents the casted record
- LogicalVariable castedRecVar = context.newVar();
// create the expected record type = the original + the optional open field
ARecordType enforcedType = createEnforcedType(insertRecType, indexes);
if (!enforcedType.equals(insertRecType)) {
+ // A new variable which represents the casted record
+ LogicalVariable castedRecVar = context.newVar();
+ context.addNotToBeInlinedVar(castedRecVar);
//introduce casting to enforced type
AbstractFunctionCallExpression castFunc = new ScalarFunctionCallExpression(
FunctionUtil.getFunctionInfo(AsterixBuiltinFunctions.CAST_RECORD));
@@ -260,14 +261,16 @@
.add(new MutableObject<ILogicalExpression>(insertOp.getPayloadExpression().getValue()));
TypeCastUtils.setRequiredAndInputTypes(castFunc, enforcedType, insertRecType);
// AssignOperator puts in the cast var the casted record
- AssignOperator castedRecordAssignOperator = new AssignOperator(castedRecVar,
- new MutableObject<ILogicalExpression>(castFunc));
+ AssignOperator castedRecordAssignOperator =
+ new AssignOperator(castedRecVar, new MutableObject<ILogicalExpression>(castFunc));
// Connect the current top of the plan to the cast operator
- castedRecordAssignOperator.getInputs().add(new MutableObject<ILogicalOperator>(currentTop));
- currentTop = castedRecordAssignOperator;
+ castedRecordAssignOperator.getInputs().addAll(currentTop.getInputs());
+ currentTop.getInputs().clear();
+ currentTop.getInputs().add(new MutableObject<>(castedRecordAssignOperator));
enforcedRecordVar = castedRecVar;
recType = enforcedType;
context.computeAndSetTypeEnvironmentForOperator(castedRecordAssignOperator);
+ context.computeAndSetTypeEnvironmentForOperator(currentTop);
// We don't need to cast the old rec, we just need an assignment function that extracts the SK
// and an expression which reference the new variables.
}
@@ -404,8 +407,8 @@
// Check the field type of the secondary key.
IAType secondaryKeyType = null;
- Pair<IAType, Boolean> keyPairType = Index.getNonNullableKeyFieldType(secondaryKeyFields.get(0),
- recType);
+ Pair<IAType, Boolean> keyPairType =
+ Index.getNonNullableKeyFieldType(secondaryKeyFields.get(0), recType);
secondaryKeyType = keyPairType.first;
List<Object> varTypes = new ArrayList<Object>();
@@ -430,11 +433,11 @@
tokenUpdate.getInputs().add(new MutableObject<ILogicalOperator>(assign));
context.computeAndSetTypeEnvironmentForOperator(tokenUpdate);
- IndexInsertDeleteUpsertOperator indexUpdate = new IndexInsertDeleteUpsertOperator(dataSourceIndex,
- insertOp.getPrimaryKeyExpressions(), tokenizeKeyExprs, filterExpression,
- insertOp.getOperation(), insertOp.isBulkload(),
- insertOp.getAdditionalNonFilteringExpressions() == null ? 0
- : insertOp.getAdditionalNonFilteringExpressions().size());
+ IndexInsertDeleteUpsertOperator indexUpdate =
+ new IndexInsertDeleteUpsertOperator(dataSourceIndex, insertOp.getPrimaryKeyExpressions(),
+ tokenizeKeyExprs, filterExpression, insertOp.getOperation(), insertOp.isBulkload(),
+ insertOp.getAdditionalNonFilteringExpressions() == null ? 0
+ : insertOp.getAdditionalNonFilteringExpressions().size());
indexUpdate.setAdditionalFilteringExpressions(filteringExpressions);
indexUpdate.getInputs().add(new MutableObject<ILogicalOperator>(tokenUpdate));
@@ -445,11 +448,11 @@
} else {
// When TokenizeOperator is not needed
- IndexInsertDeleteUpsertOperator indexUpdate = new IndexInsertDeleteUpsertOperator(dataSourceIndex,
- insertOp.getPrimaryKeyExpressions(), secondaryExpressions, filterExpression,
- insertOp.getOperation(), insertOp.isBulkload(),
- insertOp.getAdditionalNonFilteringExpressions() == null ? 0
- : insertOp.getAdditionalNonFilteringExpressions().size());
+ IndexInsertDeleteUpsertOperator indexUpdate =
+ new IndexInsertDeleteUpsertOperator(dataSourceIndex, insertOp.getPrimaryKeyExpressions(),
+ secondaryExpressions, filterExpression, insertOp.getOperation(),
+ insertOp.isBulkload(), insertOp.getAdditionalNonFilteringExpressions() == null ? 0
+ : insertOp.getAdditionalNonFilteringExpressions().size());
indexUpdate.setAdditionalFilteringExpressions(filteringExpressions);
// We add the necessary expressions for upsert
@@ -473,11 +476,11 @@
} else if (index.getIndexType() == IndexType.RTREE) {
// Get type, dimensions and number of keys
- Pair<IAType, Boolean> keyPairType = Index.getNonNullableOpenFieldType(secondaryKeyTypes.get(0),
- secondaryKeyFields.get(0), recType);
+ Pair<IAType, Boolean> keyPairType =
+ Index.getNonNullableOpenFieldType(secondaryKeyTypes.get(0), secondaryKeyFields.get(0), recType);
IAType spatialType = keyPairType.first;
- boolean isPointMBR = spatialType.getTypeTag() == ATypeTag.POINT
- || spatialType.getTypeTag() == ATypeTag.POINT3D;
+ boolean isPointMBR =
+ spatialType.getTypeTag() == ATypeTag.POINT || spatialType.getTypeTag() == ATypeTag.POINT3D;
int dimension = NonTaggedFormatUtil.getNumDimensions(spatialType.getTypeTag());
int numKeys = (isPointMBR && isBulkload) ? dimension : dimension * 2;
// Get variables and expressions
@@ -554,11 +557,11 @@
context.getOutputTypeEnvironment(assignCoordinates), forceFilter);
}
AqlIndex dataSourceIndex = new AqlIndex(index, dataverseName, datasetName, mp);
- IndexInsertDeleteUpsertOperator indexUpdate = new IndexInsertDeleteUpsertOperator(dataSourceIndex,
- insertOp.getPrimaryKeyExpressions(), secondaryExpressions, filterExpression,
- insertOp.getOperation(), insertOp.isBulkload(),
- insertOp.getAdditionalNonFilteringExpressions() == null ? 0
- : insertOp.getAdditionalNonFilteringExpressions().size());
+ IndexInsertDeleteUpsertOperator indexUpdate =
+ new IndexInsertDeleteUpsertOperator(dataSourceIndex, insertOp.getPrimaryKeyExpressions(),
+ secondaryExpressions, filterExpression, insertOp.getOperation(), insertOp.isBulkload(),
+ insertOp.getAdditionalNonFilteringExpressions() == null ? 0
+ : insertOp.getAdditionalNonFilteringExpressions().size());
indexUpdate.setAdditionalFilteringExpressions(filteringExpressions);
if (insertOp.getOperation() == Kind.UPSERT) {
// set old secondary key expressions
@@ -772,12 +775,12 @@
if (!NonTaggedFormatUtil.isOptional(secondaryKeyType) && !forceFilter) {
continue;
}
- ScalarFunctionCallExpression isUnknownFuncExpr = new ScalarFunctionCallExpression(
- FunctionUtil.getFunctionInfo(AsterixBuiltinFunctions.IS_UNKOWN),
- new MutableObject<ILogicalExpression>(new VariableReferenceExpression(secondaryKeyVar)));
- ScalarFunctionCallExpression notFuncExpr = new ScalarFunctionCallExpression(
- FunctionUtil.getFunctionInfo(AsterixBuiltinFunctions.NOT),
- new MutableObject<ILogicalExpression>(isUnknownFuncExpr));
+ ScalarFunctionCallExpression isUnknownFuncExpr =
+ new ScalarFunctionCallExpression(FunctionUtil.getFunctionInfo(AsterixBuiltinFunctions.IS_UNKOWN),
+ new MutableObject<ILogicalExpression>(new VariableReferenceExpression(secondaryKeyVar)));
+ ScalarFunctionCallExpression notFuncExpr =
+ new ScalarFunctionCallExpression(FunctionUtil.getFunctionInfo(AsterixBuiltinFunctions.NOT),
+ new MutableObject<ILogicalExpression>(isUnknownFuncExpr));
filterExpressions.add(new MutableObject<ILogicalExpression>(notFuncExpr));
}
// No nullable secondary keys.
diff --git a/asterixdb/asterix-app/data/external-parser/dropbox2/jobads3.txt b/asterixdb/asterix-app/data/external-parser/dropbox2/jobads3.txt
new file mode 100644
index 0000000..58c78f7
--- /dev/null
+++ b/asterixdb/asterix-app/data/external-parser/dropbox2/jobads3.txt
@@ -0,0 +1,7608 @@
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446112223;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.179100000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2696692,ChtcWrapper159.out,AuditLog.159,simu_3_159.txt,harvest.log,159.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.195400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.056100000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/159";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134176;
+ LastMatchTime = 1446112222;
+ LastJobLeaseRenewal = 1446134176;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582557;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=159 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446134177;
+ QDate = 1446105741;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/159/process.log";
+ JobCurrentStartDate = 1446112222;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "159+159";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 21954;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.152";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446134176;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446112222;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582557.0#31446105741";
+ RemoteSysCpu = 1.370000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.195400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e352.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/159/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125604;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.152:39021>#31444772294#39281#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 159+159";
+ CumulativeSlotTime = 2.195400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 21953;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = "I am of incorrect type";
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111648;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.235300000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_818403,ChtcWrapper211.out,AuditLog.211,simu_3_211.txt,harvest.log,211.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.252000000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.060300000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134167;
+ QDate = 1446105734;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134167;
+ LastMatchTime = 1446111647;
+ LastJobLeaseRenewal = 1446134167;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582533;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/211/process.log";
+ JobCurrentStartDate = 1446111647;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=211 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "211+211";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22520;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.61";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446134167;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111647;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582533.0#31446105734";
+ RemoteSysCpu = 1.370000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.252000000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e261.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/211/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126608;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.61:49736>#31444759807#36759#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 211+211";
+ CumulativeSlotTime = 2.252000000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22519;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/211"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446134109;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.400000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 7500;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,CURLTIME_137795,ChtcWrapper11021.out,R2011b_INFO,AuditLog.11021,SLIBS2.tar.gz,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 5124;
+ RemoteWallClockTime = 5.800000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727270000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 160;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 160;
+ RecentStatsLifetimeStarter = 48;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134165;
+ QDate = 1446134012;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134165;
+ LastMatchTime = 1446134107;
+ LastJobLeaseRenewal = 1446134165;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49584018;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/11021/process.log";
+ JobCurrentStartDate = 1446134107;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=11021 --";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "11021+11021";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 58;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.39";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446134165;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446134107;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349584018.0#31446134012";
+ RemoteSysCpu = 1.200000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 5.800000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 14;
+ LastRemoteHost = "slot1@e239.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/11021/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 5124;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.39:54850>#31445038698#35043#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 11021+11021";
+ CumulativeSlotTime = 5.800000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 14;
+ StreamErr = false;
+ DiskUsage_RAW = 1139127;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 56;
+ ImageSize = 7500;
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ WantGlidein = true;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/11021"
+ ]
+
+ [
+ BlockWrites = 4;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108996;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.477600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 100000;
+ StreamOut = false;
+ SpooledOutputFiles = "harvest.log,ChtcWrapper407.out,AuditLog.407,CURLTIME_1861323,407.out,simu_3_407.txt";
+ OnExitRemove = true;
+ ImageSize_RAW = 123648;
+ RemoteWallClockTime = 2.513300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.056100000000000E+04;
+ LastRejMatchReason = "PREEMPTION_REQUIREMENTS == False ";
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 3976;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 30280;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/407";
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134128;
+ LastMatchTime = 1446108995;
+ LastJobLeaseRenewal = 1446134128;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582261;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=407 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446134128;
+ QDate = 1446105631;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/407/process.log";
+ JobCurrentStartDate = 1446108995;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "407+407";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 25133;
+ AutoClusterId = 38210;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.55.48";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 16;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446134128;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108995;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582261.0#31446105631";
+ RemoteSysCpu = 2.770000000000000E+02;
+ LastRejMatchTime = 1446108994;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.513300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 906;
+ LastRemoteHost = "slot1@c029.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/407/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 76112;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.55.48:26476>#31445344800#31604#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 407+407";
+ CumulativeSlotTime = 2.513300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 313;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 25132;
+ ImageSize = 125000
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121054;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.293400000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_37424,ChtcWrapper409.out,AuditLog.409,simu_3_409.txt,harvest.log,409.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.305100000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.787300000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/409";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134104;
+ LastMatchTime = 1446121053;
+ LastJobLeaseRenewal = 1446134104;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583239;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=409 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446134104;
+ QDate = 1446106003;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/409/process.log";
+ JobCurrentStartDate = 1446121053;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "409+409";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 13051;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.242";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446134104;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121053;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583239.0#31446106003";
+ RemoteSysCpu = 9.300000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.305100000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e442.chtc.WISC.EDU";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/409/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127216;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.242:38884>#31443991450#310456#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 409+409";
+ CumulativeSlotTime = 1.305100000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 13050;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1445943853;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.852360000000000E+05;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.843670000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3753852,ChtcWrapper180.out,AuditLog.180,simu_3_180.txt,harvest.log,180.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.902470000000000E+05;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.076600000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134099;
+ QDate = 1445938922;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134099;
+ LastMatchTime = 1445943852;
+ LastJobLeaseRenewal = 1446134099;
+ DAGManNodesLog = "/home/xguo23/finally/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49573720;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally/Simulation_condor/model_3/180/process.log";
+ JobCurrentStartDate = 1445943852;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=180 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "180+180";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 190247;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.72";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49572657;
+ EnteredCurrentStatus = 1446134099;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1445943852;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349573720.0#31445938922";
+ RemoteSysCpu = 1.835000000000000E+03;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.902470000000000E+05;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e272.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally/Simulation_condor/data/180/,/home/xguo23/finally/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 123680;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.72:29075>#31444753997#36000#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 180+180";
+ CumulativeSlotTime = 1.902470000000000E+05;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 190245;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally/Simulation_condor/model_3/180"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446114726;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.908100000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 75000;
+ StreamOut = false;
+ SpooledOutputFiles = "harvest.log,232.out,ChtcWrapper232.out,AuditLog.232,CURLTIME_1864147,simu_3_232.txt";
+ OnExitRemove = true;
+ ImageSize_RAW = 118772;
+ RemoteWallClockTime = 1.933800000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.791100000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 12;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 26436;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134062;
+ QDate = 1446105779;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134062;
+ LastMatchTime = 1446114724;
+ LastJobLeaseRenewal = 1446134062;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582659;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/232/process.log";
+ JobCurrentStartDate = 1446114724;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=232 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "232+232";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 19338;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.55.48";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446134062;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446114724;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582659.0#31446105779";
+ RemoteSysCpu = 1.790000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.933800000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 615;
+ LastRemoteHost = "slot1@c029.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/232/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 71268;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.55.48:26476>#31445344800#31612#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 232+232";
+ CumulativeSlotTime = 1.933800000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 3;
+ StreamErr = false;
+ DiskUsage_RAW = 1216668;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 19336;
+ ImageSize = 125000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/232"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133964;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.200000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 7500;
+ StreamOut = false;
+ SpooledOutputFiles = "R2011b_INFO,CODEBLOWUP,AuditLog.10012,SLIBS2.tar.gz,ChtcWrapper10012.out,CURLTIME_2575055,chtcinnerwrapper";
+ OnExitRemove = true;
+ ImageSize_RAW = 5128;
+ RemoteWallClockTime = 7.700000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727355000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 160;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 160;
+ LocalSysCpu = 0.0;
+ WantGlidein = true;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/10012";
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 67;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134040;
+ LastMatchTime = 1446133963;
+ LastJobLeaseRenewal = 1446134040;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583905;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=10012 --";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446134040;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/10012/process.log";
+ JobCurrentStartDate = 1446133963;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ JobLeaseDuration = 2400;
+ QDate = 1446133888;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "10012+10012";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 77;
+ AutoClusterId = 38267;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.244.69";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446134040;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133963;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583905.0#31446133888";
+ RemoteSysCpu = 1.200000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 7.700000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 12;
+ LastRemoteHost = "slot1_2@e189.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/10012/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 5128;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.244.69:4177>#31444973293#33769#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 10012+10012";
+ CumulativeSlotTime = 7.700000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 12;
+ StreamErr = false;
+ DiskUsage_RAW = 1211433;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 76;
+ ImageSize = 7500
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115779;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.811800000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.847170000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3140097,ChtcWrapper3.out,AuditLog.3,simu_3_3.txt,harvest.log,3.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.824800000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.789600000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134026;
+ QDate = 1446105835;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134026;
+ LastMatchTime = 1446115778;
+ LastJobLeaseRenewal = 1446134026;
+ DAGManNodesLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582786;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/3/process.log";
+ JobCurrentStartDate = 1446115778;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=3 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "3+3";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 18248;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.107";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582778;
+ EnteredCurrentStatus = 1446134026;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115778;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582786.0#31446105835";
+ RemoteSysCpu = 1.080000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.824800000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e307.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.46/Simulation_condor/data/3/,/home/xguo23/model_3_1.46/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125940;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.107:63744>#31444685448#311070#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 3+3";
+ CumulativeSlotTime = 1.824800000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 18247;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.46/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/3"
+ ]
+
+ [
+ BlockWrites = 506;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133964;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.100000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 7500;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,SLIBS2.tar.gz,R2011b_INFO,AuditLog.20111,CURLTIME_1051736,ChtcWrapper20111.out,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 5056;
+ RemoteWallClockTime = 5.800000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727274000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 164;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 164;
+ LocalSysCpu = 0.0;
+ WantGlidein = true;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/20111";
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 43;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 506;
+ CompletionDate = 1446134021;
+ LastMatchTime = 1446133963;
+ LastJobLeaseRenewal = 1446134021;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583938;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=20111 --";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446134021;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/20111/process.log";
+ JobCurrentStartDate = 1446133963;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ JobLeaseDuration = 2400;
+ QDate = 1446133922;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "20111+20111";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 58;
+ AutoClusterId = 38259;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.244.37";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 249656;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446134021;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 249656;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133963;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583938.0#31446133922";
+ RemoteSysCpu = 7.000000000000000E+00;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 5.800000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 16;
+ LastRemoteHost = "slot1_10@e168.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/20111/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 5056;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.244.37:57713>#31445396629#32313#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 20111+20111";
+ CumulativeSlotTime = 5.800000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 16;
+ StreamErr = false;
+ DiskUsage_RAW = 1205568;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 52;
+ ImageSize = 7500
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115115;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.878200000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2890029,ChtcWrapper260.out,AuditLog.260,simu_3_260.txt,harvest.log,260.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.890300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.050700000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134017;
+ QDate = 1446105803;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134017;
+ LastMatchTime = 1446115114;
+ LastJobLeaseRenewal = 1446134017;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582724;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/260/process.log";
+ JobCurrentStartDate = 1446115114;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=260 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "260+260";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 18903;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.164";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446134017;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115114;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582724.0#31446105803";
+ RemoteSysCpu = 1.090000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.890300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e364.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/260/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 124924;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.164:7769>#31444760010#37999#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 260+260";
+ CumulativeSlotTime = 1.890300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 18902;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/260"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121413;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.249100000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_549258,ChtcWrapper419.out,AuditLog.419,simu_3_419.txt,harvest.log,419.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.260400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.048500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134016;
+ QDate = 1446106031;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134016;
+ LastMatchTime = 1446121412;
+ LastJobLeaseRenewal = 1446134016;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583316;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/419/process.log";
+ JobCurrentStartDate = 1446121412;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=419 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "419+419";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 12604;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.140";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446134016;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121412;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583316.0#31446106031";
+ RemoteSysCpu = 8.600000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.260400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e340.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/419/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125420;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.140:58412>#31444681013#39588#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 419+419";
+ CumulativeSlotTime = 1.260400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 12602;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/419"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133965;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.400000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 7500;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,CURLTIME_1010832,ChtcWrapper21020.out,R2011b_INFO,AuditLog.21020,SLIBS2.tar.gz,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 5124;
+ RemoteWallClockTime = 5.100000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727283000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 12;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 12;
+ LocalSysCpu = 0.0;
+ WantGlidein = true;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/21020";
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 40;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134015;
+ LastMatchTime = 1446133964;
+ LastJobLeaseRenewal = 1446134015;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583931;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=21020 --";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446134015;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/21020/process.log";
+ JobCurrentStartDate = 1446133964;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ JobLeaseDuration = 2400;
+ QDate = 1446133916;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "21020+21020";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 51;
+ AutoClusterId = 38259;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.36";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446134015;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133964;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583931.0#31446133916";
+ RemoteSysCpu = 8.000000000000000E+00;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 5.100000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 3;
+ LastRemoteHost = "slot1_10@e236.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/21020/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 5124;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.36:40852>#31445025971#34139#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 21020+21020";
+ CumulativeSlotTime = 5.100000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 3;
+ StreamErr = false;
+ DiskUsage_RAW = 1118707;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 49;
+ ImageSize = 7500
+ ]
+
+ [
+ BlockWrites = 1;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133965;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.200000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220267000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 7500;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,CURLTIME_517597,ChtcWrapper00202.out,R2011b_INFO,AuditLog.00202,SLIBS2.tar.gz,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 5064;
+ RemoteWallClockTime = 4.400000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727272000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 156;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 156;
+ RecentStatsLifetimeStarter = 32;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 1;
+ CompletionDate = 1446134008;
+ QDate = 1446133871;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134008;
+ LastMatchTime = 1446133964;
+ LastJobLeaseRenewal = 1446134008;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583894;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/00202/process.log";
+ JobCurrentStartDate = 1446133964;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=00202 --";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "00202+00202";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 44;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.58.28";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 32;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446134008;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 32;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133964;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583894.0#31446133871";
+ RemoteSysCpu = 7.000000000000000E+00;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 4.400000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 6;
+ LastRemoteHost = "slot1_23@e018.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/00202/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 5056;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.58.28:7648>#31445363387#32925#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 00202+00202";
+ CumulativeSlotTime = 4.400000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 6;
+ StreamErr = false;
+ DiskUsage_RAW = 1206795;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 42;
+ ImageSize = 7500;
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ WantGlidein = true;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/00202"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446116498;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.735700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_373303,ChtcWrapper280.out,AuditLog.280,simu_3_280.txt,harvest.log,280.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.750600000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.789400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446134003;
+ QDate = 1446105864;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446134003;
+ LastMatchTime = 1446116497;
+ LastJobLeaseRenewal = 1446134003;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582873;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/280/process.log";
+ JobCurrentStartDate = 1446116497;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=280 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "280+280";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 17506;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.244";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446134003;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446116497;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582873.0#31446105864";
+ RemoteSysCpu = 1.120000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.750600000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e444.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/280/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126200;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.244:1411>#31443991446#313109#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 280+280";
+ CumulativeSlotTime = 1.750600000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 17505;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/280"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133933;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.500000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 5000;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,CURLTIME_2149965,ChtcWrapper10200.out,R2011b_INFO,AuditLog.10200,SLIBS2.tar.gz,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 28840;
+ RemoteWallClockTime = 4.800000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727275000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 180;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 180;
+ LocalSysCpu = 0.0;
+ WantGlidein = true;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/10200";
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 37;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133980;
+ LastMatchTime = 1446133932;
+ LastJobLeaseRenewal = 1446133980;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583854;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=10200 --";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133980;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/10200/process.log";
+ JobCurrentStartDate = 1446133932;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ JobLeaseDuration = 2400;
+ QDate = 1446133826;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "10200+10200";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 48;
+ AutoClusterId = 38256;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.58.32";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446133980;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133932;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583854.0#31446133826";
+ RemoteSysCpu = 9.000000000000000E+00;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 4.800000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 12;
+ LastRemoteHost = "slot1_16@e022.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/10200/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 4816;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.58.32:31836>#31445317370#32779#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 10200+10200";
+ CumulativeSlotTime = 4.800000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 12;
+ StreamErr = false;
+ DiskUsage_RAW = 1206292;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 46;
+ ImageSize = 30000
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133934;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.500000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 5000;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,CURLTIME_2149966,ChtcWrapper11010.out,R2011b_INFO,AuditLog.11010,SLIBS2.tar.gz,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 4812;
+ RemoteWallClockTime = 4.700000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727276000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 36;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 36;
+ LocalSysCpu = 0.0;
+ WantGlidein = true;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/11010";
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 37;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133979;
+ LastMatchTime = 1446133932;
+ LastJobLeaseRenewal = 1446133979;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583856;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=11010 --";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133979;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/11010/process.log";
+ JobCurrentStartDate = 1446133932;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ JobLeaseDuration = 2400;
+ QDate = 1446133831;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "11010+11010";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 47;
+ AutoClusterId = 38257;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.58.32";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446133979;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133932;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583856.0#31446133831";
+ RemoteSysCpu = 1.100000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 4.700000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 3;
+ LastRemoteHost = "slot1_17@e022.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/11010/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 4812;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.58.32:31836>#31445317370#32817#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 11010+11010";
+ CumulativeSlotTime = 4.700000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 3;
+ StreamErr = false;
+ DiskUsage_RAW = 1206312;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 45;
+ ImageSize = 5000
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446133931;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.000000000000000E+01;
+ NiceUser = false;
+ BytesRecvd = 1.220270000000000E+06;
+ RequestMemory = 1000;
+ ResidentSetSize = 7500;
+ StreamOut = false;
+ SpooledOutputFiles = "chtcinnerwrapper,CURLTIME_2893592,ChtcWrapper01100.out,R2011b_INFO,AuditLog.01100,SLIBS2.tar.gz,CODEBLOWUP";
+ OnExitRemove = true;
+ ImageSize_RAW = 5048;
+ RemoteWallClockTime = 4.000000000000000E+01;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 5;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.727275000000000E+06;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 108;
+ TransferInputSizeMB = 1;
+ Matlab = "R2011b";
+ BlockReadKbytes = 108;
+ LocalSysCpu = 0.0;
+ WantGlidein = true;
+ Iwd = "/home/dentler/ChtcRun/project_auction/results_fix2/01100";
+ Cmd = "/home/dentler/ChtcRun/chtcjobwrapper";
+ RecentStatsLifetimeStarter = 30;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "dentler";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133970;
+ LastMatchTime = 1446133930;
+ LastJobLeaseRenewal = 1446133970;
+ DAGManNodesLog = "/home/dentler/ChtcRun/project_auction/results_fix2/./mydag.dag.nodes.log";
+ ClusterId = 49583811;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=net_est --unique=01100 --";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133971;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "dentler@chtc.wisc.edu";
+ UserLog = "/home/dentler/ChtcRun/project_auction/results_fix2/01100/process.log";
+ JobCurrentStartDate = 1446133930;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ JobLeaseDuration = 2400;
+ QDate = 1446133780;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "01100+01100";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 40;
+ AutoClusterId = 38254;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.6";
+ WantFlocking = true;
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49583804;
+ EnteredCurrentStatus = 1446133970;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446133930;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583811.0#31446133780";
+ RemoteSysCpu = 6.000000000000000E+00;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 4.000000000000000E+01;
+ WantCheckpoint = false;
+ BlockReads = 8;
+ LastRemoteHost = "slot1@e206.chtc.wisc.edu";
+ TransferInput = "/home/dentler/ChtcRun/project_auction/01100/,/home/dentler/ChtcRun/project_auction/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 4000000;
+ ResidentSetSize_RAW = 5044;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.6:9783>#31444977535#32490#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 01100+01100";
+ CumulativeSlotTime = 4.000000000000000E+01;
+ JobRunCount = 1;
+ RecentBlockReads = 8;
+ StreamErr = false;
+ DiskUsage_RAW = 1206320;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 39;
+ ImageSize = 7500
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115779;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.805400000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1401618,ChtcWrapper440.out,AuditLog.440,simu_3_440.txt,harvest.log,440.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.818900000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.791400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/440";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133967;
+ LastMatchTime = 1446115778;
+ LastJobLeaseRenewal = 1446133967;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582782;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=440 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133967;
+ QDate = 1446105831;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/440/process.log";
+ JobCurrentStartDate = 1446115778;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "440+440";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 18189;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.158";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133967;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115778;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582782.0#31446105831";
+ RemoteSysCpu = 1.050000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.818900000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e358.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/440/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125632;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.158:24962>#31444759998#39425#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 440+440";
+ CumulativeSlotTime = 1.818900000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 18187;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446116499;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.730600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.847180000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_373315,ChtcWrapper43.out,AuditLog.43,simu_3_43.txt,harvest.log,43.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.743500000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.047900000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133932;
+ QDate = 1446105869;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133932;
+ LastMatchTime = 1446116497;
+ LastJobLeaseRenewal = 1446133932;
+ DAGManNodesLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582878;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/43/process.log";
+ JobCurrentStartDate = 1446116497;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=43 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "43+43";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 17435;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.244";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582778;
+ EnteredCurrentStatus = 1446133932;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446116497;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582878.0#31446105869";
+ RemoteSysCpu = 1.060000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.743500000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e444.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.46/Simulation_condor/data/43/,/home/xguo23/model_3_1.46/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 124328;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.244:1411>#31443991446#313114#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 43+43";
+ CumulativeSlotTime = 1.743500000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 17433;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.46/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/43"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446107688;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.608800000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1114551,ChtcWrapper162.out,AuditLog.162,simu_3_162.txt,harvest.log,162.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.623300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.061200000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/162";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133919;
+ LastMatchTime = 1446107686;
+ LastJobLeaseRenewal = 1446133919;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582148;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=162 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133919;
+ QDate = 1446105547;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/162/process.log";
+ JobCurrentStartDate = 1446107686;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "162+162";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 26233;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.170";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133919;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446107686;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582148.0#31446105547";
+ RemoteSysCpu = 9.600000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.623300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e370.chtc.WISC.EDU";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/162/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126384;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.170:9482>#31443991414#313008#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 162+162";
+ CumulativeSlotTime = 2.623300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 26230;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108829;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.496600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846120000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2607549,ChtcWrapper10.out,AuditLog.10,simu_3_10.txt,harvest.log,10.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.508200000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.065900000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133909;
+ QDate = 1446105622;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133909;
+ LastMatchTime = 1446108827;
+ LastJobLeaseRenewal = 1446133909;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582236;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/10/process.log";
+ JobCurrentStartDate = 1446108827;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=10 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "10+10";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 25082;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.245";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133909;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108827;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582236.0#31446105622";
+ RemoteSysCpu = 8.300000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.508200000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e445.chtc.WISC.EDU";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/10/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126500;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.245:48407>#31443991450#314655#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 10+10";
+ CumulativeSlotTime = 2.508200000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 25080;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/10"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108668;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.508000000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2577757,ChtcWrapper343.out,AuditLog.343,simu_3_343.txt,harvest.log,343.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.524100000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.179800000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/343";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133907;
+ LastMatchTime = 1446108666;
+ LastJobLeaseRenewal = 1446133907;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582187;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=343 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133907;
+ QDate = 1446105592;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/343/process.log";
+ JobCurrentStartDate = 1446108666;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "343+343";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 25241;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.141";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133907;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108666;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582187.0#31446105592";
+ RemoteSysCpu = 1.270000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.524100000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e341.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/343/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127540;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.141:7534>#31444673425#39467#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 343+343";
+ CumulativeSlotTime = 2.524100000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 25238;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111453;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.230000000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1700927,ChtcWrapper300.out,AuditLog.300,simu_3_300.txt,harvest.log,300.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.243000000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.791500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133882;
+ QDate = 1446105728;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133883;
+ LastMatchTime = 1446111452;
+ LastJobLeaseRenewal = 1446133882;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582525;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/300/process.log";
+ JobCurrentStartDate = 1446111452;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=300 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "300+300";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22430;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.126";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133882;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111452;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582525.0#31446105728";
+ RemoteSysCpu = 1.120000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.243000000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e326.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/300/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126740;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.126:40098>#31444759970#37928#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 300+300";
+ CumulativeSlotTime = 2.243000000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22429;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/300"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111812;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.189700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846130000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1702594,ChtcWrapper220.out,AuditLog.220,simu_3_220.txt,harvest.log,220.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.205200000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.834400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/220";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133862;
+ LastMatchTime = 1446111810;
+ LastJobLeaseRenewal = 1446133862;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582540;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=220 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133862;
+ QDate = 1446105734;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/220/process.log";
+ JobCurrentStartDate = 1446111810;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "220+220";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22052;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.126";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133862;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111810;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582540.0#31446105734";
+ RemoteSysCpu = 1.270000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.205200000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e326.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/220/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126940;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.126:40098>#31444759970#37932#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 220+220";
+ CumulativeSlotTime = 2.205200000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22050;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446109804;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.389400000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846280000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3652530,ChtcWrapper61.out,AuditLog.61,simu_3_61.txt,harvest.log,61.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.404400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.050000000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133847;
+ QDate = 1446105651;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133847;
+ LastMatchTime = 1446109803;
+ LastJobLeaseRenewal = 1446133847;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582313;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/61/process.log";
+ JobCurrentStartDate = 1446109803;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=61 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "61+61";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 24044;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.92";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133847;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446109803;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582313.0#31446105651";
+ RemoteSysCpu = 1.130000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.404400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e292.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/61/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 128692;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.92:44347>#31444759907#38412#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 61+61";
+ CumulativeSlotTime = 2.404400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 24043;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/61"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446114862;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.884700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_930697,ChtcWrapper313.out,AuditLog.313,simu_3_313.txt,harvest.log,313.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.898500000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.789600000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133846;
+ QDate = 1446105797;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133846;
+ LastMatchTime = 1446114861;
+ LastJobLeaseRenewal = 1446133846;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582699;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/313/process.log";
+ JobCurrentStartDate = 1446114861;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=313 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "313+313";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 18985;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.157";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133846;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446114861;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582699.0#31446105797";
+ RemoteSysCpu = 1.070000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.898500000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e357.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/313/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126756;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.157:33109>#31444685526#38861#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 313+313";
+ CumulativeSlotTime = 1.898500000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 18984;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/313"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108667;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.495700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3925831,ChtcWrapper181.out,AuditLog.181,simu_3_181.txt,harvest.log,181.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.514800000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.055700000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133813;
+ QDate = 1446105586;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133813;
+ LastMatchTime = 1446108665;
+ LastJobLeaseRenewal = 1446133813;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582181;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/181/process.log";
+ JobCurrentStartDate = 1446108665;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=181 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "181+181";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 25148;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.102";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133813;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108665;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582181.0#31446105586";
+ RemoteSysCpu = 1.480000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.514800000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e302.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/181/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125368;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.102:26944>#31443991374#313401#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 181+181";
+ CumulativeSlotTime = 2.514800000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 25146;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/181"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115400;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.826600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2614862,ChtcWrapper170.out,AuditLog.170,simu_3_170.txt,harvest.log,170.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.841100000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.823900000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133810;
+ QDate = 1446105819;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133810;
+ LastMatchTime = 1446115399;
+ LastJobLeaseRenewal = 1446133810;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582760;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/170/process.log";
+ JobCurrentStartDate = 1446115399;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=170 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "170+170";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 18411;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.113";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133810;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115399;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582760.0#31446105819";
+ RemoteSysCpu = 1.040000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.841100000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e313.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/170/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125400;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.113:56191>#31443991385#310335#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 170+170";
+ CumulativeSlotTime = 1.841100000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 18410;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/170"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115779;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.787500000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_24492,ChtcWrapper270.out,AuditLog.270,simu_3_270.txt,harvest.log,270.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.802300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.787700000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133801;
+ QDate = 1446105831;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133801;
+ LastMatchTime = 1446115778;
+ LastJobLeaseRenewal = 1446133801;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582783;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/270/process.log";
+ JobCurrentStartDate = 1446115778;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=270 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "270+270";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 18023;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.242";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133801;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115778;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582783.0#31446105831";
+ RemoteSysCpu = 1.150000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.802300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e442.chtc.WISC.EDU";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/270/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127404;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.242:38884>#31443991450#310410#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 270+270";
+ CumulativeSlotTime = 1.802300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 18022;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/270"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446106291;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.728800000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850530000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_4096502,ChtcWrapper82.out,AuditLog.82,simu_3_82.txt,harvest.log,82.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.749100000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.055300000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/82";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133781;
+ LastMatchTime = 1446106290;
+ LastJobLeaseRenewal = 1446133781;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49581989;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=82 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133782;
+ QDate = 1446105374;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/82/process.log";
+ JobCurrentStartDate = 1446106290;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "82+82";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 27491;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.233";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133781;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446106290;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349581989.0#31446105374";
+ RemoteSysCpu = 1.730000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.749100000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e433.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/82/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126932;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.233:28601>#31443991451#313496#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 82+82";
+ CumulativeSlotTime = 2.749100000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 27490;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111076;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.255200000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846120000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1529941,ChtcWrapper69.out,AuditLog.69,simu_3_69.txt,harvest.log,69.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.270200000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.055200000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133776;
+ QDate = 1446105717;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133776;
+ LastMatchTime = 1446111074;
+ LastJobLeaseRenewal = 1446133776;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582489;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/69/process.log";
+ JobCurrentStartDate = 1446111074;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=69 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "69+69";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22702;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.237";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133776;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111074;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582489.0#31446105717";
+ RemoteSysCpu = 1.220000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.270200000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e437.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/69/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126444;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.237:1373>#31444673410#38302#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 69+69";
+ CumulativeSlotTime = 2.270200000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22699;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/69"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446106063;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.751000000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850530000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_369560,ChtcWrapper40.out,AuditLog.40,simu_3_40.txt,harvest.log,40.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.767600000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.058400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133737;
+ QDate = 1446105329;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133737;
+ LastMatchTime = 1446106061;
+ LastJobLeaseRenewal = 1446133737;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49581952;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/40/process.log";
+ JobCurrentStartDate = 1446106061;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=40 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "40+40";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 27676;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.86";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133737;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446106061;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349581952.0#31446105329";
+ RemoteSysCpu = 1.050000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.767600000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e286.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/40/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127252;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.86:32129>#31444759888#36329#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 40+40";
+ CumulativeSlotTime = 2.767600000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 27674;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/40"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108830;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.472900000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846270000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1151628,ChtcWrapper6.out,AuditLog.6,simu_3_6.txt,harvest.log,6.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.490000000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.054300000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133728;
+ QDate = 1446105617;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133728;
+ LastMatchTime = 1446108828;
+ LastJobLeaseRenewal = 1446133728;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582222;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/6/process.log";
+ JobCurrentStartDate = 1446108828;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=6 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "6+6";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 24900;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.67";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133728;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108828;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582222.0#31446105617";
+ RemoteSysCpu = 1.290000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.490000000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e267.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/6/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126592;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.67:65111>#31444759823#35994#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 6+6";
+ CumulativeSlotTime = 2.490000000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 24898;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/6"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121056;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.254900000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846130000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_548136,ChtcWrapper239.out,AuditLog.239,simu_3_239.txt,harvest.log,239.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.265600000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.822000000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133710;
+ QDate = 1446106014;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133710;
+ LastMatchTime = 1446121054;
+ LastJobLeaseRenewal = 1446133710;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583278;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/239/process.log";
+ JobCurrentStartDate = 1446121054;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=239 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "239+239";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 12656;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.140";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133710;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121054;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583278.0#31446106014";
+ RemoteSysCpu = 8.800000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.265600000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e340.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/239/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 124780;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.140:58412>#31444681013#39585#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 239+239";
+ CumulativeSlotTime = 1.265600000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 12654;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/239"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446110792;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.280000000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846280000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_915408,ChtcWrapper66.out,AuditLog.66,simu_3_66.txt,harvest.log,66.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.291100000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.053400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133701;
+ QDate = 1446105690;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133701;
+ LastMatchTime = 1446110790;
+ LastJobLeaseRenewal = 1446133701;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582421;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/66/process.log";
+ JobCurrentStartDate = 1446110790;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=66 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "66+66";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22911;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.244.247";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133701;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446110790;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582421.0#31446105690";
+ RemoteSysCpu = 8.100000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.291100000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e455.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/66/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126672;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.244.247:44193>#31444685638#35766#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 66+66";
+ CumulativeSlotTime = 2.291100000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22909;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/66"
+ ]
+
+ [
+ BlockWrites = 1;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108666;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.477000000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 75000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_4179033,ChtcWrapper145.out,AuditLog.145,simu_3_145.txt,harvest.log,145.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 120972;
+ RemoteWallClockTime = 2.502600000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.829000000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 1932;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 28476;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 1;
+ CompletionDate = 1446133691;
+ QDate = 1446105581;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133691;
+ LastMatchTime = 1446108665;
+ LastJobLeaseRenewal = 1446133691;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582177;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/145/process.log";
+ JobCurrentStartDate = 1446108665;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=145 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "145+145";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 25026;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.55.57";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 4;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133691;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 4;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108665;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582177.0#31446105581";
+ RemoteSysCpu = 2.170000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.502600000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 796;
+ LastRemoteHost = "slot1@c038.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/145/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 73308;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.55.57:49793>#31445322694#31541#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 145+145";
+ CumulativeSlotTime = 2.502600000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 146;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 25025;
+ ImageSize = 125000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/145"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446109354;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.414700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846280000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3304508,ChtcWrapper33.out,AuditLog.33,simu_3_33.txt,harvest.log,33.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.429700000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.168400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133650;
+ QDate = 1446105640;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133650;
+ LastMatchTime = 1446109353;
+ LastJobLeaseRenewal = 1446133650;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582283;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/33/process.log";
+ JobCurrentStartDate = 1446109353;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=33 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "33+33";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 24297;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.75";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133650;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446109353;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582283.0#31446105640";
+ RemoteSysCpu = 1.350000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.429700000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e275.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/33/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126564;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.75:36755>#31444759846#38529#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 33+33";
+ CumulativeSlotTime = 2.429700000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 24295;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/33"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111076;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.239700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846120000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2637965,ChtcWrapper87.out,AuditLog.87,simu_3_87.txt,harvest.log,87.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.257500000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.790500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133649;
+ QDate = 1446105716;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133649;
+ LastMatchTime = 1446111074;
+ LastJobLeaseRenewal = 1446133649;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582487;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/87/process.log";
+ JobCurrentStartDate = 1446111074;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=87 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "87+87";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22575;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.127";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133649;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111074;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582487.0#31446105716";
+ RemoteSysCpu = 1.250000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.257500000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e327.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/87/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 128908;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.127:48134>#31443991405#38558#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 87+87";
+ CumulativeSlotTime = 2.257500000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22573;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/87"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111995;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.147700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846130000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2585208,ChtcWrapper121.out,AuditLog.121,simu_3_121.txt,harvest.log,121.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.163500000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.050500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133628;
+ QDate = 1446105740;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133628;
+ LastMatchTime = 1446111993;
+ LastJobLeaseRenewal = 1446133628;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582553;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/121/process.log";
+ JobCurrentStartDate = 1446111993;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=121 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "121+121";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 21635;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.141";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133628;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111993;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582553.0#31446105740";
+ RemoteSysCpu = 1.340000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.163500000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e341.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/121/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126224;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.141:7534>#31444673425#39485#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 121+121";
+ CumulativeSlotTime = 2.163500000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 21632;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/121"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108829;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.463100000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846280000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_908930,ChtcWrapper23.out,AuditLog.23,simu_3_23.txt,harvest.log,23.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.479800000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.053400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/23";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133626;
+ LastMatchTime = 1446108828;
+ LastJobLeaseRenewal = 1446133626;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582256;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=23 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133627;
+ QDate = 1446105629;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/23/process.log";
+ JobCurrentStartDate = 1446108828;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "23+23";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 24798;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.244.247";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133626;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108828;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582256.0#31446105629";
+ RemoteSysCpu = 1.320000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.479800000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e455.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/23/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126760;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.244.247:44193>#31444685638#35758#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 23+23";
+ CumulativeSlotTime = 2.479800000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 24797;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446106484;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.689500000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2158419,ChtcWrapper301.out,AuditLog.301,simu_3_301.txt,harvest.log,301.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.714300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.190500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133625;
+ QDate = 1446105441;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133625;
+ LastMatchTime = 1446106482;
+ LastJobLeaseRenewal = 1446133625;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582050;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/301/process.log";
+ JobCurrentStartDate = 1446106482;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=301 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "301+301";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 27143;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.172";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133625;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446106482;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582050.0#31446105441";
+ RemoteSysCpu = 2.010000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.714300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e372.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/301/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126464;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.172:19856>#31444760019#39307#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 301+301";
+ CumulativeSlotTime = 2.714300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 27141;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/301"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111075;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.237100000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846280000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3353135,ChtcWrapper86.out,AuditLog.86,simu_3_86.txt,harvest.log,86.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.252000000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.049800000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133594;
+ QDate = 1446105706;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133594;
+ LastMatchTime = 1446111074;
+ LastJobLeaseRenewal = 1446133594;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582462;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/86/process.log";
+ JobCurrentStartDate = 1446111074;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=86 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "86+86";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22520;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.185";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133594;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111074;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582462.0#31446105706";
+ RemoteSysCpu = 1.200000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.252000000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e385.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/86/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125772;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.185:43838>#31443991427#312472#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 86+86";
+ CumulativeSlotTime = 2.252000000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22519;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/86"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446107688;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.569200000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_523030,ChtcWrapper333.out,AuditLog.333,simu_3_333.txt,harvest.log,333.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.587600000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.054200000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133562;
+ QDate = 1446105553;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133562;
+ LastMatchTime = 1446107686;
+ LastJobLeaseRenewal = 1446133562;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582154;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/333/process.log";
+ JobCurrentStartDate = 1446107686;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=333 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "333+333";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 25876;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.120";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133562;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446107686;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582154.0#31446105553";
+ RemoteSysCpu = 1.570000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.587600000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e320.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/333/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125740;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.120:45185>#31443991409#314242#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 333+333";
+ CumulativeSlotTime = 2.587600000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 25874;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/333"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121056;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.239800000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846130000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2796351,ChtcWrapper194.out,AuditLog.194,simu_3_194.txt,harvest.log,194.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.250100000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.791500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133555;
+ QDate = 1446106019;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133555;
+ LastMatchTime = 1446121054;
+ LastJobLeaseRenewal = 1446133555;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583285;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/194/process.log";
+ JobCurrentStartDate = 1446121054;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=194 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "194+194";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 12501;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.73";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133555;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121054;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583285.0#31446106020";
+ RemoteSysCpu = 8.700000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.250100000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e273.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/194/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125892;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.73:33900>#31444759838#39136#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 194+194";
+ CumulativeSlotTime = 1.250100000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 12499;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/194"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446108668;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.462600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1382128,ChtcWrapper154.out,AuditLog.154,simu_3_154.txt,harvest.log,154.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.487400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.055900000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133540;
+ QDate = 1446105581;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133540;
+ LastMatchTime = 1446108666;
+ LastJobLeaseRenewal = 1446133540;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582178;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/154/process.log";
+ JobCurrentStartDate = 1446108666;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=154 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "154+154";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 24874;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.158";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133540;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446108666;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582178.0#31446105581";
+ RemoteSysCpu = 1.830000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.487400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e358.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/154/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125792;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.158:24962>#31444759998#39379#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 154+154";
+ CumulativeSlotTime = 2.487400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 24871;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/154"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446107491;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.593900000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_522843,ChtcWrapper206.out,AuditLog.206,simu_3_206.txt,harvest.log,206.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.604500000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.059600000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133535;
+ QDate = 1446105509;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133535;
+ LastMatchTime = 1446107490;
+ LastJobLeaseRenewal = 1446133535;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582113;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/206/process.log";
+ JobCurrentStartDate = 1446107490;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=206 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "206+206";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 26045;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.120";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133535;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446107490;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582113.0#31446105509";
+ RemoteSysCpu = 8.700000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.604500000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e320.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/206/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126460;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.120:45185>#31443991409#314238#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 206+206";
+ CumulativeSlotTime = 2.604500000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 26044;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/206"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115925;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.747100000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.847180000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3813186,ChtcWrapper31.out,AuditLog.31,simu_3_31.txt,harvest.log,31.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.760500000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.790500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133529;
+ QDate = 1446105852;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133529;
+ LastMatchTime = 1446115924;
+ LastJobLeaseRenewal = 1446133528;
+ DAGManNodesLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582831;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/31/process.log";
+ JobCurrentStartDate = 1446115924;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=31 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "31+31";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 17604;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.65";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582778;
+ EnteredCurrentStatus = 1446133529;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115924;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582831.0#31446105852";
+ RemoteSysCpu = 1.010000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.760400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e265.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.46/Simulation_condor/data/31/,/home/xguo23/model_3_1.46/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 124912;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.65:22193>#31444759815#39517#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 31+31";
+ CumulativeSlotTime = 1.760500000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 17603;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.46/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/31"
+ ]
+
+ [
+ BlockWrites = 1;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111277;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.204300000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 75000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_935737,ChtcWrapper201.out,AuditLog.201,simu_3_201.txt,harvest.log,201.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 117304;
+ RemoteWallClockTime = 2.224300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.048300000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 4868;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 81056;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/201";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 1;
+ CompletionDate = 1446133519;
+ LastMatchTime = 1446111276;
+ LastJobLeaseRenewal = 1446133519;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582511;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=201 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133520;
+ QDate = 1446105723;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/201/process.log";
+ JobCurrentStartDate = 1446111276;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "201+201";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22243;
+ AutoClusterId = 13;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.55.68";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 4;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133519;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 4;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111276;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582511.0#31446105723";
+ RemoteSysCpu = 1.330000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.224300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 1906;
+ LastRemoteHost = "slot1@c049.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/201/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 72052;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.55.68:4958>#31445345121#31580#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 201+201";
+ CumulativeSlotTime = 2.224300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 460;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22242;
+ ImageSize = 125000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446107491;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.584400000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.850540000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3651606,ChtcWrapper304.out,AuditLog.304,simu_3_304.txt,harvest.log,304.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.602200000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.180100000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133511;
+ QDate = 1446105492;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133511;
+ LastMatchTime = 1446107489;
+ LastJobLeaseRenewal = 1446133511;
+ DAGManNodesLog = "/home/xguo23/finally_2/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582098;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/finally_2/Simulation_condor/model_3/304/process.log";
+ JobCurrentStartDate = 1446107489;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=304 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "304+304";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 26022;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.223";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49581933;
+ EnteredCurrentStatus = 1446133511;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446107489;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582098.0#31446105492";
+ RemoteSysCpu = 1.430000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.602200000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e423.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/finally_2/Simulation_condor/data/304/,/home/xguo23/finally_2/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 128776;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.223:13467>#31444760039#36376#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 304+304";
+ CumulativeSlotTime = 2.602200000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 26020;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/finally_2/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/finally_2/Simulation_condor/model_3/304"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111075;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.227800000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846120000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2507136,ChtcWrapper58.out,AuditLog.58,simu_3_58.txt,harvest.log,58.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.239400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.049900000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133468;
+ QDate = 1446105706;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133468;
+ LastMatchTime = 1446111074;
+ LastJobLeaseRenewal = 1446133468;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582460;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/58/process.log";
+ JobCurrentStartDate = 1446111074;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=58 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "58+58";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22394;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.184";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133468;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111074;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582460.0#31446105706";
+ RemoteSysCpu = 8.100000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.239400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e384.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/58/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127308;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.184:62907>#31443991428#313854#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 58+58";
+ CumulativeSlotTime = 2.239400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22393;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/58"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121054;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.224900000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2948896,ChtcWrapper275.out,AuditLog.275,simu_3_275.txt,harvest.log,275.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.236300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.050600000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133415;
+ QDate = 1446106008;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133415;
+ LastMatchTime = 1446121052;
+ LastJobLeaseRenewal = 1446133415;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583254;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/275/process.log";
+ JobCurrentStartDate = 1446121052;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=275 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "275+275";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 12363;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.163";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133415;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121052;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583254.0#31446106008";
+ RemoteSysCpu = 9.500000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.236300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e363.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/275/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126732;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.163:21972>#31443991420#310986#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 275+275";
+ CumulativeSlotTime = 1.236300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 12361;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/275"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446113039;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.021400000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2647255,ChtcWrapper213.out,AuditLog.213,simu_3_213.txt,harvest.log,213.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.037200000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.050700000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133410;
+ QDate = 1446105762;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133410;
+ LastMatchTime = 1446113038;
+ LastJobLeaseRenewal = 1446133410;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582610;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/213/process.log";
+ JobCurrentStartDate = 1446113038;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=213 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "213+213";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 20372;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.219";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133410;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446113038;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582610.0#31446105762";
+ RemoteSysCpu = 1.320000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.037200000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e419.chtc.WISC.EDU";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/213/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 124944;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.219:51004>#31443991439#314297#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 213+213";
+ CumulativeSlotTime = 2.037200000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 20371;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/213"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111076;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.211700000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846120000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2507151,ChtcWrapper88.out,AuditLog.88,simu_3_88.txt,harvest.log,88.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.228000000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.790500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/88";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133355;
+ LastMatchTime = 1446111075;
+ LastJobLeaseRenewal = 1446133355;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582491;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=88 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133355;
+ QDate = 1446105717;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/88/process.log";
+ JobCurrentStartDate = 1446111075;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "88+88";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22280;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.184";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133355;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111075;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582491.0#31446105717";
+ RemoteSysCpu = 1.440000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.228000000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e384.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/88/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126084;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.184:62907>#31443991428#313858#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 88+88";
+ CumulativeSlotTime = 2.228000000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22279;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121414;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.171400000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846130000000000E+05;
+ ResidentSetSize = 125000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_1549103,ChtcWrapper392.out,AuditLog.392,simu_3_392.txt,harvest.log,392.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.194200000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.050400000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133355;
+ QDate = 1446106036;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133355;
+ LastMatchTime = 1446121413;
+ LastJobLeaseRenewal = 1446133355;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583329;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/392/process.log";
+ JobCurrentStartDate = 1446121413;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=392 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "392+392";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 11942;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.104.101.129";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133355;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121413;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583329.0#31446106036";
+ RemoteSysCpu = 8.100000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.194200000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e129.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/392/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 119932;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.104.101.129:24642>#31444053399#313743#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 392+392";
+ CumulativeSlotTime = 1.194200000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 11940;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/392"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111812;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.139200000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3934729,ChtcWrapper121.out,AuditLog.121,simu_3_121.txt,harvest.log,121.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.153400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 3.055700000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133345;
+ QDate = 1446105734;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133345;
+ LastMatchTime = 1446111811;
+ LastJobLeaseRenewal = 1446133345;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582539;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/121/process.log";
+ JobCurrentStartDate = 1446111811;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=121 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "121+121";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 21534;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.102";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133345;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111811;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582539.0#31446105734";
+ RemoteSysCpu = 1.220000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.153400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e302.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/121/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 125956;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.102:26944>#31443991374#313421#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 121+121";
+ CumulativeSlotTime = 2.153400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 21532;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/121"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446115780;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.742200000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846290000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_3591632,ChtcWrapper252.out,AuditLog.252,simu_3_252.txt,harvest.log,252.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.755700000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.791300000000000E+04;
+ LastRejMatchReason = "no match found";
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133335;
+ QDate = 1446105836;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133335;
+ LastMatchTime = 1446115778;
+ LastJobLeaseRenewal = 1446133335;
+ DAGManNodesLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582794;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/252/process.log";
+ JobCurrentStartDate = 1446115778;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=252 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "252+252";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 17557;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.174";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582200;
+ EnteredCurrentStatus = 1446133335;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446115778;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582794.0#31446105836";
+ RemoteSysCpu = 1.080000000000000E+02;
+ LastRejMatchTime = 1446115777;
+ Iwd = "/home/xguo23/model_3_1.47/Simulation_condor/model_3/252";
+ LocalSysCpu = 0.0;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.755700000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e374.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.47/Simulation_condor/data/252/,/home/xguo23/model_3_1.47/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 126656;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.174:7981>#31444760024#38714#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 252+252";
+ CumulativeSlotTime = 1.755700000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 17555;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.47/Simulation_condor/chtcjobwrapper"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446121056;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 1.218600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.847190000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2796365,ChtcWrapper421.out,AuditLog.421,simu_3_421.txt,harvest.log,421.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 1.227400000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.791500000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133329;
+ QDate = 1446106024;
+ JobLeaseDuration = 2400;
+ JobFinishedHookDone = 1446133329;
+ LastMatchTime = 1446121055;
+ LastJobLeaseRenewal = 1446133329;
+ DAGManNodesLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49583295;
+ JobUniverse = 5;
+ NumJobStarts = 1;
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/421/process.log";
+ JobCurrentStartDate = 1446121055;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=421 -- 3";
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "421+421";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 12274;
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.73";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582778;
+ EnteredCurrentStatus = 1446133329;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446121055;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349583295.0#31446106024";
+ RemoteSysCpu = 7.000000000000000E+01;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 1.227400000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e273.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.46/Simulation_condor/data/421/,/home/xguo23/model_3_1.46/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127332;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.73:33900>#31444759838#39139#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 421+421";
+ CumulativeSlotTime = 1.227400000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 12273;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.46/Simulation_condor/chtcjobwrapper";
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.46/Simulation_condor/model_3/421"
+ ]
+
+ [
+ BlockWrites = 0;
+ LastJobStatus = 2;
+ JobCurrentStartExecutingDate = 1446111074;
+ WantRemoteIO = true;
+ RequestCpus = 1;
+ NumShadowStarts = 1;
+ RemoteUserCpu = 2.209600000000000E+04;
+ NiceUser = false;
+ RequestMemory = 1000;
+ BytesRecvd = 2.846120000000000E+05;
+ ResidentSetSize = 150000;
+ StreamOut = false;
+ SpooledOutputFiles = "CURLTIME_2637948,ChtcWrapper96.out,AuditLog.96,simu_3_96.txt,harvest.log,96.out";
+ OnExitRemove = true;
+ ImageSize_RAW = 811948;
+ RemoteWallClockTime = 2.225300000000000E+04;
+ MachineAttrSlotWeight0 = 1;
+ ExecutableSize = 7;
+ JobStatus = 4;
+ DAGParentNodeNames = "";
+ ExitCode = 0;
+ DAGManNodesMask = "0,1,2,4,5,7,9,10,11,12,13,16,17,24,27";
+ BytesSent = 2.823100000000000E+04;
+ LastSuspensionTime = 0;
+ ExecutableSize_RAW = 6;
+ RecentBlockReadKbytes = 0;
+ TransferInputSizeMB = 0;
+ Matlab = "R2011b";
+ BlockReadKbytes = 0;
+ LocalSysCpu = 0.0;
+ Iwd = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/96";
+ RecentStatsLifetimeStarter = 1200;
+ LeaveJobInQueue = false;
+ TargetType = "Machine";
+ WhenToTransferOutput = "ON_EXIT";
+ Owner = "xguo23";
+ JobNotification = 0;
+ BufferSize = 524288;
+ RecentBlockWrites = 0;
+ CompletionDate = 1446133326;
+ LastMatchTime = 1446111073;
+ LastJobLeaseRenewal = 1446133326;
+ DAGManNodesLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/./mydag.dag.nodes.log";
+ ClusterId = 49582476;
+ NumJobStarts = 1;
+ JobUniverse = 5;
+ AutoClusterAttrs = "JobUniverse,LastCheckpointPlatform,NumCkpts,ClientMachine,_condor_RequestCpus,_condor_RequestDisk,_condor_RequestGPUs,_condor_RequestMemory,RequestCpus,RequestDisk,RequestGPUs,RequestMemory,BIOCHEM,MachineLastMatchTime,ConcurrencyLimits,NiceUser,Rank,Requirements,ImageSize,MemoryRequirements,User,RemoteGroup,SubmitterGroup,SubmitterUserPrio,Group,WIDsTheme,InteractiveJob,Is_Resumable,WantFlocking,WantGlidein,Scheduler,Owner,JobStart,MemoryUsage,IsExpressQueueJob,DiskUsage,HEP_VO,IsDesktop,OSG_VO,x509userproxysubject,PassedTest,IsLocalCMSJob,IsLocalCMSSlot,IsSAMSlot,IsSAMJob,MaxDiskTempC,IsDedicated,estimated_run_hours,IsCHTCSubmit,RequiresCVMFS,DynamicSlot,PartitionableSlot,Slot1_ExpectedMachineGracefulDrainingCompletion,Slot1_JobStarts,Slot1_SelfMonitorAge,Slot2_ExpectedMachineGracefulDrainingCompletion,Slot2_JobStarts,Slot2_SelfMonitorAge,Slot3_ExpectedMachineGracefulDrainingCompletion,Slot3_JobStarts,Slot3_SelfMonitorAge,Slot4_ExpectedMachineGracefulDrainingCompletion,Slot4_JobStarts,Slot4_SelfMonitorAge,Slot5_ExpectedMachineGracefulDrainingCompletion,Slot5_JobStarts,Slot5_SelfMonitorAge,Slot6_ExpectedMachineGracefulDrainingCompletion,Slot6_JobStarts,Slot6_SelfMonitorAge,Slot7_ExpectedMachineGracefulDrainingCompletion,Slot7_JobStarts,Slot7_SelfMonitorAge,Slot8_ExpectedMachineGracefulDrainingCompletion,Slot8_JobStarts,Slot8_SelfMonitorAge,Slot1_TotalTimeClaimedBusy,Slot1_TotalTimeUnclaimedIdle,Slot2_TotalTimeClaimedBusy,Slot2_TotalTimeUnclaimedIdle,Slot3_TotalTimeClaimedBusy,Slot3_TotalTimeUnclaimedIdle,Slot4_TotalTimeClaimedBusy,Slot4_TotalTimeUnclaimedIdle,Slot5_TotalTimeClaimedBusy,Slot5_TotalTimeUnclaimedIdle,Slot6_TotalTimeClaimedBusy,Slot6_TotalTimeUnclaimedIdle,Slot7_TotalTimeClaimedBusy,Slot7_TotalTimeUnclaimedIdle,Slot8_TotalTimeClaimedBusy,Slot8_TotalTimeUnclaimedIdle,Slot10_ExpectedMachineGracefulDrainingCompletion,Slot10_JobStarts,Slot10_SelfMonitorAge,Slot11_ExpectedMachineGracefulDrainingCompletion,Slot11_JobStarts,Slot11_SelfMonitorAge,Slot12_ExpectedMachineGracefulDrainingCompletion,Slot12_JobStarts,Slot12_SelfMonitorAge,Slot9_ExpectedMachineGracefulDrainingCompletion,Slot9_JobStarts,Slot9_SelfMonitorAge,Slot12_TotalTimeClaimedBusy,Slot10_TotalTimeClaimedBusy,Slot10_TotalTimeUnclaimedIdle,Slot11_TotalTimeClaimedBusy,Slot11_TotalTimeUnclaimedIdle,Slot12_TotalTimeUnclaimedIdle,Slot9_TotalTimeClaimedBusy,Slot9_TotalTimeUnclaimedIdle,Slot13_ExpectedMachineGracefulDrainingCompletion,Slot13_JobStarts,Slot13_SelfMonitorAge,Slot14_ExpectedMachineGracefulDrainingCompletion,Slot14_JobStarts,Slot14_SelfMonitorAge,Slot15_ExpectedMachineGracefulDrainingCompletion,Slot15_JobStarts,Slot15_SelfMonitorAge,Slot16_ExpectedMachineGracefulDrainingCompletion,Slot16_JobStarts,Slot16_SelfMonitorAge,IsResumable,WHEN_TO_TRANSFER_OUTPUT,_condor_Requestadmin_mutex_1,_condor_Requestadmin_mutex_2,_condor_Requestadmin_mutex_3,_condor_Requestmachine_token,Requestadmin_mutex_1,Requestadmin_mutex_2,Requestadmin_mutex_3,Requestmachine_token,nyehle,IsBuildJob,IsMatlabBuildJob,TotalJobRunTime,NodeOnline,Slot13_TotalTimeClaimedBusy,Slot13_TotalTimeUnclaimedIdle,Slot14_TotalTimeClaimedBusy,Slot14_TotalTimeUnclaimedIdle,Slot15_TotalTimeClaimedBusy,Slot15_TotalTimeUnclaimedIdle,Slot16_TotalTimeClaimedBusy,Slot16_TotalTimeUnclaimedIdle,TmpIsFull,trResumable,RequiresCMSFrontier,Slot17_ExpectedMachineGracefulDrainingCompletion,Slot17_JobStarts,Slot17_SelfMonitorAge,Slot17_TotalTimeClaimedBusy,Slot17_TotalTimeUnclaimedIdle,Slot18_ExpectedMachineGracefulDrainingCompletion,Slot18_JobStarts,Slot18_SelfMonitorAge,Slot18_TotalTimeClaimedBusy,Slot18_TotalTimeUnclaimedIdle,Slot19_ExpectedMachineGracefulDrainingCompletion,Slot19_JobStarts,Slot19_SelfMonitorAge,Slot19_TotalTimeClaimedBusy,Slot19_TotalTimeUnclaimedIdle,Slot20_ExpectedMachineGracefulDrainingCompletion,Slot20_JobStarts,Slot20_SelfMonitorAge,Slot20_TotalTimeClaimedBusy,Slot20_TotalTimeUnclaimedIdle,Slot21_ExpectedMachineGracefulDrainingCompletion,Slot21_JobStarts,Slot21_SelfMonitorAge,Slot21_TotalTimeClaimedBusy,Slot21_TotalTimeUnclaimedIdle,Slot22_ExpectedMachineGracefulDrainingCompletion,Slot22_JobStarts,Slot22_SelfMonitorAge,Slot22_TotalTimeClaimedBusy,Slot22_TotalTimeUnclaimedIdle,Slot23_ExpectedMachineGracefulDrainingCompletion,Slot23_JobStarts,Slot23_SelfMonitorAge,Slot23_TotalTimeClaimedBusy,Slot23_TotalTimeUnclaimedIdle,Slot24_ExpectedMachineGracefulDrainingCompletion,Slot24_JobStarts,Slot24_SelfMonitorAge,Slot24_TotalTimeClaimedBusy,Slot24_TotalTimeUnclaimedIdle,Slot25_ExpectedMachineGracefulDrainingCompletion,Slot25_JobStarts,Slot25_SelfMonitorAge,Slot25_TotalTimeClaimedBusy,Slot25_TotalTimeUnclaimedIdle,Slot26_ExpectedMachineGracefulDrainingCompletion,Slot26_JobStarts,Slot26_SelfMonitorAge,Slot26_TotalTimeClaimedBusy,Slot26_TotalTimeUnclaimedIdle,Slot27_ExpectedMachineGracefulDrainingCompletion,Slot27_JobStarts,Slot27_SelfMonitorAge,Slot27_TotalTimeClaimedBusy,Slot27_TotalTimeUnclaimedIdle,Slot28_ExpectedMachineGracefulDrainingCompletion,Slot28_JobStarts,Slot28_SelfMonitorAge,Slot28_TotalTimeClaimedBusy,Slot28_TotalTimeUnclaimedIdle,Slot29_ExpectedMachineGracefulDrainingCompletion,Slot29_JobStarts,Slot29_SelfMonitorAge,Slot29_TotalTimeClaimedBusy,Slot29_TotalTimeUnclaimedIdle,Slot30_ExpectedMachineGracefulDrainingCompletion,Slot30_JobStarts,Slot30_SelfMonitorAge,Slot30_TotalTimeClaimedBusy,Slot30_TotalTimeUnclaimedIdle,Slot31_ExpectedMachineGracefulDrainingCompletion,Slot31_JobStarts,Slot31_SelfMonitorAge,Slot31_TotalTimeClaimedBusy,Slot31_TotalTimeUnclaimedIdle,Slot32_ExpectedMachineGracefulDrainingCompletion,Slot32_JobStarts,Slot32_SelfMonitorAge,Slot32_TotalTimeClaimedBusy,Slot32_TotalTimeUnclaimedIdle,ResidentSetSize";
+ MaxHosts = 1;
+ Args = "--type=Matlab --version=R2011b --cmdtorun=simu_condor --unique=96 -- 3";
+ CondorVersion = "$CondorVersion: 8.5.0 Sep 16 2015 BuildID: 341710 $";
+ CoreSize = 0;
+ OnExitHold = false;
+ CondorPlatform = "$CondorPlatform: X86_64-RedHat_6.6 $";
+ JobFinishedHookDone = 1446133328;
+ QDate = 1446105711;
+ JobLeaseDuration = 2400;
+ In = "/dev/null";
+ DiskUsage = 1250000;
+ EncryptExecuteDirectory = false;
+ CommittedSuspensionTime = 0;
+ User = "xguo23@chtc.wisc.edu";
+ UserLog = "/home/xguo23/model_3_1.48/Simulation_condor/model_3/96/process.log";
+ JobCurrentStartDate = 1446111073;
+ BufferBlockSize = 32768;
+ MATCH_EXP_JOBGLIDEIN_ResourceName = "wisc.edu";
+ Requirements = ( ( OpSysMajorVer is 6 ) ) && ( MY.JobUniverse == 12 || MY.JobUniverse == 7 || MY.WantFlocking || MY.WantGlidein || TARGET.PoolName == "CHTC" || TARGET.COLLECTOR_HOST_STRING == "infopool.cs.wisc.edu" ) && ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) && ( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) && ( TARGET.HasFileTransfer );
+ MinHosts = 1;
+ PeriodicHold = false;
+ ProcId = 0;
+ Environment = "";
+ DAGNodeName = "96+96";
+ MemoryUsage = ( ( ResidentSetSize + 1023 ) / 1024 );
+ TerminationPending = true;
+ NumRestarts = 0;
+ NumSystemHolds = 0;
+ CommittedTime = 22253;
+ AutoClusterId = 24;
+ ExitStatus = 0;
+ ShouldTransferFiles = "YES";
+ MachineAttrCpus0 = 1;
+ WantRemoteSyscalls = false;
+ MyType = "Job";
+ CumulativeSuspensionTime = 0;
+ Rank = 0.0;
+ StartdPrincipal = "execute-side@matchsession/128.105.245.127";
+ Err = "process.err";
+ PeriodicRemove = false;
+ BlockWriteKbytes = 0;
+ ExitBySignal = false;
+ DAGManJobId = 49582206;
+ EnteredCurrentStatus = 1446133326;
+ JOBGLIDEIN_ResourceName = "$$([IfThenElse(IsUndefined(TARGET.GLIDEIN_ResourceName), IfThenElse(IsUndefined(TARGET.GLIDEIN_Site), \"wisc.edu\", TARGET.GLIDEIN_Site), TARGET.GLIDEIN_ResourceName)])";
+ RecentBlockWriteKbytes = 0;
+ TransferIn = false;
+ IsCHTCSubmit = true;
+ NumJobMatches = 1;
+ RootDir = "/";
+ JobStartDate = 1446111073;
+ JobPrio = 0;
+ CurrentHosts = 0;
+ GlobalJobId = "submit-3.chtc.wisc.edu#349582476.0#31446105711";
+ RemoteSysCpu = 1.240000000000000E+02;
+ TotalSuspensions = 0;
+ CommittedSlotTime = 2.225300000000000E+04;
+ WantCheckpoint = false;
+ BlockReads = 0;
+ LastRemoteHost = "slot1@e327.chtc.wisc.edu";
+ TransferInput = "/home/xguo23/model_3_1.48/Simulation_condor/data/96/,/home/xguo23/model_3_1.48/Simulation_condor/data/shared/";
+ LocalUserCpu = 0.0;
+ PeriodicRelease = ( JobStatus == 5 ) && ( ( CurrentTime - EnteredCurrentStatus ) > 1800 ) && ( JobRunCount < 5 ) && ( HoldReasonCode != 6 ) && ( HoldReasonCode != 14 ) && ( HoldReasonCode != 22 );
+ RequestDisk = 1000000;
+ ResidentSetSize_RAW = 127304;
+ OrigMaxHosts = 1;
+ LastPublicClaimId = "<128.105.245.127:48134>#31443991405#38554#3...";
+ WantRHEL6 = true;
+ NumCkpts_RAW = 0;
+ Out = "process.out";
+ SubmitEventNotes = "DAG Node: 96+96";
+ CumulativeSlotTime = 2.225300000000000E+04;
+ JobRunCount = 1;
+ RecentBlockReads = 0;
+ StreamErr = false;
+ DiskUsage_RAW = 1216669;
+ NumCkpts = 0;
+ StatsLifetimeStarter = 22252;
+ ImageSize = 1000000;
+ Cmd = "/home/xguo23/model_3_1.48/Simulation_condor/chtcjobwrapper"
+ ]
diff --git a/asterixdb/asterix-app/src/main/java/org/apache/asterix/api/http/servlet/QueryServiceServlet.java b/asterixdb/asterix-app/src/main/java/org/apache/asterix/api/http/servlet/QueryServiceServlet.java
index ed23195..5a857d1 100644
--- a/asterixdb/asterix-app/src/main/java/org/apache/asterix/api/http/servlet/QueryServiceServlet.java
+++ b/asterixdb/asterix-app/src/main/java/org/apache/asterix/api/http/servlet/QueryServiceServlet.java
@@ -47,6 +47,7 @@
import org.apache.asterix.result.ResultReader;
import org.apache.asterix.result.ResultUtils;
import org.apache.commons.io.IOUtils;
+import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.hyracks.algebricks.core.algebra.prettyprint.AlgebricksAppendable;
import org.apache.hyracks.api.client.IHyracksClientConnection;
import org.apache.hyracks.api.dataset.IHyracksDataset;
@@ -316,14 +317,18 @@
}
private static void printError(PrintWriter pw, Throwable e) {
+ Throwable rootCause = ExceptionUtils.getRootCause(e);
+ if (rootCause == null) {
+ rootCause = e;
+ }
final boolean addStack = false;
pw.print("\t\"");
pw.print(ResultFields.ERRORS.str());
pw.print("\": [{ \n");
printField(pw, ErrorField.CODE.str(), "1");
- final String msg = e.getMessage();
- printField(pw, ErrorField.MSG.str(), JSONUtil.escape(msg != null ? msg : e.getClass().getSimpleName()),
- addStack);
+ final String msg = rootCause.getMessage();
+ printField(pw, ErrorField.MSG.str(),
+ JSONUtil.escape(rootCause.getClass().getName() + ": " + msg != null ? msg : ""), addStack);
if (addStack) {
StringWriter sw = new StringWriter();
PrintWriter stackWriter = new PrintWriter(sw);
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.1.ddl.aql
similarity index 63%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.1.ddl.aql
index 18b5264..300f365 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.1.ddl.aql
@@ -16,23 +16,18 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
-import org.apache.hyracks.api.exceptions.HyracksDataException;
+drop dataverse externallibtest if exists;
+create dataverse externallibtest;
+use dataverse externallibtest;
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+create type Classad as open {
+GlobalJobId: string
+};
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.2.lib.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.2.lib.aql
index 18b5264..d936e22 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.2.lib.aql
@@ -16,23 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
-
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+ /*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+install externallibtest testlib src/test/resources/externallib/testlib-zip-binary-assembly.zip
\ No newline at end of file
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.3.ddl.aql b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.3.ddl.aql
new file mode 100644
index 0000000..16d3ba4
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.3.ddl.aql
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+use dataverse externallibtest;
+create dataset Condor(Classad) primary key GlobalJobId;
+create index BlockWritesIndex on Condor(BlockWrites:int64) enforced;
+
+create feed CondorFeed using push_localfs(
+("path"="asterix_nc1://data/external-parser/dropbox/jobads1.txt,asterix_nc1://data/external-parser/dropbox/jobads2.txt, asterix_nc1://data/external-parser/dropbox2/jobads3.txt"),
+("reader"="localfs"),
+("format"="semi-structured"),
+("parser"="testlib#org.apache.asterix.external.library.ClassAdParserFactory"),
+("type-name"="Classad"));
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.4.update.aql
similarity index 63%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.4.update.aql
index 18b5264..5105751 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.4.update.aql
@@ -16,23 +16,16 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
-import org.apache.hyracks.api.exceptions.HyracksDataException;
+use dataverse externallibtest;
-public class FrameDataException extends HyracksDataException {
+set wait-for-completion-feed "true";
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+connect feed CondorFeed to dataset Condor;
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.5.query.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.5.query.aql
index 18b5264..ca1e141 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.5.query.aql
@@ -16,23 +16,15 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+use dataverse externallibtest;
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+count( for $x in dataset Condor
+order by $x.GlobalJobId
+return $x);
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.6.lib.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.6.lib.aql
index 18b5264..335f375 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.6.lib.aql
@@ -16,23 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
-
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+ /*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+uninstall externallibtest testlib
\ No newline at end of file
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.7.ddl.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.7.ddl.aql
index 18b5264..e68e48e 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.7.ddl.aql
@@ -16,23 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
-
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+drop dataverse externallibtest if exists;
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.1.ddl.aql
similarity index 61%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.1.ddl.aql
index 18b5264..94d40c6 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.1.ddl.aql
@@ -16,23 +16,18 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
-import org.apache.hyracks.api.exceptions.HyracksDataException;
+drop dataverse externallibtest if exists;
+create dataverse externallibtest;
+use dataverse externallibtest;
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+create type Classad as open {
+GlobalJobId: string
+};
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.2.lib.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.2.lib.aql
index 18b5264..9244b81 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.2.lib.aql
@@ -16,23 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
-
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+ /*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+install externallibtest testlib src/test/resources/externallib/testlib-zip-binary-assembly.zip
\ No newline at end of file
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.3.ddl.aql b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.3.ddl.aql
new file mode 100644
index 0000000..10a4117
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.3.ddl.aql
@@ -0,0 +1,36 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+use dataverse externallibtest;
+create dataset Condor(Classad) primary key GlobalJobId;
+create index BlockWritesIndex on Condor(BlockWrites:int64) enforced;
+create index JobStartDateIndex on Condor(JobStartDate:int64) enforced;
+
+create feed CondorFeed using push_localfs(
+("path"="asterix_nc1://data/external-parser/dropbox/jobads1.txt,asterix_nc1://data/external-parser/dropbox/jobads2.txt, asterix_nc1://data/external-parser/dropbox2/jobads3.txt"),
+("reader"="localfs"),
+("format"="semi-structured"),
+("parser"="testlib#org.apache.asterix.external.library.ClassAdParserFactory"),
+("type-name"="Classad"));
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.4.update.aql
similarity index 63%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.4.update.aql
index 18b5264..a9e3435 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.4.update.aql
@@ -16,23 +16,16 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
-import org.apache.hyracks.api.exceptions.HyracksDataException;
+use dataverse externallibtest;
-public class FrameDataException extends HyracksDataException {
+set wait-for-completion-feed "true";
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+connect feed CondorFeed to dataset Condor;
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.5.query.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.5.query.aql
index 18b5264..481980d 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.5.query.aql
@@ -16,23 +16,15 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+use dataverse externallibtest;
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+count( for $x in dataset Condor
+order by $x.GlobalJobId
+return $x);
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.6.lib.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.6.lib.aql
index 18b5264..d972079 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.6.lib.aql
@@ -16,23 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
-
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+ /*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+uninstall externallibtest testlib
\ No newline at end of file
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.7.ddl.aql
similarity index 62%
copy from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
copy to asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.7.ddl.aql
index 18b5264..e0b7532 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.7.ddl.aql
@@ -16,23 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.asterix.common.exceptions;
-
-import org.apache.hyracks.api.exceptions.HyracksDataException;
-
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
- }
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
-}
+/*
+ * Description : Create a feed which uses an external parser to parse data from files
+ * The files have duplicates and long records. Some records have incorrect types
+ * for the open indexed field. The dataset has two open indexes.
+ * Expected Res : Success
+ * Date : Jul, 13, 2016
+ */
+drop dataverse externallibtest if exists;
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.1.adm b/asterixdb/asterix-app/src/test/resources/runtimets/results/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.1.adm
new file mode 100644
index 0000000..147ea53
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/feeds/feed-with-external-parser-with-open-index/feed-with-external-parser-with-open-index.1.adm
@@ -0,0 +1 @@
+158
\ No newline at end of file
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.1.adm b/asterixdb/asterix-app/src/test/resources/runtimets/results/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.1.adm
new file mode 100644
index 0000000..147ea53
--- /dev/null
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/feeds/feed-with-external-parser-with-two-open-indexes/feed-with-external-parser-with-two-open-indexes.1.adm
@@ -0,0 +1 @@
+158
\ No newline at end of file
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/testsuite.xml b/asterixdb/asterix-app/src/test/resources/runtimets/testsuite.xml
index ffa4346..1bb1367 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/testsuite.xml
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/testsuite.xml
@@ -150,6 +150,16 @@
</compilation-unit>
</test-case>
<test-case FilePath="feeds">
+ <compilation-unit name="feed-with-external-parser-with-open-index">
+ <output-dir compare="Text">feed-with-external-parser-with-open-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feed-with-external-parser-with-two-open-indexes">
+ <output-dir compare="Text">feed-with-external-parser-with-two-open-indexes</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
<compilation-unit name="feed-with-external-function">
<output-dir compare="Text">feed-with-external-function</output-dir>
</compilation-unit>
@@ -4543,7 +4553,7 @@
<test-case FilePath="open-closed"><!-- Throws two exceptions. need to be checked. proposal: (fixed expected results) -->
<compilation-unit name="query-issue410">
<output-dir compare="Text">query-issue410</output-dir>
- <expected-error>java.lang.IllegalStateException: type mismatch: missing a required closed field name:string</expected-error>
+ <expected-error>HyracksDataException: ASX0000: Field type DOUBLE can't be promoted to type STRING</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="open-closed">
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml b/asterixdb/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml
index 2d254da..e1d728d 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml
@@ -110,19 +110,19 @@
<test-case FilePath="aggregate">
<compilation-unit name="avg_mixed">
<output-dir compare="Text">avg_mixed</output-dir>
- <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException: Unexpected type</expected-error>
+ <expected-error>Unexpected type STRING in aggregation input stream. Expected type FLOAT</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="aggregate">
<compilation-unit name="sum_mixed">
<output-dir compare="Text">sum_mixed</output-dir>
- <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException: Unexpected type</expected-error>
+ <expected-error>Unexpected type STRING in aggregation input stream. Expected type (or a promotable type to)FLOAT</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="aggregate">
<compilation-unit name="min_mixed">
<output-dir compare="Text">min_mixed</output-dir>
- <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException: Unexpected type</expected-error>
+ <expected-error>Unexpected type STRING in aggregation input stream. Expected type FLOAT</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="aggregate">
@@ -546,19 +546,19 @@
<test-case FilePath="aggregate-sql">
<compilation-unit name="avg_mixed">
<output-dir compare="Text">avg_mixed</output-dir>
- <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException: Unexpected type STRING</expected-error>
+ <expected-error>Unexpected type STRING in aggregation input stream. Expected type FLOAT</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="aggregate-sql">
<compilation-unit name="sum_mixed">
<output-dir compare="Text">sum_mixed</output-dir>
- <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException: Unexpected type STRING</expected-error>
+ <expected-error>Unexpected type STRING in aggregation input stream. Expected type (or a promotable type to)FLOAT</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="aggregate-sql">
<compilation-unit name="min_mixed">
<output-dir compare="Text">min_mixed</output-dir>
- <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException: Unexpected type STRING</expected-error>
+ <expected-error>Unexpected type STRING in aggregation input stream. Expected type FLOAT</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="aggregate-sql">
@@ -4328,7 +4328,7 @@
<test-case FilePath="open-closed">
<compilation-unit name="query-issue410">
<output-dir compare="Text">query-issue410</output-dir>
- <expected-error>java.lang.IllegalStateException: type mismatch: missing a required closed field name:string</expected-error>
+ <expected-error>HyracksDataException: ASX0000: Field type DOUBLE can't be promoted to type STRING</expected-error>
</compilation-unit>
</test-case>
<test-case FilePath="open-closed">
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/dataflow/AsterixLSMInsertDeleteOperatorNodePushable.java b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/dataflow/AsterixLSMInsertDeleteOperatorNodePushable.java
index cf66d30..fb12808 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/dataflow/AsterixLSMInsertDeleteOperatorNodePushable.java
+++ b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/dataflow/AsterixLSMInsertDeleteOperatorNodePushable.java
@@ -21,13 +21,13 @@
import java.nio.ByteBuffer;
import org.apache.asterix.common.api.IAsterixAppRuntimeContext;
-import org.apache.asterix.common.exceptions.FrameDataException;
import org.apache.asterix.common.transactions.ILogMarkerCallback;
import org.apache.asterix.common.transactions.PrimaryIndexLogMarkerCallback;
import org.apache.hyracks.api.comm.VSizeFrame;
import org.apache.hyracks.api.context.IHyracksTaskContext;
import org.apache.hyracks.api.dataflow.value.IRecordDescriptorProvider;
import org.apache.hyracks.api.dataflow.value.RecordDescriptor;
+import org.apache.hyracks.api.exceptions.ErrorCode;
import org.apache.hyracks.api.exceptions.HyracksDataException;
import org.apache.hyracks.dataflow.common.comm.io.FrameTupleAccessor;
import org.apache.hyracks.dataflow.common.comm.io.FrameTupleAppender;
@@ -136,14 +136,20 @@
}
break;
default: {
- throw new HyracksDataException(
- "Unsupported operation " + op + " in tree index InsertDelete operator");
+ throw new HyracksDataException("Unsupported operation %1$s in %2$s operator",
+ ErrorCode.INVALID_OPERATOR_OPERATION, op.toString(),
+ AsterixLSMInsertDeleteOperatorNodePushable.class.getSimpleName());
}
}
}
- } catch (Throwable th) {
- FrameDataException fde = new FrameDataException(i, th);
- throw fde;
+ } catch (HyracksDataException e) {
+ if (e.getErrorCode() == ErrorCode.INVALID_OPERATOR_OPERATION) {
+ throw e;
+ } else {
+ throw new HyracksDataException(e, ErrorCode.ERROR_PROCESSING_TUPLE, i);
+ }
+ } catch (Exception e) {
+ throw new HyracksDataException(e, ErrorCode.ERROR_PROCESSING_TUPLE, i);
}
writeBuffer.ensureFrameSize(buffer.capacity());
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/ErrorCode.java
similarity index 67%
rename from asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
rename to asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/ErrorCode.java
index 18b5264..66a01e0 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/FrameDataException.java
+++ b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/exceptions/ErrorCode.java
@@ -18,21 +18,10 @@
*/
package org.apache.asterix.common.exceptions;
-import org.apache.hyracks.api.exceptions.HyracksDataException;
+public class ErrorCode {
+ public static final String ASTERIX = "ASX";
+ public static final int ERROR_CASTING_FIELD = 0;
-public class FrameDataException extends HyracksDataException {
-
- private static final long serialVersionUID = 1L;
-
- private final int tupleIndex;
-
- public FrameDataException(int tupleIndex, Throwable cause) {
- super(cause);
- this.tupleIndex = tupleIndex;
+ private ErrorCode() {
}
-
- public int getTupleIndex() {
- return tupleIndex;
- }
-
}
diff --git a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/feed/dataflow/FeedExceptionHandler.java b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/feed/dataflow/FeedExceptionHandler.java
index b98f123..304eb0c 100644
--- a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/feed/dataflow/FeedExceptionHandler.java
+++ b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/feed/dataflow/FeedExceptionHandler.java
@@ -23,10 +23,10 @@
import java.util.logging.Logger;
import org.apache.asterix.common.exceptions.AsterixException;
-import org.apache.asterix.common.exceptions.FrameDataException;
import org.apache.asterix.common.exceptions.IExceptionHandler;
import org.apache.asterix.external.util.FeedFrameUtil;
import org.apache.hyracks.api.context.IHyracksTaskContext;
+import org.apache.hyracks.api.exceptions.ErrorCode;
import org.apache.hyracks.api.exceptions.HyracksDataException;
import org.apache.hyracks.dataflow.common.comm.io.FrameTupleAccessor;
@@ -51,10 +51,10 @@
@Override
public ByteBuffer handle(HyracksDataException th, ByteBuffer frame) {
try {
- if (th instanceof FrameDataException) {
+ if (th.getErrorCode() == ErrorCode.ERROR_PROCESSING_TUPLE) {
+ // TODO(amoudi): add check for cause. cause should be either cast or duplicate key
fta.reset(frame);
- FrameDataException fde = (FrameDataException) th;
- int tupleIndex = fde.getTupleIndex();
+ int tupleIndex = (int) (th.getParams()[0]);
try {
logExceptionCausingTuple(tupleIndex, th);
} catch (Exception ex) {
diff --git a/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/pointables/cast/ARecordCaster.java b/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/pointables/cast/ARecordCaster.java
index d213046..0293fcf 100644
--- a/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/pointables/cast/ARecordCaster.java
+++ b/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/pointables/cast/ARecordCaster.java
@@ -29,6 +29,7 @@
import org.apache.asterix.builders.RecordBuilder;
import org.apache.asterix.common.exceptions.AsterixException;
+import org.apache.asterix.common.exceptions.ErrorCode;
import org.apache.asterix.om.pointables.ARecordVisitablePointable;
import org.apache.asterix.om.pointables.PointableAllocator;
import org.apache.asterix.om.pointables.base.DefaultOpenFieldType;
@@ -73,15 +74,15 @@
private final IVisitablePointable nullTypeTag = allocator.allocateEmpty();
private final IVisitablePointable missingTypeTag = allocator.allocateEmpty();
- private final IBinaryComparator fieldNameComparator = PointableBinaryComparatorFactory
- .of(UTF8StringPointable.FACTORY).createBinaryComparator();
+ private final IBinaryComparator fieldNameComparator =
+ PointableBinaryComparatorFactory.of(UTF8StringPointable.FACTORY).createBinaryComparator();
private final ByteArrayAccessibleOutputStream outputBos = new ByteArrayAccessibleOutputStream();
private final DataOutputStream outputDos = new DataOutputStream(outputBos);
private final IVisitablePointable fieldTempReference = allocator.allocateEmpty();
- private final Triple<IVisitablePointable, IAType, Boolean> nestedVisitorArg = new Triple<>(fieldTempReference, null,
- null);
+ private final Triple<IVisitablePointable, IAType, Boolean> nestedVisitorArg =
+ new Triple<>(fieldTempReference, null, null);
private int numInputFields = 0;
@@ -130,7 +131,7 @@
// clear the previous states
reset();
- matchClosedPart(fieldNames, fieldTypeTags, fieldValues);
+ matchClosedPart(fieldNames, fieldTypeTags);
writeOutput(fieldNames, fieldTypeTags, fieldValues, outputDos, visitor);
resultAccessor.set(outputBos.getByteArray(), 0, outputBos.size());
} catch (AsterixException e) {
@@ -201,8 +202,8 @@
quickSort(reqFieldNamesSortedIndex, reqFieldNames, 0, reqFieldNamesSortedIndex.length - 1);
}
- private void matchClosedPart(List<IVisitablePointable> fieldNames, List<IVisitablePointable> fieldTypeTags,
- List<IVisitablePointable> fieldValues) throws AsterixException, HyracksDataException {
+ private void matchClosedPart(List<IVisitablePointable> fieldNames, List<IVisitablePointable> fieldTypeTags)
+ throws AsterixException, HyracksDataException {
// sort-merge based match
quickSort(fieldNamesSortedIndex, fieldNames, 0, numInputFields - 1);
int fnStart = 0;
@@ -231,6 +232,9 @@
|| ATypeHierarchy.canDemote(inputTypeTag, requiredTypeTag)) {
fieldPermutation[reqFnPos] = fnPos;
openFields[fnPos] = false;
+ } else {
+ throw new HyracksDataException(ErrorCode.ASTERIX, ErrorCode.ERROR_CASTING_FIELD,
+ "Field type %1$s can't be promoted to type %2$s", inputTypeTag, requiredTypeTag);
}
}
fnStart++;
diff --git a/hyracks-fullstack/algebricks/algebricks-rewriter/src/main/java/org/apache/hyracks/algebricks/rewriter/rules/InlineVariablesRule.java b/hyracks-fullstack/algebricks/algebricks-rewriter/src/main/java/org/apache/hyracks/algebricks/rewriter/rules/InlineVariablesRule.java
index e7cf912..b4ade4c 100644
--- a/hyracks-fullstack/algebricks/algebricks-rewriter/src/main/java/org/apache/hyracks/algebricks/rewriter/rules/InlineVariablesRule.java
+++ b/hyracks-fullstack/algebricks/algebricks-rewriter/src/main/java/org/apache/hyracks/algebricks/rewriter/rules/InlineVariablesRule.java
@@ -69,14 +69,12 @@
// Map of variables that could be replaced by their producing expression.
// Populated during the top-down sweep of the plan.
- protected Map<LogicalVariable, ILogicalExpression> varAssignRhs = new HashMap<LogicalVariable, ILogicalExpression>();
-
+ protected Map<LogicalVariable, ILogicalExpression> varAssignRhs = new HashMap<>();
// Visitor for replacing variable reference expressions with their originating expression.
protected InlineVariablesVisitor inlineVisitor = new InlineVariablesVisitor(varAssignRhs);
-
// Set of FunctionIdentifiers that we should not inline.
- protected Set<FunctionIdentifier> doNotInlineFuncs = new HashSet<FunctionIdentifier>();
-
+ protected Set<FunctionIdentifier> doNotInlineFuncs = new HashSet<>();
+ // Indicates whether the rule has been run
protected boolean hasRun = false;
@Override
@@ -120,19 +118,23 @@
return false;
}
- /* An expression will be constant at runtime if it has:
+ /**
+ * An expression will be constant at runtime if it has:
* 1. A type
* 2. No free variables
+ *
+ * @param op
+ * @param funcExpr
+ * @param context
+ * @return whether a function is constant
+ * @throws AlgebricksException
*/
- public static boolean functionIsConstantAtRuntime(AbstractLogicalOperator op,
- AbstractFunctionCallExpression funcExpr, IOptimizationContext context) throws AlgebricksException {
+ public static boolean functionIsConstantAtRuntime(AbstractFunctionCallExpression funcExpr)
+ throws AlgebricksException {
//make sure that there are no variables in the expression
- Set<LogicalVariable> usedVariables = new HashSet<LogicalVariable>();
+ Set<LogicalVariable> usedVariables = new HashSet<>();
funcExpr.getUsedVariables(usedVariables);
- if (usedVariables.size() > 0) {
- return false;
- }
- return true;
+ return usedVariables.isEmpty();
}
protected boolean inlineVariables(Mutable<ILogicalOperator> opRef, IOptimizationContext context)
@@ -149,8 +151,8 @@
// Ignore functions that are either in the doNotInline set or are non-functional
if (expr.getExpressionTag() == LogicalExpressionTag.FUNCTION_CALL) {
AbstractFunctionCallExpression funcExpr = (AbstractFunctionCallExpression) expr;
- if (doNotInlineFuncs.contains(funcExpr.getFunctionIdentifier())
- || (!funcExpr.isFunctional() && !functionIsConstantAtRuntime(op, funcExpr, context))) {
+ if (doNotInlineFuncs.contains(funcExpr.getFunctionIdentifier()) || (!funcExpr.isFunctional()
+ && !InlineVariablesRule.functionIsConstantAtRuntime(funcExpr))) {
continue;
}
}
@@ -176,7 +178,7 @@
}
// Variables produced by a nested subplan cannot be inlined
// in operators above the subplan.
- Set<LogicalVariable> producedVars = new HashSet<LogicalVariable>();
+ Set<LogicalVariable> producedVars = new HashSet<>();
VariableUtilities.getProducedVariables(root.getValue(), producedVars);
varAssignRhs.keySet().removeAll(producedVars);
}
@@ -186,7 +188,7 @@
// References to variables generated in the right branch of a left-outer-join cannot be inlined
// in operators above the left-outer-join.
if (op.getOperatorTag() == LogicalOperatorTag.LEFTOUTERJOIN) {
- Set<LogicalVariable> rightLiveVars = new HashSet<LogicalVariable>();
+ Set<LogicalVariable> rightLiveVars = new HashSet<>();
VariableUtilities.getLiveVariables(op.getInputs().get(1).getValue(), rightLiveVars);
varAssignRhs.keySet().removeAll(rightLiveVars);
}
@@ -208,8 +210,8 @@
protected class InlineVariablesVisitor implements ILogicalExpressionReferenceTransform {
private final Map<LogicalVariable, ILogicalExpression> varAssignRhs;
- private final Set<LogicalVariable> liveVars = new HashSet<LogicalVariable>();
- private final List<LogicalVariable> rhsUsedVars = new ArrayList<LogicalVariable>();
+ private final Set<LogicalVariable> liveVars = new HashSet<>();
+ private final List<LogicalVariable> rhsUsedVars = new ArrayList<>();
private ILogicalOperator op;
private IOptimizationContext context;
// If set, only replace this variable reference.
@@ -236,54 +238,59 @@
public boolean transform(Mutable<ILogicalExpression> exprRef) throws AlgebricksException {
ILogicalExpression e = exprRef.getValue();
switch (((AbstractLogicalExpression) e).getExpressionTag()) {
- case VARIABLE: {
- LogicalVariable var = ((VariableReferenceExpression) e).getVariableReference();
- // Restrict replacement to targetVar if it has been set.
- if (targetVar != null && var != targetVar) {
- return false;
- }
+ case VARIABLE:
+ return transformVariableReferenceExpression(exprRef,
+ ((VariableReferenceExpression) e).getVariableReference());
+ case FUNCTION_CALL:
+ return transformFunctionCallExpression((AbstractFunctionCallExpression) e);
+ default:
+ return false;
+ }
+ }
- // Make sure has not been excluded from inlining.
- if (context.shouldNotBeInlined(var)) {
- return false;
- }
-
- ILogicalExpression rhs = varAssignRhs.get(var);
- if (rhs == null) {
- // Variable was not produced by an assign.
- return false;
- }
-
- // Make sure used variables from rhs are live.
- if (liveVars.isEmpty()) {
- VariableUtilities.getLiveVariables(op, liveVars);
- }
- rhsUsedVars.clear();
- rhs.getUsedVariables(rhsUsedVars);
- for (LogicalVariable rhsUsedVar : rhsUsedVars) {
- if (!liveVars.contains(rhsUsedVar)) {
- return false;
- }
- }
-
- // Replace variable reference with a clone of the rhs expr.
- exprRef.setValue(rhs.cloneExpression());
- return true;
+ private boolean transformFunctionCallExpression(AbstractFunctionCallExpression fce) throws AlgebricksException {
+ boolean modified = false;
+ for (Mutable<ILogicalExpression> arg : fce.getArguments()) {
+ if (transform(arg)) {
+ modified = true;
}
- case FUNCTION_CALL: {
- AbstractFunctionCallExpression fce = (AbstractFunctionCallExpression) e;
- boolean modified = false;
- for (Mutable<ILogicalExpression> arg : fce.getArguments()) {
- if (transform(arg)) {
- modified = true;
- }
- }
- return modified;
- }
- default: {
+ }
+ return modified;
+ }
+
+ private boolean transformVariableReferenceExpression(Mutable<ILogicalExpression> exprRef, LogicalVariable var)
+ throws AlgebricksException {
+ // Restrict replacement to targetVar if it has been set.
+ if (targetVar != null && var != targetVar) {
+ return false;
+ }
+
+ // Make sure has not been excluded from inlining.
+ if (context.shouldNotBeInlined(var)) {
+ return false;
+ }
+
+ ILogicalExpression rhs = varAssignRhs.get(var);
+ if (rhs == null) {
+ // Variable was not produced by an assign.
+ return false;
+ }
+
+ // Make sure used variables from rhs are live.
+ if (liveVars.isEmpty()) {
+ VariableUtilities.getLiveVariables(op, liveVars);
+ }
+ rhsUsedVars.clear();
+ rhs.getUsedVariables(rhsUsedVars);
+ for (LogicalVariable rhsUsedVar : rhsUsedVars) {
+ if (!liveVars.contains(rhsUsedVar)) {
return false;
}
}
+
+ // Replace variable reference with a clone of the rhs expr.
+ exprRef.setValue(rhs.cloneExpression());
+ return true;
}
}
}
diff --git a/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/std/AssignRuntimeFactory.java b/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/std/AssignRuntimeFactory.java
index 55ce3a3..88a2f24 100644
--- a/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/std/AssignRuntimeFactory.java
+++ b/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/std/AssignRuntimeFactory.java
@@ -18,6 +18,7 @@
*/
package org.apache.hyracks.algebricks.runtime.operators.std;
+import java.io.Serializable;
import java.nio.ByteBuffer;
import java.util.Arrays;
@@ -28,6 +29,7 @@
import org.apache.hyracks.algebricks.runtime.operators.base.AbstractOneInputOneOutputRuntimeFactory;
import org.apache.hyracks.api.comm.IFrameTupleAccessor;
import org.apache.hyracks.api.context.IHyracksTaskContext;
+import org.apache.hyracks.api.exceptions.ErrorCode;
import org.apache.hyracks.api.exceptions.HyracksDataException;
import org.apache.hyracks.data.std.api.IPointable;
import org.apache.hyracks.data.std.primitive.VoidPointable;
@@ -97,6 +99,7 @@
private ArrayTupleBuilder tupleBuilder = new ArrayTupleBuilder(projectionList.length);
private boolean first = true;
private boolean isOpen = false;
+ private int tupleIndex = 0;
@Override
public void open() throws HyracksDataException {
@@ -128,7 +131,6 @@
// what if nTuple is 0?
tAccess.reset(buffer);
int nTuple = tAccess.getTupleCount();
- int t = 0;
if (nTuple < 1) {
if (nTuple < 0) {
throw new HyracksDataException("Negative number of tuples in the frame: " + nTuple);
@@ -136,40 +138,49 @@
appender.flush(writer);
} else {
if (nTuple > 1) {
- for (; t < nTuple - 1; t++) {
- tRef.reset(tAccess, t);
- produceTuple(tupleBuilder, tAccess, t, tRef);
+ for (; tupleIndex < nTuple - 1; tupleIndex++) {
+ tRef.reset(tAccess, tupleIndex);
+ produceTuple(tupleBuilder, tAccess, tupleIndex, tRef);
appendToFrameFromTupleBuilder(tupleBuilder);
}
}
- tRef.reset(tAccess, t);
- produceTuple(tupleBuilder, tAccess, t, tRef);
- if (flushFramesRapidly) {
- // Whenever all the tuples in the incoming frame have been consumed, the assign operator
- // will push its frame to the next operator; i.e., it won't wait until the frame gets full.
- appendToFrameFromTupleBuilder(tupleBuilder, true);
+ if (tupleIndex < nTuple) {
+ tRef.reset(tAccess, tupleIndex);
+ produceTuple(tupleBuilder, tAccess, tupleIndex, tRef);
+ if (flushFramesRapidly) {
+ // Whenever all the tuples in the incoming frame have been consumed, the assign operator
+ // will push its frame to the next operator; i.e., it won't wait until the frame gets full.
+ appendToFrameFromTupleBuilder(tupleBuilder, true);
+ } else {
+ appendToFrameFromTupleBuilder(tupleBuilder);
+ }
} else {
- appendToFrameFromTupleBuilder(tupleBuilder);
+ if (flushFramesRapidly) {
+ flushAndReset();
+ }
}
}
+ tupleIndex = 0;
}
private void produceTuple(ArrayTupleBuilder tb, IFrameTupleAccessor accessor, int tIndex,
FrameTupleReference tupleRef) throws HyracksDataException {
- tb.reset();
- for (int f = 0; f < projectionList.length; f++) {
- int k = projectionToOutColumns[f];
- if (k >= 0) {
- try {
+ try {
+ tb.reset();
+ for (int f = 0; f < projectionList.length; f++) {
+ int k = projectionToOutColumns[f];
+ if (k >= 0) {
eval[k].evaluate(tupleRef, result);
- } catch (AlgebricksException e) {
- throw new HyracksDataException(e);
+ tb.addField(result.getByteArray(), result.getStartOffset(), result.getLength());
+ } else {
+ tb.addField(accessor, tIndex, projectionList[f]);
}
- tb.addField(result.getByteArray(), result.getStartOffset(), result.getLength());
- } else {
- tb.addField(accessor, tIndex, projectionList[f]);
}
+ } catch (HyracksDataException | AlgebricksException e) {
+ throw new HyracksDataException(ErrorCode.HYRACKS, ErrorCode.ERROR_PROCESSING_TUPLE,
+ "Error evaluating tuple %1$s in AssignRuntime", (Throwable) e,
+ new Serializable[] { tupleIndex });
}
}
diff --git a/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/ErrorCode.java b/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/ErrorCode.java
index 1a883b5..e4385bf 100644
--- a/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/ErrorCode.java
+++ b/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/ErrorCode.java
@@ -18,6 +18,15 @@
*/
package org.apache.hyracks.api.exceptions;
-public class ErrorCode extends HyracksException {
- public static final int UNKNOWN = 0;
+/**
+ * A registry of runtime error codes
+ */
+public class ErrorCode {
+ public static final String HYRACKS = "HYR";
+ public static final int ERROR_PROCESSING_TUPLE = 0;
+ public static final int INVALID_OPERATOR_OPERATION = 1;
+ public static final int FAILURE_ON_NODE = 2;
+
+ private ErrorCode() {
+ }
}
diff --git a/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java b/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
index 73f921f4..d17af4c 100644
--- a/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
+++ b/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
@@ -21,63 +21,75 @@
import java.io.Serializable;
import java.util.Formatter;
+/**
+ * The main execution time exception type for runtime errors in a hyracks environment
+ */
public class HyracksDataException extends HyracksException {
private static final long serialVersionUID = 1L;
public static final String NONE = "";
- public static final String HYRACKS = "HYR";
+ public static final int UNKNOWN = 0;
private final String component;
private final int errorCode;
private final Serializable[] params;
- private String nodeId;
+ private final String nodeId;
+ private transient volatile String msgCache;
- private volatile transient String msgCache;
-
- public HyracksDataException() {
- this(NONE, ErrorCode.UNKNOWN, new Object[0]);
- }
-
- public HyracksDataException(String message) {
- this(NONE, ErrorCode.UNKNOWN, message);
- }
-
- public HyracksDataException(Throwable cause) {
- this(NONE, ErrorCode.UNKNOWN, cause);
- }
-
- public HyracksDataException(String message, Throwable cause) {
- this(NONE, ErrorCode.UNKNOWN, message, cause);
- }
-
- public HyracksDataException(String component, int errorCode, Serializable... params) {
- this.component = component;
- this.errorCode = errorCode;
- this.params = params;
- }
-
- public HyracksDataException(String component, int errorCode, String message, Serializable... params) {
- super(message);
- this.component = component;
- this.errorCode = errorCode;
- this.params = params;
- }
-
- public HyracksDataException(String component, int errorCode, Throwable cause, Serializable... params) {
- super(cause);
- this.component = component;
- this.errorCode = errorCode;
- this.params = params;
- }
-
- public HyracksDataException(String component, int errorCode, String message, Throwable cause,
+ public HyracksDataException(String component, int errorCode, String message, Throwable cause, String nodeId,
Serializable... params) {
super(message, cause);
this.component = component;
this.errorCode = errorCode;
+ this.nodeId = nodeId;
this.params = params;
}
+ public HyracksDataException() {
+ this(NONE, UNKNOWN, null, null, null, new Serializable[0]);
+ }
+
+ public HyracksDataException(String message) {
+ this(NONE, UNKNOWN, message, (Throwable) null, (String) null);
+ }
+
+ public HyracksDataException(Throwable cause) {
+ this(NONE, UNKNOWN, cause.getMessage(), cause, (String) null);
+ }
+
+ public HyracksDataException(Throwable cause, String nodeId) {
+ this(NONE, UNKNOWN, cause.getMessage(), cause, nodeId);
+ }
+
+ public HyracksDataException(String message, Throwable cause, String nodeId) {
+ this(NONE, UNKNOWN, message, cause, nodeId);
+ }
+
+ public HyracksDataException(String message, Throwable cause) {
+ this(NONE, UNKNOWN, message, cause, (String) null);
+ }
+
+ public HyracksDataException(String component, int errorCode, Serializable... params) {
+ this(component, errorCode, null, null, null, params);
+ }
+
+ public HyracksDataException(Throwable cause, int errorCode, Serializable... params) {
+ this(NONE, errorCode, cause.getMessage(), cause, null, params);
+ }
+
+ public HyracksDataException(String component, int errorCode, String message, Serializable... params) {
+ this(component, errorCode, message, null, null, params);
+ }
+
+ public HyracksDataException(String component, int errorCode, Throwable cause, Serializable... params) {
+ this(component, errorCode, cause.getMessage(), cause, null, params);
+ }
+
+ public HyracksDataException(String component, int errorCode, String message, Throwable cause,
+ Serializable... params) {
+ this(component, errorCode, message, cause, null, params);
+ }
+
public String getComponent() {
return component;
}
@@ -90,10 +102,6 @@
return params;
}
- public void setNodeId(String nodeId) {
- this.nodeId = nodeId;
- }
-
public String getNodeId() {
return nodeId;
}
@@ -111,18 +119,22 @@
* Example:
* formatMessage(HYRACKS, ErrorCode.UNKNOWN, "%1$s -- %2$s", "one", "two") returns "HYR0000: one -- two"
*
- * @param component the software component in which the error originated
- * @param errorCode the error code itself
- * @param message the user provided error message (a format string as specified in {@link java.util.Formatter})
- * @param params an array of objects taht will be provided to the {@link java.util.Formatter}
+ * @param component
+ * the software component in which the error originated
+ * @param errorCode
+ * the error code itself
+ * @param message
+ * the user provided error message (a format string as specified in {@link java.util.Formatter})
+ * @param params
+ * an array of objects taht will be provided to the {@link java.util.Formatter}
* @return the formatted string
*/
public static String formatMessage(String component, int errorCode, String message, Serializable... params) {
try (Formatter fmt = new Formatter()) {
- if (! NONE.equals(component)) {
+ if (!NONE.equals(component)) {
fmt.format("%1$s%2$04d: ", component, errorCode);
}
- fmt.format(message, (Object[]) params);
+ fmt.format(message == null ? "null" : message, (Object[]) params);
return fmt.out().toString();
}
}
diff --git a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/utils/ExceptionUtils.java b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/utils/ExceptionUtils.java
index 5389382b..73c680f 100644
--- a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/utils/ExceptionUtils.java
+++ b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/utils/ExceptionUtils.java
@@ -22,6 +22,7 @@
import java.util.Collection;
import java.util.List;
+import org.apache.hyracks.api.exceptions.ErrorCode;
import org.apache.hyracks.api.exceptions.HyracksDataException;
/**
@@ -29,8 +30,17 @@
*/
public class ExceptionUtils {
+ private ExceptionUtils() {
+ }
+
+ /**
+ * get a list of possible root causes from a list of all exceptions
+ *
+ * @param allExceptions
+ * @return List of possible root causes
+ */
public static List<Exception> getActualExceptions(List<Exception> allExceptions) {
- List<Exception> exceptions = new ArrayList<Exception>();
+ List<Exception> exceptions = new ArrayList<>();
for (Exception exception : allExceptions) {
if (possibleRootCause(exception)) {
exceptions.add(exception);
@@ -39,12 +49,17 @@
return exceptions;
}
+ /**
+ * Associate a node with a list of exceptions
+ *
+ * @param exceptions
+ * @param nodeId
+ */
public static void setNodeIds(Collection<Exception> exceptions, String nodeId) {
- List<Exception> newExceptions = new ArrayList<Exception>();
+ List<Exception> newExceptions = new ArrayList<>();
for (Exception e : exceptions) {
- HyracksDataException newException = new HyracksDataException(e);
- newException.setNodeId(nodeId);
- newExceptions.add(newException);
+ newExceptions.add(
+ new HyracksDataException(ErrorCode.HYRACKS, ErrorCode.FAILURE_ON_NODE, e.getMessage(), e, nodeId));
}
exceptions.clear();
exceptions.addAll(newExceptions);