Databricks Labs - PySpark Synthetic Data Generator
Project description
Databricks Labs Data Generator (dbldatagen
)
Project Description
The dbldatgen
Databricks Labs project is a Python library for generating synthetic data within the Databricks
environment using Spark. The generated data may be used for testing, benchmarking, demos and many
other uses.
It operates by defining a data generation specification in code that controls how the synthetic data is to be generated. The specification may incorporate use of existing schemas, or create data in an adhoc fashion.
It has no dependencies on any libraries that are not already incuded in the Databricks runtime, and you can use it from Scala, R or other languages by defining a view over the generated data.
Feature Summary
It supports:
- Generating synthetic data at scale up to billions of rows within minutes using appropriately sized clusters
- Generating repeatable, predictable data supporting the needs for producing multiple tables, Change Data Capture, merge and join scenarios with consistency between primary and foreign keys
- Generating synthetic data for all of the Spark SQL supported primitive types as a Spark data frame which may be persisted, saved to external storage or used in other computations
- Generating ranges of dates, timestamps and numeric values
- Generation of discrete values - both numeric and text
- Generation of values at random and based on the values of other fields
(either based on the
hash
of the underlying values or the values themselves) - Ability to specify a distribution for random data generation
- Generating arrays of values for ML style feature arrays
- Applying weights to the occurrence of values
- Generating values to conform to a schema or independent of an existing schema
- use of SQL expressions in test data generation
- plugin mechanism to allow use of 3rd party libraries such as Faker
- Use of data generator to generate data sources in Databricks Delta Live Tables
Details of these features can be found in the online documentation - online documentation.
Documentation
Please refer to the online documentation for details of use and many examples.
Release notes and details of the latest changes for this specific release can be found in the Github repository here
Installation
Use pip install dbldatagen
to install the PyPi package
Within a Databricks notebook, invoke the following in a notebook cell
%pip install dbdatagen
This can be invoked within a Databricks notebook, a Delta Live Tables pipeline and even works on the Databricks community edition.
The documentation installation notes contains details of installation using alternative mechanisms.
Compatibility
The Databricks Labs data generator framework can be used with Pyspark 3.x and Python 3.6 or later
However prebuilt releases are tested against Pyspark 3.0.1 (compatible with the Databricks runtime 7.3 LTS or later) and built with Python 3.7.5
For full library compatibility for a specific Databricks Spark release, see the Databricks release notes for library compatibility
Using the Data Generator
To use the data generator, install the library using the %pip install
method or install the Python wheel directly
in your environment.
Once the library has been installed, you can use it to generate a data frame composed of synthetic data.
For example
import dbldatagen as dg
from pyspark.sql.types import IntegerType, FloatType, StringType
column_count = 10
data_rows = 1000 * 1000
df_spec = (dg.DataGenerator(spark, name="test_data_set1", rows=data_rows,
partitions=4)
.withIdOutput()
.withColumn("r", FloatType(),
expr="floor(rand() * 350) * (86400 + 3600)",
numColumns=column_count)
.withColumn("code1", IntegerType(), minValue=100, maxValue=200)
.withColumn("code2", IntegerType(), minValue=0, maxValue=10)
.withColumn("code3", StringType(), values=['a', 'b', 'c'])
.withColumn("code4", StringType(), values=['a', 'b', 'c'],
random=True)
.withColumn("code5", StringType(), values=['a', 'b', 'c'],
random=True, weights=[9, 1, 1])
)
df = df_spec.build()
num_rows=df.count()
Refer to the online documentation for further examples.
The Github repository also contains further examples in the examples directory
Project Support
Please note that all projects released under Databricks Labs
are provided for your exploration only, and are not formally supported by Databricks with Service Level Agreements
(SLAs). They are provided AS-IS and we do not make any guarantees of any kind. Please do not submit a support ticket
relating to any issues arising from the use of these projects.
Any issues discovered through the use of this project should be filed as issues on the Github Repo.
They will be reviewed as time permits, but there are no formal SLAs for support.
Feedback
Issues with the application? Found a bug? Have a great idea for an addition? Feel free to file an issue.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dbldatagen-0.2.1.tar.gz
.
File metadata
- Download URL: dbldatagen-0.2.1.tar.gz
- Upload date:
- Size: 62.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c888de1e68b07928f4b977586018dfb54ceba725475dc303b926147074114c06 |
|
MD5 | afcdf3a71299fab909868d0fc32e1c1e |
|
BLAKE2b-256 | f4dc1a9376c38ffb231002c7f0024d29f882374e7512f5fda2aa7361b713e64f |
File details
Details for the file dbldatagen-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: dbldatagen-0.2.1-py3-none-any.whl
- Upload date:
- Size: 68.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3cb6fc530a0857078179515ad39d34266a6465d8b72c33e1a030264c54f7572 |
|
MD5 | 777eea55e4f2c9915031406c6ed502d6 |
|
BLAKE2b-256 | 2bb850e45b2678f4153e5ca49d70c4dc884661deae988f78fefe0adc815c601c |