org.apache.pinot.tools.UpsertJsonQuickStart Maven / Gradle / Ivy
/**
* 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.
*/
package org.apache.pinot.tools;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.pinot.tools.Quickstart.Color;
import org.apache.pinot.tools.admin.PinotAdministrator;
import org.apache.pinot.tools.admin.command.QuickstartRunner;
public class UpsertJsonQuickStart extends RealtimeQuickStart {
@Override
public List types() {
return Arrays.asList("UPSERT_JSON_INDEX", "UPSERT-JSON-INDEX");
}
public static void main(String[] args)
throws Exception {
List arguments = new ArrayList<>();
arguments.addAll(Arrays.asList("QuickStart", "-type", "UPSERT-JSON-INDEX"));
arguments.addAll(Arrays.asList(args));
PinotAdministrator.main(arguments.toArray(new String[0]));
}
@Override
public void runSampleQueries(QuickstartRunner runner)
throws Exception {
printStatus(Color.YELLOW, "***** Upsert json-index quickstart setup complete *****");
String q1 =
"select json_extract_scalar(event_json, '$.event_name', 'STRING') from upsertJsonMeetupRsvp where json_match"
+ "(group_json, '\"$.group_topics[*].topic_name\"=''topic_name0''') limit 10";
printStatus(Color.YELLOW, "Events related to fitness");
printStatus(Color.CYAN, "Query : " + q1);
printStatus(Color.YELLOW, prettyPrintResponse(runner.runQuery(q1)));
printStatus(Color.GREEN, "***************************************************");
}
}