python-ranger-tn


Namepython-ranger-tn JSON
Version 1.8.4 PyPI version JSON
download
home_pagehttps://github.com/Tushar-Naik/python-ranger-daemon
SummaryThe python equivalent for ranger based service discovery mechanism using zookeeper
upload_time2023-02-06 09:31:12
maintainer
docs_urlNone
authorTushar Naik
requires_python
licenseLicense 2.0
keywords ranger zookeeper service discovery periodic task interval periodic job flask style decorator tushar
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python Ranger

[![PyPI version](https://img.shields.io/pypi/v/python-ranger-tn?style=for-the-badge)](https://pypi.org/project/python-ranger-tn)
[![Docker Image](https://img.shields.io/docker/v/tusharknaik/python-ranger-daemon?style=for-the-badge)](https://hub.docker.com/repository/docker/tusharknaik/python-ranger-daemon)

Before you start, you might wanna check [Ranger](https://github.com/appform-io/ranger) for more details. You'll need it
to follow some jargon being used in this readme.

There are 3 sections in here.

1. [Ranger Service Finder](#ranger-service-finder)
1. [Ranger Service Provider](#ranger-service-provider)
2. [Ranger Daemon](#ranger-daemon-setup)

## Ranger Service Finder

A service finder in Ranger is something can be used to discover individual host:port pairs of a distributed service
which allows clients to connect and request for services (make http calls). This finding is done using zookeeper. The
following python class helps you do the same for any python based service/tool. It follows the same data models as
present in the main ranger java library. (which is paramount for this to work across languages).

Similar details can be found at [PyPi](https://pypi.org/project/python-ranger-tn/)

### Installation

```shell
python3.9 -m pip install python-ranger-tn
```

### Usage

```python
import requests
from rangermodels import *
from servicefinder import RangerServiceFinder, RoundRobinNodeSelector

## Create the ranger service provider
ranger = RangerServiceFinder(cluster_details=ClusterDetails(zk_string='localhost:2181', update_interval_in_secs=1),
                             namespace="org",
                             services=["serviceA", "serviceB"],
                             selector=RoundRobinNodeSelector())  # optional
# or in one line
ranger = RangerServiceFinder(ClusterDetails('localhost:2181'), "org", ["serviceA", "serviceB"])

## Start the updates in background (this is important)
ranger.start()

## Get one of the healthy nodes to make requests
node = ranger.get_node("serviceA")
response = requests.get(node.get_endpoint() + "/my/api")
node = ranger.get_node("serviceA")
response_again = requests.get(node.get_endpoint(secure=True) + "/my/secure/api")

## to get the full list of healthy nodes
nodes = ranger.get_all_nodes("serviceB")

## When you wish to clean up
ranger.stop()
```

### Details

The above sample shows how to set up a service finder for 2 services. You get the node and then fetch the relevant
details from the node. There would be one background thread created, that continuously refreshes updates from zookeeper.
There is support for being able to apply a custom criteria based filter just like in the java lib(check criteria_filter)
The only difference you might see from the java implementation, is the registration of services before the start (In the
java lib, the expectation is to create one service finder per service, here we create one finder for all services that
may be required for by your python app)

---

## Ranger Service Provider

A service provider in Ranger does the opposite. It can a way to broadcast that a service is available at some host:
port, where clients can connect and request services (make http calls). This broadcast is essentially done using
zookeeper. The following python class helps you do the same for any python based service/tool. Again, it follows the
same data models as present in the main ranger java library.

### Usage

```python
from rangermodels import *
from serviceprovider import RangerServiceProvider, HealthCheck

# Create the ranger service provider
ranger = RangerServiceProvider(cluster_details=ClusterDetails(zk_string='localhost:2181', update_interval_in_secs=1),
                               service_details=ServiceDetails(host='localhost', port=12211, environment='stage',
                                                              namespace='myorg',
                                                              service_name='python-test'),
                               health_check=HealthCheck(url='localhost:12211/health', scheme=UrlScheme.GET))

## Or in 2 lines
ranger = RangerServiceProvider(ClusterDetails('localhost:2181'),
                               ServiceDetails('localhost', 12211, 'stage', 'myorg', 'python-test'))

## Start the updates in background (this will update zookeeper at regular intervals)
ranger.start()

## You may also start the updates and block your current thread (until we hit an interrupt)
ranger.start(block=True)

## When you wish to stop updates
ranger.stop()
```

### Details

The above sample shows how to set up a background thread, that does the job of publishing regular updates to zk. You can
optionally provide a healthcheck url, which will receive a ping at regular intervals. A HEALTHY broadcast will only be
done if the ping check was successful. You can check HealthCheck to customize the URL to your needs.

---

## Ranger Daemon setup

This section deals with using the code as a simple light daemon that can run alongside your software (but outside it) to
provide regular service discovery updates to zookeeper. As usual, check [Ranger](https://github.com/appform-io/ranger)
for more details.

### Intent

Ideally, you would directly use the standard Ranger java client to deeply integrate the service's health updates with
ranger.<br>  
In scenarios where you can't do the above, you can rely on this daemon. Say you need discovery updates to be published
for a service written in a langauge other than java, or you are unable to add the ranger dependency directly, in your
java application.

The intent of this daemon is to run along-side your software and publish updates, as long as your software is up and
healthy. Currently, support has been added for a dockerized setup, as well as an import based custom setup. Currently,
Support has been provided for the following:

1. Simple usage
2. Import based usage
3. Docker multi-container setup

### 1. Simple usage

If you just wish to invoke the script directly, clone the project and follow along the helper. Your command would look
something like this

```shell
python3.9 serviceprovider/ranger_daemon.py -zk localhost:2181 -s myapp -host localhost -p 12211 -n org -e stage -hcu 'http://localhost:12211/healthcheck?pretty=true'
```

### 2. Import Based Usage

You can also choose to run the daemon from within another python file, by forwarding the command line arguments. Install
the package first, as shown below

```shell
python3.9 -m pip install python-ranger-tn
```

```python
import sys
from serviceprovider.ranger_daemon import ranger_daemon_trigger

ranger_daemon_trigger(sys.argv[1:])
```

### 3. Docker Based

Imagine a scenario where you already have a docker application, but you want to run this daemon alongside the container,
to make the existing container discoverable, without having to code up an integration with ranger. The following is a
solution to this problem. You can use docker compose to run your service and this daemon as a multi container docker
application.<br>
After this, your existing container should be ready for service discovery.

Docker containers are available on
the [DockerHub](https://hub.docker.com/repository/docker/tusharknaik/python-ranger-daemon).

The following docker command can be used to start the daemon, using environment variables. The table below explains the
various environment variables required to run the script

| Env Variable | Description                                         |
|--------------|-----------------------------------------------------|
| HOST         | Hostname                                            |
| PORT         | Port                                                |
| RANGER_ZK    | Zookeeper connection string                         |
| SERVICE_NAME | Name of service                                     |
| ENV          | Environment (stage/prod)                            |
| NAMESPACE    | Namespace in zookeeper                              |
| HEALTH_CHECK | [optional] GET healthcheck URL to be used for pings |
| REGION       | [optional] Region value                             |
| TAGS         | [optional] Comma separated tags                     |

```shell
docker run --rm -d -e RANGER_ZK=<zookeeper_info> -e SERVICE_NAME=<name_of_service> -e HOST=<host_of_machine> -e PORT=<port> -e ENV=<environment> -e NAMESPACE=<namespace> -e HEALTH_CHECK=<health_check_url> --name python-ranger-daemon tusharknaik/python-ranger-daemon:1.8.4
```

Here is an example for running it on a Mac machine, assuming your zookeeper is already running on `localhost:2181` (
notice the network being set to `host` and zookeeper being sent as `host.docker.internal` for connecting to localhost
from within docker)

```shell
docker run --rm -d --network host -e RANGER_ZK=host.docker.internal:2181 -e SERVICE_NAME=python-test -e HOST=localhost -e PORT=12211 -e ENV=stage -e NAMESPACE=myorg -e HEALTH_CHECK="localhost:12211/health" --name python-ranger-daemon tusharknaik/python-ranger-daemon:1.8.4
```

---

## Under the hood

The daemon/thread will write data to zookeeper in the following format (datamodel from ranger):

```json
{
  "host": "localhost",
  "port": 12211,
  "nodeData": {
    "environment": "stage",
    "tags": [
      "identity",
      "auth"
    ],
    "region": "IN-nm"
  },
  "healthcheckStatus": "healthy",
  "lastUpdatedTimeStamp": 1639044989841
}
```

Updates will be published in the path: /$NAMESPACE/$SERVICE_NAME at a periodic intervals of --interval (default: 1
second)

**The following will be taken care of:**

- Infinite retry and connection reattempts in case of zk connection issues
- Proper cleanup of zk connections to get rid of ephemeral nodes
- Proper logging
- Does continuous health check pings on a particular health check url if required [optional]



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Tushar-Naik/python-ranger-daemon",
    "name": "python-ranger-tn",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "ranger,zookeeper,service discovery,periodic task,interval,periodic job,flask style,decorator,tushar",
    "author": "Tushar Naik",
    "author_email": "tushar.knaik@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b8/e2/c5d3f821ff03785614146bfa72c65e5d0143dacf89f79e3d3a3a7369d762/python-ranger-tn-1.8.4.tar.gz",
    "platform": null,
    "description": "# Python Ranger\n\n[![PyPI version](https://img.shields.io/pypi/v/python-ranger-tn?style=for-the-badge)](https://pypi.org/project/python-ranger-tn)\n[![Docker Image](https://img.shields.io/docker/v/tusharknaik/python-ranger-daemon?style=for-the-badge)](https://hub.docker.com/repository/docker/tusharknaik/python-ranger-daemon)\n\nBefore you start, you might wanna check [Ranger](https://github.com/appform-io/ranger) for more details. You'll need it\nto follow some jargon being used in this readme.\n\nThere are 3 sections in here.\n\n1. [Ranger Service Finder](#ranger-service-finder)\n1. [Ranger Service Provider](#ranger-service-provider)\n2. [Ranger Daemon](#ranger-daemon-setup)\n\n## Ranger Service Finder\n\nA service finder in Ranger is something can be used to discover individual host:port pairs of a distributed service\nwhich allows clients to connect and request for services (make http calls). This finding is done using zookeeper. The\nfollowing python class helps you do the same for any python based service/tool. It follows the same data models as\npresent in the main ranger java library. (which is paramount for this to work across languages).\n\nSimilar details can be found at [PyPi](https://pypi.org/project/python-ranger-tn/)\n\n### Installation\n\n```shell\npython3.9 -m pip install python-ranger-tn\n```\n\n### Usage\n\n```python\nimport requests\nfrom rangermodels import *\nfrom servicefinder import RangerServiceFinder, RoundRobinNodeSelector\n\n## Create the ranger service provider\nranger = RangerServiceFinder(cluster_details=ClusterDetails(zk_string='localhost:2181', update_interval_in_secs=1),\n                             namespace=\"org\",\n                             services=[\"serviceA\", \"serviceB\"],\n                             selector=RoundRobinNodeSelector())  # optional\n# or in one line\nranger = RangerServiceFinder(ClusterDetails('localhost:2181'), \"org\", [\"serviceA\", \"serviceB\"])\n\n## Start the updates in background (this is important)\nranger.start()\n\n## Get one of the healthy nodes to make requests\nnode = ranger.get_node(\"serviceA\")\nresponse = requests.get(node.get_endpoint() + \"/my/api\")\nnode = ranger.get_node(\"serviceA\")\nresponse_again = requests.get(node.get_endpoint(secure=True) + \"/my/secure/api\")\n\n## to get the full list of healthy nodes\nnodes = ranger.get_all_nodes(\"serviceB\")\n\n## When you wish to clean up\nranger.stop()\n```\n\n### Details\n\nThe above sample shows how to set up a service finder for 2 services. You get the node and then fetch the relevant\ndetails from the node. There would be one background thread created, that continuously refreshes updates from zookeeper.\nThere is support for being able to apply a custom criteria based filter just like in the java lib(check criteria_filter)\nThe only difference you might see from the java implementation, is the registration of services before the start (In the\njava lib, the expectation is to create one service finder per service, here we create one finder for all services that\nmay be required for by your python app)\n\n---\n\n## Ranger Service Provider\n\nA service provider in Ranger does the opposite. It can a way to broadcast that a service is available at some host:\nport, where clients can connect and request services (make http calls). This broadcast is essentially done using\nzookeeper. The following python class helps you do the same for any python based service/tool. Again, it follows the\nsame data models as present in the main ranger java library.\n\n### Usage\n\n```python\nfrom rangermodels import *\nfrom serviceprovider import RangerServiceProvider, HealthCheck\n\n# Create the ranger service provider\nranger = RangerServiceProvider(cluster_details=ClusterDetails(zk_string='localhost:2181', update_interval_in_secs=1),\n                               service_details=ServiceDetails(host='localhost', port=12211, environment='stage',\n                                                              namespace='myorg',\n                                                              service_name='python-test'),\n                               health_check=HealthCheck(url='localhost:12211/health', scheme=UrlScheme.GET))\n\n## Or in 2 lines\nranger = RangerServiceProvider(ClusterDetails('localhost:2181'),\n                               ServiceDetails('localhost', 12211, 'stage', 'myorg', 'python-test'))\n\n## Start the updates in background (this will update zookeeper at regular intervals)\nranger.start()\n\n## You may also start the updates and block your current thread (until we hit an interrupt)\nranger.start(block=True)\n\n## When you wish to stop updates\nranger.stop()\n```\n\n### Details\n\nThe above sample shows how to set up a background thread, that does the job of publishing regular updates to zk. You can\noptionally provide a healthcheck url, which will receive a ping at regular intervals. A HEALTHY broadcast will only be\ndone if the ping check was successful. You can check HealthCheck to customize the URL to your needs.\n\n---\n\n## Ranger Daemon setup\n\nThis section deals with using the code as a simple light daemon that can run alongside your software (but outside it) to\nprovide regular service discovery updates to zookeeper. As usual, check [Ranger](https://github.com/appform-io/ranger)\nfor more details.\n\n### Intent\n\nIdeally, you would directly use the standard Ranger java client to deeply integrate the service's health updates with\nranger.<br>  \nIn scenarios where you can't do the above, you can rely on this daemon. Say you need discovery updates to be published\nfor a service written in a langauge other than java, or you are unable to add the ranger dependency directly, in your\njava application.\n\nThe intent of this daemon is to run along-side your software and publish updates, as long as your software is up and\nhealthy. Currently, support has been added for a dockerized setup, as well as an import based custom setup. Currently,\nSupport has been provided for the following:\n\n1. Simple usage\n2. Import based usage\n3. Docker multi-container setup\n\n### 1. Simple usage\n\nIf you just wish to invoke the script directly, clone the project and follow along the helper. Your command would look\nsomething like this\n\n```shell\npython3.9 serviceprovider/ranger_daemon.py -zk localhost:2181 -s myapp -host localhost -p 12211 -n org -e stage -hcu 'http://localhost:12211/healthcheck?pretty=true'\n```\n\n### 2. Import Based Usage\n\nYou can also choose to run the daemon from within another python file, by forwarding the command line arguments. Install\nthe package first, as shown below\n\n```shell\npython3.9 -m pip install python-ranger-tn\n```\n\n```python\nimport sys\nfrom serviceprovider.ranger_daemon import ranger_daemon_trigger\n\nranger_daemon_trigger(sys.argv[1:])\n```\n\n### 3. Docker Based\n\nImagine a scenario where you already have a docker application, but you want to run this daemon alongside the container,\nto make the existing container discoverable, without having to code up an integration with ranger. The following is a\nsolution to this problem. You can use docker compose to run your service and this daemon as a multi container docker\napplication.<br>\nAfter this, your existing container should be ready for service discovery.\n\nDocker containers are available on\nthe [DockerHub](https://hub.docker.com/repository/docker/tusharknaik/python-ranger-daemon).\n\nThe following docker command can be used to start the daemon, using environment variables. The table below explains the\nvarious environment variables required to run the script\n\n| Env Variable | Description                                         |\n|--------------|-----------------------------------------------------|\n| HOST         | Hostname                                            |\n| PORT         | Port                                                |\n| RANGER_ZK    | Zookeeper connection string                         |\n| SERVICE_NAME | Name of service                                     |\n| ENV          | Environment (stage/prod)                            |\n| NAMESPACE    | Namespace in zookeeper                              |\n| HEALTH_CHECK | [optional] GET healthcheck URL to be used for pings |\n| REGION       | [optional] Region value                             |\n| TAGS         | [optional] Comma separated tags                     |\n\n```shell\ndocker run --rm -d -e RANGER_ZK=<zookeeper_info> -e SERVICE_NAME=<name_of_service> -e HOST=<host_of_machine> -e PORT=<port> -e ENV=<environment> -e NAMESPACE=<namespace> -e HEALTH_CHECK=<health_check_url> --name python-ranger-daemon tusharknaik/python-ranger-daemon:1.8.4\n```\n\nHere is an example for running it on a Mac machine, assuming your zookeeper is already running on `localhost:2181` (\nnotice the network being set to `host` and zookeeper being sent as `host.docker.internal` for connecting to localhost\nfrom within docker)\n\n```shell\ndocker run --rm -d --network host -e RANGER_ZK=host.docker.internal:2181 -e SERVICE_NAME=python-test -e HOST=localhost -e PORT=12211 -e ENV=stage -e NAMESPACE=myorg -e HEALTH_CHECK=\"localhost:12211/health\" --name python-ranger-daemon tusharknaik/python-ranger-daemon:1.8.4\n```\n\n---\n\n## Under the hood\n\nThe daemon/thread will write data to zookeeper in the following format (datamodel from ranger):\n\n```json\n{\n  \"host\": \"localhost\",\n  \"port\": 12211,\n  \"nodeData\": {\n    \"environment\": \"stage\",\n    \"tags\": [\n      \"identity\",\n      \"auth\"\n    ],\n    \"region\": \"IN-nm\"\n  },\n  \"healthcheckStatus\": \"healthy\",\n  \"lastUpdatedTimeStamp\": 1639044989841\n}\n```\n\nUpdates will be published in the path: /$NAMESPACE/$SERVICE_NAME at a periodic intervals of --interval (default: 1\nsecond)\n\n**The following will be taken care of:**\n\n- Infinite retry and connection reattempts in case of zk connection issues\n- Proper cleanup of zk connections to get rid of ephemeral nodes\n- Proper logging\n- Does continuous health check pings on a particular health check url if required [optional]\n\n\n",
    "bugtrack_url": null,
    "license": "License 2.0",
    "summary": "The python equivalent for ranger based service discovery mechanism using zookeeper",
    "version": "1.8.4",
    "split_keywords": [
        "ranger",
        "zookeeper",
        "service discovery",
        "periodic task",
        "interval",
        "periodic job",
        "flask style",
        "decorator",
        "tushar"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8e2c5d3f821ff03785614146bfa72c65e5d0143dacf89f79e3d3a3a7369d762",
                "md5": "3170969a5561209ccbad530eb7178a2d",
                "sha256": "14a39f81b59cc76edf4430225f1eb4197984efdd6112f647fb74023779cf07c8"
            },
            "downloads": -1,
            "filename": "python-ranger-tn-1.8.4.tar.gz",
            "has_sig": false,
            "md5_digest": "3170969a5561209ccbad530eb7178a2d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 17994,
            "upload_time": "2023-02-06T09:31:12",
            "upload_time_iso_8601": "2023-02-06T09:31:12.215177Z",
            "url": "https://files.pythonhosted.org/packages/b8/e2/c5d3f821ff03785614146bfa72c65e5d0143dacf89f79e3d3a3a7369d762/python-ranger-tn-1.8.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-06 09:31:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Tushar-Naik",
    "github_project": "python-ranger-daemon",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "python-ranger-tn"
}
        
Elapsed time: 0.03553s