{"id":24570420,"url":"https://github.com/bulletdev/bulletdb","last_synced_at":"2026-02-06T17:32:19.471Z","repository":{"id":272608489,"uuid":"917172353","full_name":"Bulletdev/BulletDB","owner":"Bulletdev","description":" banco de dados híbrido que combina as melhores características de bancos relacionais e não-relacionais, oferecendo alto desempenho, flexibilidade e consistência.","archived":false,"fork":false,"pushed_at":"2025-01-15T14:08:00.000Z","size":89,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-10T17:16:17.649Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bulletdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-01-15T13:49:19.000Z","updated_at":"2025-01-15T14:08:01.000Z","dependencies_parsed_at":"2025-01-15T15:43:28.826Z","dependency_job_id":"0a77ef2f-5c86-4a38-816e-d2922c70067d","html_url":"https://github.com/Bulletdev/BulletDB","commit_stats":null,"previous_names":["bulletdev/bulletdb"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bulletdev%2FBulletDB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bulletdev%2FBulletDB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bulletdev%2FBulletDB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bulletdev%2FBulletDB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bulletdev","download_url":"https://codeload.github.com/Bulletdev/BulletDB/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243989108,"owners_count":20379648,"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":[],"created_at":"2025-01-23T16:19:44.128Z","updated_at":"2026-02-06T17:32:14.436Z","avatar_url":"https://github.com/Bulletdev.png","language":null,"readme":"\n\u003cdiv\u003e\n\u003cp align=\"center\"\u003e \n  \u003cimg alt=\"screenshot\" src=\"public/img.png\" width=\"900\" height=\"500\"\u003e\n\u003c/p\u003e\n\n\n# BulletDB\n\nBulletDB é um sistema de banco de dados híbrido que combina as melhores características de bancos relacionais e não-relacionais, oferecendo alto desempenho, flexibilidade e consistência.\n\n## Características Principais\n\n- Suporte híbrido para modelos relacionais e documentais\n- Conformidade ACID para transações\n- Pipelines de agregação otimizados\n- Compilação JIT (Just-In-Time) de expressões\n- Particionamento automático de dados\n- Paralelização de consultas\n- Sistema robusto de monitoramento\n\n## Requisitos\n\n- Java 17 ou superior\n- Maven 3.8+\n- Mínimo 4GB RAM\n- 20GB espaço em disco\n\n## Instalação\n\n```bash\ngit clone https://github.com/bulletdev/bulletdb.git\ncd bulletdb\nmvn clean install\n```\n\n## Configuração\n\n1. Copie o arquivo `config/bulletdb.properties.example` para `config/bulletdb.properties`\n2. Configure os parâmetros conforme necessário:\n```properties\nbulletdb.storage.path=/path/to/data\nbulletdb.port=9090\nbulletdb.max_connections=100\nbulletdb.memory_limit=4G\n```\n\n## Uso\n\n### Iniciar o Servidor\n\n```bash\n./bin/bulletdb-server start\n```\n\n### Conexão via CLI\n\n```bash\n./bin/bulletdb-cli --host localhost --port 9090\n```\n\n### Exemplo de Uso\n\n```java\n// Conectar ao banco\nBulletDB db = BulletDB.connect(\"localhost:9090\");\n\n// Criar tabela relacional\ndb.createTable(\"users\")\n  .addColumn(\"id\", Type.LONG)\n  .addColumn(\"name\", Type.STRING)\n  .addColumn(\"age\", Type.INTEGER)\n  .execute();\n\n// Inserir documento\ndb.collection(\"profiles\")\n  .insert({\n    \"user_id\": 1,\n    \"preferences\": {\n      \"theme\": \"dark\",\n      \"notifications\": true\n    }\n  });\n\n// Query híbrida\ndb.query()\n  .join(\"users\", \"profiles\")\n  .on(\"users.id = profiles.user_id\")\n  .where(\"age \u003e 18\")\n  .select(\"name, preferences\")\n  .execute();\n```\n\n## Features Avançadas\n\n### Particionamento\n\n```java\n// Particionamento automático por range\ndb.table(\"events\")\n  .withPartitioning()\n  .byRange(\"timestamp\")\n  .withIntervalDays(30)\n  .create();\n```\n\n### Pipeline de Agregação\n\n```java\ndb.collection(\"sales\")\n  .aggregate()\n  .match({\"status\": \"completed\"})\n  .group({\n    _id: \"$region\",\n    total: { $sum: \"$amount\" }\n  })\n  .sort({ total: -1 })\n  .execute();\n```\n\n### Monitoramento\n\n```java\n// Obter métricas\nMonitoringReport report = db.monitoring()\n  .withMetrics(\"cpu\", \"memory\", \"iops\")\n  .forPeriod(Duration.ofHours(24))\n  .generate();\n```\n\n## Performance\n\n- Throughput: 100K+ transações/segundo\n- Latência: \u003c 10ms para 99% das operações\n- Suporte para datasets de até 100TB\n- Escalabilidade horizontal automática\n\n## Contribuindo\n\n1. Fork o repositório\n2. Crie sua branch (`git checkout -b feature/AmazingFeature`)\n3. Commit suas mudanças (`git commit -m 'Add AmazingFeature'`)\n4. Push para a branch (`git push origin feature/AmazingFeature`)\n5. Abra um Pull Request\n\n## Licença\n\nEste projeto está licenciado sob a Apache License 2.0 - veja o arquivo [LICENSE](LICENSE) para detalhes.\n\n## Suporte\n\n- Issues: [GitHub Issues](https://github.com/bulletdev/bulletdb/issues)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbulletdev%2Fbulletdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbulletdev%2Fbulletdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbulletdev%2Fbulletdb/lists"}