Last active
August 28, 2022 11:44
-
-
Save yuwtennis/dec3bf3bfc0c4fa54d9d3565c98d008e to your computer and use it in GitHub Desktop.
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
package elasticsearchio | |
import ( | |
"fmt" | |
"github.com/apache/beam/sdks/v2/go/pkg/beam" | |
"github.com/apache/beam/sdks/v2/go/pkg/beam/core/typex" | |
"github.com/apache/beam/sdks/v2/go/pkg/beam/core/util/reflectx" | |
) | |
const ( | |
writeURN = "beam:transform:org.apache.beam:elasticsearch_write:v1" | |
) | |
type writePayload struct { | |
NodeAddrs []string | |
Index string | |
MappingType string | |
} | |
// Write is a cross-language PTransform which writes String data to specified | |
// Elasticsearch index | |
// | |
// Example of Write with required parameters | |
// | |
// expansionAddr := "localhost:1234" | |
// nodeAddr := ["localhost:9200"] | |
// index := "my-index" | |
// type := "_doc" | |
func Write(s beam.Scope, addr string, nodeAddrs []string, index string, mappingType string, col beam.PCollection) { | |
wpl := writePayload{ | |
NodeAddrs: nodeAddrs, | |
Index: index, | |
MappingType: mappingType, | |
} | |
pl := beam.CrossLanguagePayload(wpl) | |
namedOutputTypes := map[string]typex.FullType{ | |
"org.apache.beam.sdk.io.elasticsearch.ElasticsearchIO$Write#0": typex.New(reflectx.ByteSlice), | |
"org.apache.beam.sdk.io.elasticsearch.ElasticsearchIO$Write#1": typex.New(reflectx.ByteSlice), | |
} | |
outputs := beam.CrossLanguage(s, writeURN, pl, addr, beam.UnnamedInput(col), namedOutputTypes) | |
if outputs == nil { | |
fmt.Println("error") | |
} | |
} |
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
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"github.com/apache/beam/sdks/v2/go/pkg/beam" | |
"github.com/apache/beam/sdks/v2/go/pkg/beam/io/xlang/elasticsearchio" | |
"github.com/apache/beam/sdks/v2/go/pkg/beam/x/beamx" | |
) | |
func main() { | |
fmt.Println("Hello world.") | |
ctx := context.Background() | |
flag.Parse() | |
beam.Init() | |
p := beam.NewPipeline() | |
s := p.Root() | |
nodeAddrs := []string{"http://localhost:9200"} | |
// PCollection | |
pCol := beam.CreateList(s, []string{"{\"field\": \"a value\"}"}) | |
elasticsearchio.Write( | |
s, | |
"localhost:18089", | |
nodeAddrs, | |
"my-index", | |
"_doc", | |
pCol) | |
if err := beamx.Run(ctx, p); err != nil { | |
fmt.Printf("Pipeline failed: %v", err) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment