All Projects → joyent → java-manta

joyent / java-manta

Licence: MPL-2.0, Unknown licenses found Licenses found MPL-2.0 LICENSE.txt Unknown license-history.txt
Java Manta Client SDK

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to java-manta

java-http-signature
Library for performing RSA signed HTTP requests in Java
Stars: ✭ 15 (-6.25%)
Mutual labels:  manta, joyent, triton
ubuntu-lx-brand-image-builder
Scripts used for creating an lx-brand Ubuntu image
Stars: ✭ 13 (-18.75%)
Mutual labels:  joyent, triton
centos-lx-brand-image-builder
Scripts used for creating an lx-brand CentOS image
Stars: ✭ 12 (-25%)
Mutual labels:  joyent, triton
LLVM-JVM
[W.I.P] A Just-In-Time Java Virtual Machine written in Haskell
Stars: ✭ 22 (+37.5%)
Mutual labels:  jvm
oh-my-jvm
☕️ using golang write jvm
Stars: ✭ 16 (+0%)
Mutual labels:  jvm
styx
Programmable, asynchronous, event-based reverse proxy for JVM.
Stars: ✭ 250 (+1462.5%)
Mutual labels:  jvm
aot
Russian morphology for Java
Stars: ✭ 41 (+156.25%)
Mutual labels:  jvm
play-scala-fileupload-example
An example Play application showing custom multiform fileupload in Scala
Stars: ✭ 29 (+81.25%)
Mutual labels:  jvm
SmallVM
TODO: A small and lightweight Java Virtual Machine
Stars: ✭ 23 (+43.75%)
Mutual labels:  jvm
dragome-sdk
Dragome is a tool for creating client side web applications in pure Java (JVM) language.
Stars: ✭ 79 (+393.75%)
Mutual labels:  jvm
jstackSeries.sh
Script for capturing a series of thread dumps from a Java process using jstack (on Linux and Windows)
Stars: ✭ 28 (+75%)
Mutual labels:  jvm
gchisto
GC日志分析工具,网上不容易找到源码,这里备份一个。不确定工具是否正确,不确定是否有时间研究。
Stars: ✭ 32 (+100%)
Mutual labels:  jvm
kotlin-guiced
Convenience Kotlin API over the Google Guice DI Library
Stars: ✭ 17 (+6.25%)
Mutual labels:  jvm
Computer-Science-Learn-Notes
CS(Computer Science)生涯:读书笔记,集成Java知识体系!(Java基础、JVM、JUC、Spring系列、面试八股文、力扣刷题笔记,数据结构和算法、SpringBoot整合其他框架等)
Stars: ✭ 141 (+781.25%)
Mutual labels:  jvm
Cojen
Java bytecode generation and disassembly tools
Stars: ✭ 28 (+75%)
Mutual labels:  jvm
mleap
R Interface to MLeap
Stars: ✭ 24 (+50%)
Mutual labels:  jvm
openwhisk-runtime-java
Apache OpenWhisk Runtime Java supports Apache OpenWhisk functions written in Java and other JVM-hosted languages
Stars: ✭ 43 (+168.75%)
Mutual labels:  jvm
java2typescript
Java Processor to generate Typescript Definition from Java classes - This is to help developing on JVM javascript engine (ie Nashorn) using Typescript
Stars: ✭ 24 (+50%)
Mutual labels:  jvm
isaac ros dnn inference
Hardware-accelerated DNN model inference ROS2 packages using NVIDIA Triton/TensorRT for both Jetson and x86_64 with CUDA-capable GPU
Stars: ✭ 67 (+318.75%)
Mutual labels:  triton
java-perf-workshop
Guided walkthrough to understand the performance aspects of a Java web service
Stars: ✭ 53 (+231.25%)
Mutual labels:  jvm

Build Status

Java Manta Client SDK

java-manta is a community-maintained Java SDK for interacting with Joyent's Manta system.

Projects Using the Java Manta Client SDK

Installation

Java 1.8 is required for SDK compilation. It effectively supports both Java 8 and Java 11 in application usage. The main client module can be installed by adding the following dependency using Maven 3.1.x:

<dependency>
    <groupId>com.joyent.manta</groupId>
    <artifactId>java-manta-client</artifactId>
    <version>LATEST</version>
</dependency>

and the unshaded module can be installed by adding the following dependency using Maven 3.1.x:

<dependency>
    <groupId>com.joyent.manta</groupId>
    <artifactId>java-manta-client-unshaded</artifactId>
    <version>LATEST</version>
</dependency>

Please refer to the installation documentation for more details about the following topics:

Configuration

Configuration can be done through system properties or environment variables. Listed below are the most commonly used configuration options:

System Property Environment Variable Default
manta.url MANTA_URL https://us-east.manta.joyent.com:443
manta.user MANTA_USER
manta.key_id MANTA_KEY_ID
manta.key_path                     MANTA_KEY_PATH                 $HOME/.ssh/id_rsa (if exists)
  • manta.url ( MANTA_URL ) The URL of the manta service endpoint to test against
  • manta.user ( MANTA_USER ) The account name used to access the manta service. If accessing via a subuser, you will specify the account name as "user/subuser".
  • manta.key_id: ( MANTA_KEY_ID) The fingerprint for the public key used to access the manta service. Can be obtained using ssh-keygen -l -f ${MANTA_KEY_PATH} -E md5 | cut -d' ' -f 2
  • manta.key_path ( MANTA_KEY_PATH) The name of the file that will be loaded for the account used to access the manta service.

Please refer to the configuration documentation for example code and the full list of configuration options which include retry and performance tuning in addition to encryption and authentication parameters.

Usage

You'll need a manta login, an associated key, and its corresponding key fingerprint.

You will then create or use an implementation of ConfigContext to set up your configuration. Once you have an instance of your configuration class, you will then construct a MantaClient instance. The MantaClient class is intended to be used per Manta account. It is thread-safe and you should share one instance across multiple threads.

For detailed usage instructions consult the provided JavaDoc and examples. The JavaDoc can also be browsed online at javadoc.io

General Examples

Job Examples

Jobs can be created directly with the MantaClient class or they can be created using the MantaJobBuilder class. MantaJobBuilder provides a fluent interface that allows for an easier API for job creation and it provides a number of useful functions for common use cases.

For more examples, check the included examples module and the integration test module.

FAQs

Known edge cases and other topics are covered in the FAQ.

Contributions

Contributions are welcome! Please read the CONTRIBUTING.md document for details on getting started.

Developing

There are portions of the SDK that are somewhat complex or fiddly. Please read the DEVELOPING.md document for details, before developing the Java SDK.

Testing

Contributing developers are strongly encouraged to add unit-tests and integration-tests. Refer to the testing documentation for information on full test suite requirements.

Releasing

Please refer to the release documentation.

Bugs

See https://github.com/joyent/java-manta/issues.

License

Java Manta is licensed under the MPLv2. Please see the LICENSE.txt file for more details. The license was changed from the MIT license to the MPLv2 license starting at version 2.3.0.

Credits

We are grateful for the functionality provided by the libraries that this project depends on. Without them, we would be building everything from scratch. A thank you goes out to:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].