blob: bad63bf5998d88df2dab56fd1b7de77d6ee31e65 [file] [log] [blame]
/*
* 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.
*/
/*
* Description : Create a feed which uses an external parser to parse data from files
* The files have duplicates and long records
* Expected Res : Success
* Date : Feb, 09, 2016
*/
drop dataverse externallibtest if exists;
create dataverse externallibtest;
use externallibtest;
create type Classad as open {
GlobalJobId: string,
Owner: string?,
ClusterId: int32?,
ProcId: int32?,
RemoteWallClockTime: duration?,
CompletionDate: datetime?,
QDate : datetime?,
JobCurrentStartDate: datetime?,
JobStartDate : datetime?,
JobCurrentStartExecutingDate : datetime?
};
create dataset Condor(Classad) primary key GlobalJobId;
create index caRequestCpusIdx on Condor(RequestCpus:int64?) type btree enforced;
create index caRemoteWallClockTimeIdx on Condor(RemoteWallClockTime) type btree;
create index caUserIdx on Condor(User:string?) type btree enforced;
create index caScheddIdx on Condor(Schedd:string?) type btree enforced;
create index caRemoteHostIdx on Condor(RemoteHost:string?) type btree enforced;