Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

add timestamps #377

Merged
merged 1 commit into from
Nov 21, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,11 @@ class Scalding(
// Store the options used:
conf.set("summingbird.options", options.toString)
conf.set("summingbird.jobname", jobName)
// legacy name to match scalding
conf.set("scalding.flow.submitted.timestamp",
System.currentTimeMillis.toString)
conf.set("summingbird.submitted.timestamp",
System.currentTimeMillis.toString)

def ifUnset(k: String, v: String) { if(null == conf.get(k)) { conf.set(k, v) } }
// Set the mapside cache size, this is important to not be too small
Expand Down