summaryrefslogtreecommitdiffstats
path: root/vespa-hadoop/src/test/pig/feed_create_operations_short_form.pig
blob: ccede2a30b98460d859916f13215e763984c6b30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- 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

-- Transform tabular data to a Vespa document operation JSON format
-- as part of storing the data.
DEFINE VespaStorage
       com.yahoo.vespa.hadoop.pig.VespaStorage(
            'create-document-operation=true',
            'operation=put',
            'docid=id:<application>:metrics::<name>-<date>'
       );

-- Load tabular data
metrics = LOAD 'src/test/resources/tabular_data.csv' AS (date:chararray, name:chararray, value:int, application:chararray);

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