-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[EPIC] Redesign DataFusion main page #14389
Comments
Query Engine🚀 IntroductionQuery Engine is a powerful and efficient engine for querying structured and unstructured data. It provides a fast and flexible way to analyze data across multiple sources. ✨ Features
📌 Use Cases✔ Data Analytics – Run complex queries on large datasets. 🏗️ Quickstart GuideInstall Query Engine via pip: pip install query-engine Run the help command to get started: query-engine --help 💡 Example QueriesSQL Query: SELECT name, age FROM users WHERE age > 25 ORDER BY age DESC; Python Usage: from query_engine import QueryEngine
engine = QueryEngine(data_source="database_url")
results = engine.run("SELECT * FROM logs WHERE error = 'critical'") 🔧 Installation & SetupFor a local setup, clone the repository and install dependencies: git clone https://github.com/your-repo/query-engine.git
cd query-engine
pip install -r requirements.txt 🤝 ContributingWe welcome contributions! To get started:
🛣️ Roadmap
📢 Community & Support
📜 LicenseThis project is licensed under the MIT License - see the 🙌 AcknowledgmentsSpecial thanks to all contributors and the open-source community for making this project possible. |
The structure above is just an example how to make the main page more user friendly |
I think it already looks a lot better. @andygrove or @ozankabak perhaps you have some other ideas |
I also was very confused to find the Rust Version Compatibility Policy in the README.md |
As long as this thing exists somewhere (maybe the contributor guide) this makes sense to me) I think it would be useful / valuable to think about keeping the readme and the main site in sync We could go so far as to remove everything from the README.md except for a link to https://datafusion.apache.org/ 🤔 |
Is your feature request related to a problem or challenge?
Users currently fell a little bit lost when dealing with Datafusion main page https://github.com/apache/datafusion
Imho the page is overloaded with too technical information, navigations to examples, quick start are not very intuitive.
Describe the solution you'd like
Would be nice to redesign the main page and let it be the face of Datafusion. It should contain intuitive steps to get familiar with Datafusion, quick start, contribution, diagram in short what exactly makes DataFusion a DataFusion, supported features.
For the naive design we can refer to https://github.com/StarRocks/starrocks which is way more user friendly
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: