Unification of NSLS-II data sources
Project description
Databroker
|build_status| |coverage| |pypi_version| |license|
Deprecation Notice
Databroker is no longer recommended for new users or facilities adopting
Bluesky. Instead, Tiled_ with Bluesky Tiled Plugins_ is recommended as the
canonical way to persist and access data and metadata from Bluesky.
Databroker now serves two purposes that remain relevant for some users and some faciilities. First, it contains code adapting the legacy MongoDB-based Bluesky document storage to Tiled---effectively a server-side plugin for Tiled. Second, it wraps the Tiled Python client to provide an API backward-compatible with legacy Databroker user code. If you do not have MongoDB-based Bluesky storage and you do not have legacy Databroker user code, you do not need Databroker.
Databroker will be maintained by NSLS-II through April 2027 at minimum to support the transition from MongoDB-based document storage to PostgreSQL-based storage. The Python user interface may be maintained longer still, depending on the need.
============== ==============================================================
PyPI pip install databroker
Conda conda install -c conda-forge databroker
Source code https://github.com/bluesky/databroker
Documentation https://blueskyproject.io/databroker
============== ==============================================================
The bundle of metadata and data looks like this, for example.
.. code:: python
run BlueskyRun uid='4a794c63-8223-4893-895e-d16e763188a8' exit_status='success' 2020-03-07 09:17:40.436 -- 2020-03-07 09:28:53.173 Streams: * primary * baseline
Additional user metadata beyond what is shown is stored in run.metadata.
The bundle contains some number of logical tables of data ("streams"). They can
be accessed by name and read into a standard data structure from xarray_.
.. code:: python
>>> run.primary.read()
<xarray.Dataset>
Dimensions: (time: 411)
Coordinates:
* time (time) float64 1.584e+09 1.584e+09 ... 1.584e+09
Data variables:
I0 (time) float64 13.07 13.01 12.95 ... 9.862 9.845
It (time) float64 11.52 11.47 11.44 ... 4.971 4.968
Ir (time) float64 10.96 10.92 10.88 ... 4.761 4.763
dwti_dwell_time (time) float64 1.0 1.0 1.0 1.0 ... 1.0 1.0 1.0 1.0
dwti_dwell_time_setpoint (time) float64 1.0 1.0 1.0 1.0 ... 1.0 1.0 1.0 1.0
dcm_energy (time) float64 1.697e+04 1.698e+04 ... 1.791e+04
dcm_energy_setpoint (time) float64 1.697e+04 1.698e+04 ... 1.791e+04
Common search queries can be done with a high-level Python interface.
.. code:: python
>>> from databroker.queries import TimeRange
>>> catalog.search(TimeRange(since="2020"))
Custom queries can be done with the MongoDB query language_.
.. code:: python
>>> query = {
... "motors": {"$in": ["x", "y"]}, # scanning either x or y
... "temperature" {"$lt": 300}, # temperature less than 300
... "sample.element": "Ni",
... }
>>> catalog.search(query)
See the tutorials for more.
.. |build_status| image:: https://github.com/bluesky/databroker/workflows/Unit%20Tests/badge.svg?branch=master :target: https://github.com/bluesky/databroker/actions?query=workflow%3A%22Unit+Tests%22 :alt: Build Status
.. |coverage| image:: https://codecov.io/gh/bluesky/databroker/branch/master/graph/badge.svg :target: https://codecov.io/gh/bluesky/databroker :alt: Test Coverage
.. |pypi_version| image:: https://img.shields.io/pypi/v/databroker.svg :target: https://pypi.org/project/databroker :alt: Latest PyPI version
.. |license| image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg :target: https://opensource.org/licenses/BSD-3-Clause :alt: BSD 3-Clause License
.. _xarray: https://xarray.pydata.org/
.. _MongoDB query language: https://docs.mongodb.com/manual/reference/operator/query/
.. _Bluesky Data Model: https://blueskyproject.io/event-model/main/user/explanations/data-model.html
.. _Suitcase: https://blueskyproject.io/suitcase/
.. _Intake: https://intake.readthedocs.io/en/latest/
.. _Bluesky Tiled Plugins: https://blueskyproject.io/bluesky-tiled-plugins/
.. _Tiled: https://blueskyproject.io/tiled/
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file databroker-2.0.0.tar.gz.
File metadata
- Download URL: databroker-2.0.0.tar.gz
- Upload date:
- Size: 179.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f239c09345b2d4416b2b7e1ac14d725e8b01399aa13711979c6394a0ce3451b
|
|
| MD5 |
dfafb3eec9e2c17fc7bcaea8147bd093
|
|
| BLAKE2b-256 |
4252eb0a0a3bf78136999208dc122ce243e199ed64bcd3b72c92206aba791729
|
Provenance
The following attestation bundles were made for databroker-2.0.0.tar.gz:
Publisher:
publish-pypi.yml on bluesky/databroker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
databroker-2.0.0.tar.gz -
Subject digest:
6f239c09345b2d4416b2b7e1ac14d725e8b01399aa13711979c6394a0ce3451b - Sigstore transparency entry: 711868622
- Sigstore integration time:
-
Permalink:
bluesky/databroker@95fb01f8ed0b7532724d83ffe75ef117232b5a81 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/bluesky
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@95fb01f8ed0b7532724d83ffe75ef117232b5a81 -
Trigger Event:
release
-
Statement type:
File details
Details for the file databroker-2.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: databroker-2.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 194.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2ef442e9c6ef4954624222aa2df4cee71c463243768f2a16dd4a95930c5f495
|
|
| MD5 |
284874b1bff521f6b253885bbe36b36b
|
|
| BLAKE2b-256 |
a6897cfe2bcd198d3946cbfbbc74365726a5a612be5423a43c115fca348c8763
|
Provenance
The following attestation bundles were made for databroker-2.0.0-py2.py3-none-any.whl:
Publisher:
publish-pypi.yml on bluesky/databroker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
databroker-2.0.0-py2.py3-none-any.whl -
Subject digest:
b2ef442e9c6ef4954624222aa2df4cee71c463243768f2a16dd4a95930c5f495 - Sigstore transparency entry: 711868628
- Sigstore integration time:
-
Permalink:
bluesky/databroker@95fb01f8ed0b7532724d83ffe75ef117232b5a81 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/bluesky
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@95fb01f8ed0b7532724d83ffe75ef117232b5a81 -
Trigger Event:
release
-
Statement type: