Last active
August 29, 2015 14:28
-
-
Save douglaz/7e0849b4c9a33ef0c83d to your computer and use it in GitHub Desktop.
Spark Log filtering and parsing example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
For lines: | |
15/08/23 23:29:02 INFO cluster.SparkDeploySchedulerBackend: Registered executor: Actor[akka.tcp://[email protected]:58026/user/Executor#1085281150] with ID 11 | |
15/08/23 23:29:02 INFO scheduler.TaskSetManager: Starting task 4.0 in stage 0.0 (TID 4, ip-172-24-20-154.ec2.internal, PROCESS_LOCAL, 1314 bytes) | |
15/08/23 23:29:02 INFO scheduler.TaskSetManager: Starting task 5.0 in stage 0.0 (TID 5, ip-172-24-20-154.ec2.internal, PROCESS_LOCAL, 1314 bytes) | |
returns 1314 + 1314 = 2628 | |
Note: this is a simplified example, | |
it won't work for malformed lines or if there are no matching lines | |
*/ | |
val byteMatcher = ".*, ([0-9]+) bytes".r | |
val sumBytes = lines | |
.filter(_.contains("Starting task ")) | |
.flatMap(line => byteMatcher.findFirstMatchIn(line)) | |
.map(regex => regex.group(1).toInt) | |
.reduce(_ + _) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment