AMBARI-13599. Pig View - Service storage check Failed - Internal Exception: java.sql.SQLSyntaxErrorException: ORA-00972: identifier is too long. (Pankaj Singh via jluniya)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/e8594069 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/e8594069 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/e8594069 Branch: refs/heads/branch-2.1.2 Commit: e8594069a0f1bbe6eb94c37831779164c1078fca Parents: 45bc369 Author: Jayush Luniya <[email protected]> Authored: Thu Oct 29 17:18:00 2015 -0700 Committer: Jayush Luniya <[email protected]> Committed: Thu Oct 29 17:25:11 2015 -0700 ---------------------------------------------------------------------- .../view/pig/persistence/DataStoreStorage.java | 24 ----------- .../view/pig/persistence/SmokeTestEntity.java | 45 ++++++++++++++++++++ contrib/views/pig/src/main/resources/view.xml | 2 +- 3 files changed, 46 insertions(+), 25 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/e8594069/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/DataStoreStorage.java ---------------------------------------------------------------------- diff --git a/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/DataStoreStorage.java b/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/DataStoreStorage.java index d89e7a6..7ae7721 100644 --- a/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/DataStoreStorage.java +++ b/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/DataStoreStorage.java @@ -18,17 +18,14 @@ package org.apache.ambari.view.pig.persistence; -import com.google.gson.Gson; import org.apache.ambari.view.PersistenceException; import org.apache.ambari.view.ViewContext; import org.apache.ambari.view.pig.persistence.utils.*; import org.apache.ambari.view.pig.utils.ServiceFormattedException; -import org.apache.commons.configuration.Configuration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.ws.rs.WebApplicationException; -import java.util.ArrayList; import java.util.LinkedList; import java.util.List; @@ -38,7 +35,6 @@ import java.util.List; public class DataStoreStorage implements Storage { private final static Logger LOG = LoggerFactory.getLogger(DataStoreStorage.class); - protected final Gson gson = new Gson(); protected ViewContext context; /** @@ -151,24 +147,4 @@ public class DataStoreStorage implements Storage { } } - public static class SmokeTestEntity implements Indexed { - private String id = null; - private String data = null; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getData() { - return data; - } - - public void setData(String data) { - this.data = data; - } - } } http://git-wip-us.apache.org/repos/asf/ambari/blob/e8594069/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/SmokeTestEntity.java ---------------------------------------------------------------------- diff --git a/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/SmokeTestEntity.java b/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/SmokeTestEntity.java new file mode 100644 index 0000000..ec7e34b --- /dev/null +++ b/contrib/views/pig/src/main/java/org/apache/ambari/view/pig/persistence/SmokeTestEntity.java @@ -0,0 +1,45 @@ +/** + * 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.ambari.view.pig.persistence; + +import org.apache.ambari.view.pig.persistence.utils.Indexed; + +/** + * DataStore entity to test whether DS interface works correctly. + */ +public class SmokeTestEntity implements Indexed { + private String id = null; + private String data = null; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getData() { + return data; + } + + public void setData(String data) { + this.data = data; + } +} http://git-wip-us.apache.org/repos/asf/ambari/blob/e8594069/contrib/views/pig/src/main/resources/view.xml ---------------------------------------------------------------------- diff --git a/contrib/views/pig/src/main/resources/view.xml b/contrib/views/pig/src/main/resources/view.xml index 5cca9bd..636e26e 100644 --- a/contrib/views/pig/src/main/resources/view.xml +++ b/contrib/views/pig/src/main/resources/view.xml @@ -198,7 +198,7 @@ <persistence> <entity> - <class>org.apache.ambari.view.pig.persistence.DataStoreStorage$SmokeTestEntity</class> + <class>org.apache.ambari.view.pig.persistence.SmokeTestEntity</class> <id-property>id</id-property> </entity> <entity>
