############################################## Level 1: Package code in a lightning component ############################################## **Prereqs:** You know *basic* Python. **Goal:** In this guide you'll learn to develop `a Lightning component `_. ********************************* Why you need Lightning components ********************************* A Lightning component is a self-contained, modular machine-learning component that you can plug into your existing ML workflows. A Lightning component organizes arbitrary code so it can run on the cloud, manages its own infrastructure, cloud costs, networking and more. Connect components using your current workflow management tools or our :doc:`next-generation reactive orchestrator <../intermediate/index>`. Components run on the cloud or your laptop without code changes 🤯🤯. .. raw:: html
| Organizing your code into Lightning components offers these benefits: .. collapse:: Build systems not scripts | The Lightning structure forces best practices so you don't have to be an expert production engineer. Although it feels like you're writing a script, you are actually building a production-ready system. .. collapse:: Cost control | The component run-time has been optimized for cost management to support the largest machine-learning workloads. Lower your cloud bill with machines that shut down or spin up faster. .. collapse:: For beginners: Code like an expert | Lightning embeds the best practices of building production-ready full stack AI apps into your coding experience. You can write code like you normally do, and the Lightning structure ensures your code is implicitly production ready... even if you're just doing research. .. collapse:: For experts: Scale with full control | if you know what you are doing, Lightning gives you full control to manage your own scaling logic, fault-tolerance and even pre-provisioning, all from Python. .. collapse:: Integrate into your current workflow tools | Lightning components are self-contained pieces of functionality. Add them to your current workflow tools to quickly fill in gaps in your ML workflow such as monitoring drift, training LLMs and more. You can (optionally) use the Lightning App to integrate components into a cohesive workflow. .. collapse:: Packaged code | Lightning apps bundles components into an app that runs in any environment. The same code will run on your laptop, or any cloud or private clusters. You don't have to think about the cluster or know anything about the cloud. .. collapse:: Rapid iteration | Iterate through ideas in hours not months because you don't have to learn a million other concepts that the components handle for you such as kubernetes, cost management, auto-scaling and more. .. collapse:: Modularity | Components are modular and inter-operable by design. Leverage our vibrant community of components so you don't have to build each piece of the system yourself. ---- ***************** Install Lightning ***************** First, install Lightning. .. lit_tabs:: :descriptions: Pip; Macs, Apple Silicon (M1/M2/M3); Windows :code_files: /install/pip.bash; /install/mac.bash; /install/windows.bash :tab_rows: 4 :height: 180px ---- ************************** Build your first component ************************** A Lightning component organizes arbitrary code so it can run on the cloud, manages its own infrastructure, cloud costs, networking and more **Run one of these components!** .. include:: ./hero_components.rst ---- ************ Key features ************ You now know enough to build a self-contained component that runs any Python code on the cloud that can be connected to form a powerful Lightning app. Here are a few key features available to super-charge your work: .. lit_tabs:: :titles: 15+ accelerators; Auto-stop idle machines; Auto-timeout submitted work; Use spot machines (~70% discount); Work with massive datasets; Mount cloud storage; Use a custom container :code_files: ./key_features/accelerators.py; ./key_features/idle_machine.py; ./key_features/auto_timeout.py; ./key_features/spot.py; ./key_features/massive_dataset.py; ./key_features/mount_data.py; ./key_features/custom_container.py; :highlights: 11;11;11;11;11;2,7,10, 11; 11 :enable_run: true :tab_rows: 3 :height: 430px ---- ******************************************** Next: Explore real component implementations ******************************************** In this section we introduced components. Let's explore real component implementations in-depth. .. raw:: html
.. Add callout items below this line .. displayitem:: :header: Level 2: Explore real component implementations :description: Go deep into real component implementations. :col_css: col-md-12 :button_link: real_lightning_component_implementations.html :height: 150 :tag: beginner .. raw:: html