diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2020-07-03 14:13:13 +0100 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2020-08-13 11:37:24 +0100 |
| commit | c5a0ba7d29da7effa0ae18bffa10fc0be359b8e7 (patch) | |
| tree | de4874740a5ddeb6eb29c887f6e121c61a1f8f3c /internal/config/server.go | |
| parent | 8f9f9766cecec4a42ffb4d14ba9b7efc2ed204ad (diff) | |
bump up version to 3.0.0. can run continuous background mapreduce queries, useful for log file monitorig for example. breaking protocol change which allows to mapreduce aggreate messages containing the default field separator |. add of more unit tests. add logformat mapreduce query keyword. add set mapreduce clause support and support to evaluate built-in functions such as md5sum() and maskdigits().v3.0.0
Diffstat (limited to 'internal/config/server.go')
| -rw-r--r-- | internal/config/server.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/config/server.go b/internal/config/server.go index 4166fd3..83ff45f 100644 --- a/internal/config/server.go +++ b/internal/config/server.go @@ -14,7 +14,7 @@ type Permissions struct { } // JobCommons summarises common job fields -type JobCommons struct { +type jobCommons struct { Name string Enable bool Files string @@ -27,13 +27,13 @@ type JobCommons struct { // Scheduled allows to configure scheduled mapreduce jobs. type Scheduled struct { - JobCommons + jobCommons TimeRange [2]int } // Continuous allows to configure continuous running mapreduce jobs. type Continuous struct { - JobCommons + jobCommons RestartOnDayChange bool `json:",omitempty"` } |
