summaryrefslogtreecommitdiffstats
path: root/vespa-hadoop/src/test/pig/feed_operations.pig
blob: 48873fde87ace76202a3aefa1cdc1d2cf2033adf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
-- Copyright Yahoo. 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();