{"id":13651546,"url":"https://github.com/niklr/golem-fulltext-search","last_synced_at":"2026-01-23T20:40:13.201Z","repository":{"id":84678146,"uuid":"390024268","full_name":"niklr/golem-fulltext-search","owner":"niklr","description":"A full-text search engine running on Golem Network.","archived":false,"fork":false,"pushed_at":"2021-08-22T21:25:16.000Z","size":1424,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-13T17:39:42.854Z","etag":null,"topics":["cloud-computing","fulltext-search","fulltextsearch","golem","golem-network"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/niklr.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}},"created_at":"2021-07-27T14:57:24.000Z","updated_at":"2024-05-24T13:07:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"b0c7111d-0169-4284-bc40-565336ac98c7","html_url":"https://github.com/niklr/golem-fulltext-search","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/niklr/golem-fulltext-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niklr%2Fgolem-fulltext-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niklr%2Fgolem-fulltext-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niklr%2Fgolem-fulltext-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niklr%2Fgolem-fulltext-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/niklr","download_url":"https://codeload.github.com/niklr/golem-fulltext-search/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niklr%2Fgolem-fulltext-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28699706,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T17:25:48.045Z","status":"ssl_error","status_checked_at":"2026-01-23T17:25:47.153Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cloud-computing","fulltext-search","fulltextsearch","golem","golem-network"],"created_at":"2024-08-02T02:00:50.395Z","updated_at":"2026-01-23T20:40:13.179Z","avatar_url":"https://github.com/niklr.png","language":"Python","funding_links":[],"categories":["Apps","Archive"],"sub_categories":["Data Analysis","Apps"],"readme":"# Golem Full-text Search Engine\n\nGolem Network is a cloud computing power service where everyone can develop, manage and execute workloads in an unstoppable, inexpensive and censorship-free environment.\n\nSince Beta.2 Golem supports a new model of computation – services. In contrast with batch tasks, services are expected to be long-running processes that don't have any natural completion point but rather are started and stopped on explicit command. The goal of this project is to build a full-text search service on Golem. The service allows its users to perform search queries over a corpus of documents submitted by the requestor during deployment.\n\n\u003ch1 align=\"center\"\u003e\n\t\u003cimg src=\"assets/demo_v2.gif\" alt=\"Golem Full-text Search Engine Demo\"\u003e\n\u003c/h1\u003e\n\n## Init\n\n- python3 -m venv .venv\n- pip install -r requirements.txt\n\n## Build image\n\n- cd service\n- docker build -t golem-fulltext-search .\n- gvmkit-build golem-fulltext-search:latest\n\n## Publish image\n\n- gvmkit-build golem-fulltext-search:latest --push\n    - success. hash link ...\n- replace `image_hash` with new hash link in `requestor.py`\n\n## Run\n\n- Run yagna daemon as described [here](https://handbook.golem.network/requestor-tutorials/flash-tutorial-of-requestor-development)\n- YAGNA_APPKEY={YOUR_KEY} ./requestor.py \n    - (e.g. YAGNA_APPKEY=c6b87104451c45cc91e1e76204da75a4 ./requestor.py)\n\n## Debug/test\n\n- ./service/test.py\n\n```\nsudo ya-runtime-dbg \\\n    --runtime ~/.local/lib/yagna/plugins/ya-runtime-vm/ya-runtime-vm \\\n    --task-package docker-golem-fulltext-search-latest-cd09f6be53.gvmi \\\n    --workdir /tmp/workdir\n```\n\n## Examples\n\nSome sample text files are located in `service/data/`\n\nEntering the search term `golem` will return the following result:\n\n```\n[\n   {\n      \"filename\":\"testfile3.txt\",\n      \"lines\":[\n         {\n            \"line\":1,\n            \"positions\":[\n               17,\n               73\n            ]\n         }\n      ]\n   },\n   {\n      \"filename\":\"testfile2.txt\",\n      \"lines\":[\n         {\n            \"line\":1,\n            \"positions\":[\n               13\n            ]\n         },\n         {\n            \"line\":0,\n            \"positions\":[\n               0\n            ]\n         }\n      ]\n   }\n]\n```\n\nEntering the search term `network` will return the following result:\n\n```\n[\n   {\n      \"filename\":\"testfile2.txt\",\n      \"lines\":[\n         {\n            \"line\":0,\n            \"positions\":[\n               6\n            ]\n         }\n      ]\n   }\n]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniklr%2Fgolem-fulltext-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fniklr%2Fgolem-fulltext-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniklr%2Fgolem-fulltext-search/lists"}