{"id":13564353,"url":"https://github.com/apache/servicecomb-kie","last_synced_at":"2025-05-16T11:05:12.717Z","repository":{"id":34827762,"uuid":"183985068","full_name":"apache/servicecomb-kie","owner":"apache","description":"Apache ServiceComb MetaConfig","archived":false,"fork":false,"pushed_at":"2024-04-01T12:40:19.000Z","size":8732,"stargazers_count":544,"open_issues_count":36,"forks_count":68,"subscribers_count":34,"default_branch":"master","last_synced_at":"2025-05-10T17:16:42.230Z","etag":null,"topics":["servicecomb"],"latest_commit_sha":null,"homepage":"https://servicecomb.apache.org/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apache.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-29T02:19:15.000Z","updated_at":"2025-05-07T01:06:30.000Z","dependencies_parsed_at":"2023-11-24T02:23:19.125Z","dependency_job_id":"0d24b460-0a54-4524-a322-3c7117b3541f","html_url":"https://github.com/apache/servicecomb-kie","commit_stats":{"total_commits":206,"total_committers":22,"mean_commits":9.363636363636363,"dds":0.645631067961165,"last_synced_commit":"0167fb0d655a998daa67f64b3b3e8791cbaf35c0"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fservicecomb-kie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fservicecomb-kie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fservicecomb-kie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fservicecomb-kie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/servicecomb-kie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254518384,"owners_count":22084374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["servicecomb"],"created_at":"2024-08-01T13:01:30.126Z","updated_at":"2025-05-16T11:05:12.671Z","avatar_url":"https://github.com/apache.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Apache-ServiceComb-Kie \n\n[![Build Status](https://travis-ci.org/apache/servicecomb-kie.svg?branch=master)](https://travis-ci.org/apache/servicecomb-kie?branch=master) \n[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)\n[![Coverage Status](https://coveralls.io/repos/github/apache/servicecomb-kie/badge.svg?branch=master)](https://coveralls.io/github/apache/servicecomb-kie?branch=master)\nA service for configuration management in distributed system.\n\n## Conceptions\n\n### Key\nKey could indicate a configuration like \"timeout\",\nthen the value could be \"3s\"\nor indicates a file name \"app.properties\", \nthen the value could be content of app.properties\n\n### Labels\nEach key could has labels. labels indicates a unique key.\nA key \"log_level\" with labels \"env=production\" \nmay saves the value \"INFO\" for all application log level in production environment.\nA key \"log_level\" with labels \"env=production, component=payment\" \nmay saves the value \"DEBUG\" for payment service in production environment.\n\nIt means all payment service print debug log, but for other service print info log.\n\nSo you can control your application runtime behaviors \nby setting different labels to a key.\n\n\n## Why use kie\nkie is a highly flexible config server. Nowadays, an operation team is facing different \"x-centralized\" system.\nFor example a classic application-centralized system. A operator wants to change config based on application name and version, then the label could be \"app,version\" for locating a app's configurations.\nMeanwhile some teams manage app in a data center, each application instance will be deployed in a VM machine. then label could be \"farm,role,server,component\" to locate a app's configurations.\nkie fit different senario for configuration management which benifit from label design.\n\n\n## Components\nIt includes 1 components\n\n- server: rest api service to manage kv\n\n## Features\n- kv management: you can manage config item by key and label\n- kv revision mangement: you can mange all kv change history\n- kv change event: use long polling to watch kv changes, highly decreased network cost\n- polling detail track: if any client poll config from server, the detail will be tracked\n## Quick Start\n\n### Run locally with Docker compose\n\n```bash\ngit clone git@github.com:apache/servicecomb-kie.git\ncd servicecomb-kie/deployments/docker\nsudo docker-compose up\n```\nIt will launch 3 components \n- mongodb: 127.0.0.1:27017\n- mongodb UI: http://127.0.0.1:8081\n- servicecomb-kie: http://127.0.0.1:30110\n\n\n## Development\nTo see how to build a local dev environment, check [here](examples/dev)\n\n### Build\nThis will build your own service image and binary in local\n```bash\ncd build\nexport VERSION=0.0.1 #optional, it is latest by default\n./build_docker.sh\n```\n\nThis will generate a \"servicecomb-kie-0.0.1-linux-amd64.tar\" in \"release\" folder,\nand a docker image \"servicecomb/kie:0.0.1\"\n\n# API Doc\nAfter you launch kie server, you can browse API doc in http://127.0.0.1:30110/apidocs.json, \ncopy this doc to http://editor.swagger.io/\n# Documentations\nhttps://kie.readthedocs.io/en/latest/\n\nor follow [here](docs/README.md) to generate it in local\n\n## Clients\n- go https://github.com/go-chassis/kie-client\n\n## Contact\n\nBugs: [issues](https://issues.apache.org/jira/browse/SCB)\n\n## Contributing\n\nSee [Contribution guide](http://servicecomb.apache.org/developers/contributing) for details on submitting patches and the contribution workflow.\n\n## Reporting Issues\n\nSee reporting bugs for details about reporting any issues.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fservicecomb-kie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fservicecomb-kie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fservicecomb-kie/lists"}