PageRenderTime 57ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/release-0.0.0-rc0/hive/external/metastore/scripts/start_meta_store_thrift_server.sh

#
Shell | 41 lines | 14 code | 8 blank | 19 comment | 4 complexity | bf4ab7876e18ea38de1c1aacfd699357 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. #!/usr/bin/env bash
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. CLASSPATH=
  17. # the dist lib libraries
  18. for f in /usr/local/fbprojects/hive.metastore/lib/*.jar ; do
  19. CLASSPATH=$CLASSPATH:$f
  20. done
  21. # the hadoop libraries
  22. for f in /mnt/hive/stable/cluster/*.jar ; do
  23. CLASSPATH=$CLASSPATH:$f
  24. done
  25. # the apache libraries
  26. for f in /mnt/hive/stable/cluster/lib/*.jar ; do
  27. CLASSPATH=$CLASSPATH:$f
  28. done
  29. # for now, the fb_hive libraries
  30. for f in /mnt/hive/stable/lib/hive/*.jar ; do
  31. CLASSPATH=$CLASSPATH:$f
  32. done
  33. /usr/local/bin/java -Dcom.sun.management.jmxremote -Djava.library.path=/mnt/hive/production/cluster/lib/native/Linux-amd64-64/ -cp $CLASSPATH com.facebook.metastore.MetaStoreServer