docs/source/polars-cloud/index.md
DataFrame implementations always differed from SQL and databases. SQL could run anywhere from embedded databases to massive data warehouses. Yet, DataFrame users have been forced to choose between a solution for local work or solutions geared towards distributed computing, each with their own APIs and limitations.
Polars is bridging this gap with Polars Cloud. Build on top of the popular open source project, Polars Cloud enables you to write DataFrame code once and run it anywhere. The distributed engine available with Polars Cloud allows to scale your Polars queries beyond a single machine.
Simply extend the capabilities of Polars with:
pip install polars polars_cloud
To run your query in the cloud, simply write Polars queries like you are used to, but call
LazyFrame.remote() to indicate that the query should be run remotely.
{{code_block('polars-cloud/index','index',['ComputeContext','LazyFrameRemote'])}}
Polars Cloud is available to try with a 30 day free trial. You can sign up on cloud.pola.rs to get started.
Polars Cloud is available on AWS. Other cloud providers and on-premises solutions are on the roadmap and will become available in the upcoming months.