Skip to content

Commit

Permalink
Merge 37844bc into 38670e9
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Mar 20, 2014
2 parents 38670e9 + 37844bc commit e235625
Show file tree
Hide file tree
Showing 39 changed files with 1,029 additions and 738 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ build
*NodeLocalParallel
*catalog-journal
englink-log4j.log
profile.log
/bin
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ repositories.localRepository {
}

/* List constants that we use in multiple places. */
ext.slf4jVersion = "1.7.5"
ext.slf4jVersion = "1.7.6"
ext.jerseyVersion = "1.18"
ext.swaggerVersion = "2.10"
ext.swaggerMinorVersion = "1.3.2"
Expand Down
11 changes: 0 additions & 11 deletions conf/log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,11 @@ log4j.appender.A1=org.apache.log4j.FileAppender
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
log4j.appender.A1.layout.ConversionPattern=%-5p %d [%t] %C{1} - %m%n


# PROFILE is a FileAppender
#
log4j.appender.PROFILE.Append=true
log4j.appender.PROFILE.File=profile.log
log4j.appender.PROFILE.Threshold=DEBUG
log4j.appender.PROFILE=org.apache.log4j.FileAppender
log4j.appender.PROFILE.layout=org.apache.log4j.PatternLayout
log4j.appender.PROFILE.layout.ConversionPattern=%m%n

# do not let profiling logs go to root
log4j.additivity.profile=false

# Log4j configuration file.
log4j.rootLogger=INFO,A1,stdout,stderr
log4j.logger.profile=INFO,PROFILE

#
#set level
Expand Down
7 changes: 5 additions & 2 deletions jsonQueries/join_for_vis_dominik/ingest_twitterk.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"relationKey" : {
"userName" : "public",
"programName" : "join",
"programName" : "adhoc",
"relationName" : "TwitterK"
},
"schema" : {
"columnTypes" : ["LONG_TYPE", "LONG_TYPE"],
"columnNames" : ["follower", "followee"]
},
"file_name" : "/Users/dominik/Developer/Workspace/myria/data_nocommit/TwitterK.csv",
"source" : {
"dataType" : "File",
"filename" : "/disk2/TwitterK.csv"
},
"delimiter": ","
}
16 changes: 16 additions & 0 deletions jsonQueries/join_for_vis_dominik/ingest_twittersmall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"relationKey" : {
"userName" : "public",
"programName" : "adhoc",
"relationName" : "TwitterSmall"
},
"schema" : {
"columnTypes" : ["LONG_TYPE", "LONG_TYPE"],
"columnNames" : ["follower", "followee"]
},
"source" : {
"dataType" : "File",
"filename" : "/disk2/TwitterSmall.csv"
},
"delimiter": ","
}
19 changes: 9 additions & 10 deletions jsonQueries/join_for_vis_dominik/join.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
"opName":"Scan(R)",
"opType":"TableScan",
"relationKey":{
"programName":"join",
"relationName":"TwitterK",
"programName":"adhoc",
"relationName":"TwitterSmall",
"userName":"public"
}
},
{
"argChild":"Scan(R)",
"argOperatorId":"hash(followee)",
"argPf":{
"index":1,
"type":"SingleFieldHash"
Expand All @@ -29,14 +28,13 @@
"opName":"Scan(S)",
"opType":"TableScan",
"relationKey":{
"programName":"join",
"relationName":"TwitterK",
"programName":"adhoc",
"relationName":"TwitterSmall",
"userName":"public"
}
},
{
"argChild":"Scan(S)",
"argOperatorId":"hash(follower)",
"argPf":{
"index":0,
"type":"SingleFieldHash"
Expand Down Expand Up @@ -96,8 +94,8 @@
"opName":"Insert",
"opType":"DbInsert",
"relationKey":{
"programName":"join",
"relationName":"twitterK_join",
"programName":"adhoc",
"relationName":"TwitterJoin",
"userName":"public"
}
}
Expand All @@ -107,7 +105,8 @@
]
}
],
"logicalRa":"join",
"logicalRa":"Join Twitter",
"profilingMode":true,
"rawDatalog":"join"
"rawDatalog":"Join Twitter"
}

Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
}
],
"logicalRa":"local triangle ",
"profilingMode":true,
"profilingMode":false,
"rawDatalog":"T(x,y,z) =: S(x,y), R(y,z), T(z,x)"
}
2 changes: 1 addition & 1 deletion jsonQueries/multiwayJoin_shumo/twoWayJoinSystemTest.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@
}
],
"logicalRa":"T(x,y,x,z) := S(x, y), R(y, z)",
"profilingMode":true,
"profilingMode":false,
"rawDatalog":"T(x,y,x,z) := S(x, y), R(y, z)"
}
Loading

0 comments on commit e235625

Please sign in to comment.