summaryrefslogtreecommitdiffstats
path: root/vespa-hadoop/src/test/pig/feed_operations.pig
blob: d2d1af4c417624db473b42be9e021a5b4eac37d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-- REGISTER vespa-hadoop.jar  -- Not needed in tests

-- Define short name for VespaStorage
DEFINE VespaStorage com.yahoo.vespa.hadoop.pig.VespaStorage();

-- Load data - one column for json data
metrics = LOAD 'src/test/resources/operations_data.json' AS (data:chararray);

-- Store into Vespa
STORE metrics INTO '$ENDPOINT' USING VespaStorage();