forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partition.go
83 lines (68 loc) · 2.91 KB
/
partition.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// partition exemplifies using a cross-language partition transform from a test expansion service.
//
// Prerequisites to run wordcount:
// –> [Required] Job needs to be submitted to a portable runner (--runner=universal)
// –> [Required] Endpoint of job service needs to be passed (--endpoint=<ip:port>)
// –> [Required] Endpoint of expansion service needs to be passed (--expansion_addr=<ip:port>)
// –> [Optional] Environment type can be LOOPBACK. Defaults to DOCKER. (--environment_type=LOOPBACK|DOCKER)
package main
import (
"context"
"flag"
"fmt"
"log"
"github.com/apache/beam/sdks/go/pkg/beam"
"github.com/apache/beam/sdks/go/pkg/beam/core/typex"
"github.com/apache/beam/sdks/go/pkg/beam/core/util/reflectx"
"github.com/apache/beam/sdks/go/pkg/beam/testing/passert"
"github.com/apache/beam/sdks/go/pkg/beam/x/beamx"
// Imports to enable correct filesystem access and runner setup in LOOPBACK mode
_ "github.com/apache/beam/sdks/go/pkg/beam/io/filesystem/gcs"
_ "github.com/apache/beam/sdks/go/pkg/beam/io/filesystem/local"
_ "github.com/apache/beam/sdks/go/pkg/beam/runners/universal"
)
var (
expansionAddr = flag.String("expansion_addr", "", "Address of Expansion Service")
)
// formatFn is a DoFn that formats a word and its count as a string.
func formatFn(c int64) string {
return fmt.Sprintf("%v", c)
}
func init() {
beam.RegisterFunction(formatFn)
}
func main() {
flag.Parse()
beam.Init()
if *expansionAddr == "" {
log.Fatal("No expansion address provided")
}
p := beam.NewPipeline()
s := p.Root()
col := beam.CreateList(s, []int64{1, 2, 3, 4, 5, 6})
// Using the cross-language transform
outputType := typex.New(reflectx.Int64)
namedOutputs := map[string]typex.FullType{"0": outputType, "1": outputType}
c := beam.CrossLanguageWithSource(s, "beam:transforms:xlang:test:partition", nil, *expansionAddr, col, namedOutputs)
formatted0 := beam.ParDo(s, formatFn, c["0"])
formatted1 := beam.ParDo(s, formatFn, c["1"])
passert.Equals(s, formatted0, "2", "4", "6")
passert.Equals(s, formatted1, "1", "3", "5")
if err := beamx.Run(context.Background(), p); err != nil {
log.Fatalf("Failed to execute job: %v", err)
}
}