{"id":15096992,"url":"https://github.com/apache/nifi-minifi","last_synced_at":"2025-10-08T02:30:46.501Z","repository":{"id":52457148,"uuid":"54252267","full_name":"apache/nifi-minifi","owner":"apache","description":"Apache MiNiFi (a subproject of Apache NiFi)","archived":true,"fork":false,"pushed_at":"2021-01-24T13:38:24.000Z","size":1992,"stargazers_count":125,"open_issues_count":3,"forks_count":103,"subscribers_count":28,"default_branch":"main","last_synced_at":"2025-10-06T00:36:52.468Z","etag":null,"topics":["hacktoberfest","java","minifi","nifi"],"latest_commit_sha":null,"homepage":"https://nifi.apache.org/minifi/index.html","language":"Java","has_issues":false,"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}},"created_at":"2016-03-19T07:00:06.000Z","updated_at":"2025-09-22T01:49:05.000Z","dependencies_parsed_at":"2022-09-06T06:52:22.227Z","dependency_job_id":null,"html_url":"https://github.com/apache/nifi-minifi","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/apache/nifi-minifi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fnifi-minifi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fnifi-minifi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fnifi-minifi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fnifi-minifi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/nifi-minifi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fnifi-minifi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278877502,"owners_count":26061457,"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","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["hacktoberfest","java","minifi","nifi"],"created_at":"2024-09-25T16:03:14.301Z","updated_at":"2025-10-08T02:30:45.947Z","avatar_url":"https://github.com/apache.png","language":"Java","readme":"\u003c!--\n  Licensed to the Apache Software Foundation (ASF) under one or more\n  contributor license agreements.  See the NOTICE file distributed with\n  this work for additional information regarding copyright ownership.\n  The ASF licenses this file to You under the Apache License, Version 2.0\n  (the \"License\"); you may not use this file except in compliance with\n  the License.  You may obtain a copy of the License at\n      https://www.apache.org/licenses/LICENSE-2.0\n  Unless required by applicable law or agreed to in writing, software\n  distributed under the License is distributed on an \"AS IS\" BASIS,\n  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  See the License for the specific language governing permissions and\n  limitations under the License.\n--\u003e\n# Apache NiFi -  MiNiFi [![Build Status](https://travis-ci.org/apache/nifi-minifi.svg?branch=master)](https://travis-ci.org/apache/nifi-minifi)\n\nMiNiFi is a child project effort of Apache NiFi\n\n## Table of Contents\n\n- [Features](#features)\n- [Requirements](#requirements)\n- [Getting Started](#getting-started)\n- [Docker Build](#docker-build)\n- [Getting Help](#getting-help)\n- [Documentation](#documentation)\n- [License](#license)\n- [Export Control](#export-control)\n\n## Features\n\nApache NiFi - MiNiFi is a complementary data collection approach that supplements the core tenets of [NiFi](https://nifi.apache.org/) in dataflow management, focusing on the collection of data at the source of its creation.\n\nSpecific goals for MiNiFi are comprised of:\n- small and lightweight footprint\n- central management of agents\n- generation of data provenance\n- integration with NiFi for follow-on dataflow management and full chain of custody of information\n\nPerspectives of the role of MiNiFi should be from the perspective of the agent acting immediately at, or directly adjacent to, source sensors, systems, or servers.\n\n## Requirements\n* JDK 1.8 or higher\n* Apache Maven 3.1.0 or higher\n\n## Getting Started\n\nTo build:\n- Execute `mvn clean install` or for parallel build execute `mvn -T 2.0C clean install`. On a\n  modest development laptop that is a couple of years old, the latter build takes a bit under two\n  minutes. After a large amount of output you should eventually see a success message.\n\n        $ mvn -T 2.0C clean install\n        [INFO] Scanning for projects...\n        [INFO] Inspecting build with total of 26 modules...\n            ...tens of thousands of lines elided...\n        [INFO] ------------------------------------------------------------------------\n        [INFO] BUILD SUCCESS\n        [INFO] ------------------------------------------------------------------------\n        [INFO] Total time: 47.373 s (Wall Clock)\n        [INFO] Finished at: 2016-07-06T13:07:28-04:00\n        [INFO] Final Memory: 36M/1414M\n        [INFO] ------------------------------------------------------------------------\n\nTo run:\n- Change directory to 'minifi-assembly'. In the target directory, there should be a build of minifi.\n\n        $ cd minifi-assembly\n        $ ls -lhd target/minifi*\n        drwxr-xr-x  3 user  staff   102B Jul  6 13:07 minifi-0.0.1-SNAPSHOT-bin\n        -rw-r--r--  1 user  staff    39M Jul  6 13:07 minifi-0.0.1-SNAPSHOT-bin.tar.gz\n        -rw-r--r--  1 user  staff    39M Jul  6 13:07 minifi-0.0.1-SNAPSHOT-bin.zip\n\n- For testing ongoing development you could use the already unpacked build present in the directory\n  named \"minifi-*version*-bin\", where *version* is the current project version. To deploy in another\n  location make use of either the tarball or zipfile and unpack them wherever you like. The\n  distribution will be within a common parent directory named for the version.\n\n        $ mkdir ~/example-minifi-deploy\n        $ tar xzf target/minifi-*-bin.tar.gz -C ~/example-minifi-deploy\n        $ ls -lh ~/example-minifi-deploy/\n        total 0\n        drwxr-xr-x  10 user  staff   340B Jul 6 01:06 minifi-0.0.1-SNAPSHOT\n\nTo run MiNiFi:\n- Change directory to the location where you installed NiFi and run it.\n\n        $ cd ~/example-minifi-deploy/minifi-*\n        $ ./bin/minifi.sh start\n\n- View the logs located in the logs folder\n        $ tail -F ~/example-minifi-deploy/logs/minifi-app.log\n\n- For help building your first data flow and sending data to a NiFi instance see the System Admin Guide located in the docs folder or making use of the minifi-toolkit, which aids in adapting NiFi templates to MiNiFi YAML configuration file format.\n\n- If you are testing ongoing development, you will likely want to stop your instance.\n\n        $ cd ~/example-minifi-deploy/minifi-*\n        $ ./bin/minifi.sh stop\n\n## Docker Build\n\nTo build:\n- Execute mvn -P docker clean install.  This will run the full build, create a docker image based on it, and run docker-compose integration tests.  After it completes successfully, you should have an apacheminifi:${minifi.version} image that can be started with the following command (replacing ${minifi.version} with the current maven version of your branch):\n```\ndocker run -d -v YOUR_CONFIG.YML:/opt/minifi/minifi-${minifi.version}/conf/config.yml apacheminifi:${minifi.version}\n```\n\n## Getting Help\nIf you have questions, you can reach out to our mailing list: dev@nifi.apache.org\n([archive](https://mail-archives.apache.org/mod_mbox/nifi-dev)).\nFor more interactive conversations and chat, we're also often available in IRC: #nifi on\n[irc.freenode.net](https://webchat.freenode.net/?channels=#nifi) and in #NiFi on [ASF HipChat](https://www.hipchat.com/gzh2m5YML). \n\n## Documentation\n\nSee https://nifi.apache.org/minifi and https://cwiki.apache.org/confluence/display/MINIFI for the latest documentation.\n\n## License\n\nExcept as otherwise noted this software is licensed under the\n[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html)\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n  https://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n## Export Control\n\nThis distribution includes cryptographic software. The country in which you\ncurrently reside may have restrictions on the import, possession, use, and/or\nre-export to another country, of encryption software. BEFORE using any\nencryption software, please check your country's laws, regulations and\npolicies concerning the import, possession, or use, and re-export of encryption\nsoftware, to see if this is permitted. See \u003chttps://www.wassenaar.org/\u003e for more\ninformation.\n\nThe U.S. Government Department of Commerce, Bureau of Industry and Security\n(BIS), has classified this software as Export Commodity Control Number (ECCN)\n5D002.C.1, which includes information security software using or performing\ncryptographic functions with asymmetric algorithms. The form and manner of this\nApache Software Foundation distribution makes it eligible for export under the\nLicense Exception ENC Technology Software Unrestricted (TSU) exception (see the\nBIS Export Administration Regulations, Section 740.13) for both object code and\nsource code.\n\nThe following provides more details on the included cryptographic software:\n\nApache NiFi - MiNiFi uses BouncyCastle, JCraft Inc., and the built-in\njava cryptography libraries for SSL, SSH, and the protection\nof sensitive configuration parameters. See\nhttps://bouncycastle.org/about.html\nhttps://jcraft.com/c-info.html\nhttps://www.oracle.com/us/products/export/export-regulations-345813.html\nfor more details on each of these libraries cryptography features.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fnifi-minifi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fnifi-minifi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fnifi-minifi/lists"}