Sign inSign up

wdnmdcyka/ambry-server

By wdnmdcyka

•Updated almost 7 years ago

linkedin/ambry server image,use it with ambry-client

Image
0

157

wdnmdcyka/ambry-server repository overview

⁠linkedin/ambry

Ambry is a distributed object store that supports storage of trillion of small immutable objects (50K -100K) as well as billions of large objects. It was specifically designed to store and serve media objects in web companies. However, it can be used as a general purpose storage system to store DB backups, search indexes or business reports. The system has the following characterisitics:

  • Highly available and horizontally scalable

  • Low latency and high throughput

  • Optimized for both small and large objects

  • Cost effective

  • Easy to use

⁠usage:

1、 pull ambry server and client image

docker pull   wdnmdcyka/ambry-server:tagname
docker pull   wdnmdcyka/ambry-client:tagname

Current Tag : 1.0

2、 deploy ambry-server

docker run -d  -v  ${your config dir}:/app/config  
                                -v ${your tmp dir}:/tmp
                                 -v ${your logs dir}:/app/logs
                                 -p 6667:6667
                                 -p 16503:16503
                                 --restart always
                                 --name  ambry-server
                                 wdnmdcyka/ambry-server:tagname

3、 deploy ambry-client

docker run -d  -v  ${your config dir}:/app/config   
                                 -v ${your logs dir}:/app/logs
                                 -p 1174:1174
                                 --restart always
                                 --name  ambry-client
                                 wdnmdcyka/ambry-client:tagname

4、test

curl http://localhost:1174/healthCheck

GOOD

ambry config files : https://github.com/linkedin/ambry/tree/master/config⁠

Tag summary

Content type

Image

Digest

Size

412.7 MB

Last updated

almost 7 years ago

docker pull wdnmdcyka/ambry-server:1.0