Skip to content

Commit

Permalink
add a statement about the number of frame keys being locked by exec2
Browse files Browse the repository at this point in the history
  • Loading branch information
spennihana committed Feb 18, 2015
1 parent 2cd071e commit 83b5ec5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/water/exec/Exec2.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public static Env exec( String str ) throws IllegalArgumentException {
final Key [] frameKeys = H2O.KeySnapshot.globalSnapshot().filter(new H2O.KVFilter() {
@Override public boolean filter(H2O.KeyInfo k) { return k._type == TypeMap.FRAME; }
}).keys();
Log.info("Locking " + frameKeys.length +"keys for Exec2.");
for( Key k : frameKeys ) { // Convert all VAs to Frames
Value val = DKV.get(k);
if( val == null || !val.isFrame()) continue;
Expand Down

0 comments on commit 83b5ec5

Please sign in to comment.