Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danieldacosta/distributed-file-system
Emulation-based system for distributed file storage and parallel computation
https://github.com/danieldacosta/distributed-file-system
firebase mapreduce mysql
Last synced: 6 days ago
JSON representation
Emulation-based system for distributed file storage and parallel computation
- Host: GitHub
- URL: https://github.com/danieldacosta/distributed-file-system
- Owner: DanielDaCosta
- Created: 2022-10-08T04:48:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T18:12:35.000Z (4 months ago)
- Last Synced: 2024-07-20T19:28:32.395Z (4 months ago)
- Topics: firebase, mapreduce, mysql
- Language: Python
- Homepage:
- Size: 9.89 MB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# distributed-file-system
Emulation-based system for distributed file storage and parallel computation# Firebase
## EDFS Commands
- ls root/
- ls root/user/
- put root/user datasets/Consume_Price_Index.csv
- getPartitionLocation root/user/Consume_Price_Index
- readPartition root/user/Consume_Price_Index China
- readPartition root/user/Human_Capital_Index China
- cat root/user/Per_Capita_GDP
- getPartitionLocation root/user/Per_Capita_GDP# MySQL
## Docker
```mysql -p```## EDFS Commands
- mkdir /root user
- ls /root
- put /root/user Access_Electricity datasets/Access_Electricity.csv
- cat /root/user/Access_Electricity
- getPartitionLocations /root/user/Access_Electricity
- readPartition /root/user/Access_Electricity Haiti
- put /root/user Access_Fuels datasets/Access_Fuels.csv# MongoDB
## Docker
```mongosh -u root```## EDFS Commands
- mkdir /root/foo
- mkdir /root/foo bar
- put /root/foo data datasets/Data.csv
- cat /root/foo/data# References
- https://realpython.com/python-dash/