ARCOR2 Execution service
Project description
arcor2_execution
Environment variables
ARCOR2_EXECUTION_URL=ws://0.0.0.0:6790- by default, the service listens on port 6790.ARCOR2_MAX_RPC_DURATION=0.1- by default, a warning is emitted when any RPC call takes longer than 0.1 second.ARCOR2_EXECUTION_DEBUG=1- switches logger to theDEBUGlevel.ARCOR2_ARSERVER_ASYNCIO_DEBUG=1- turns onasynciodebug output (helpful to debug problems related to concurrency).ARCOR2_EXECUTION_PKG_STOP_TIMEOUT=5.0- configures timeout for an attempt to stop the script in the civilized way (SIGINT). After the timeout, the script is killed (SIGKILL).
Changelog
The format is based on Keep a Changelog,
[1.6.0] - 2024-09-12
Changed
- Dependency on
arcor2~=1.5.0.
[1.5.0] - 2024-08-14
Changed
- Dependency on
arcor2_runtime~=1.4.0.
[1.4.2] - 2024-06-26
Fixed
- It was possible to pause or stop the package before it was actually running.
Changed
- If the attempt to stop the script with SIGINT fails (after timeout configured using
ARCOR2_EXECUTION_PKG_STOP_TIMEOUT), it is stopped with SIGKILL. This may happen e.g. when using threads withoutdaemon=True(which is strongly discouraged). - Previously, the package state
RUNNINGwas reported once the script was started. Now,STARTEDis sent when the script starts running andRUNNINGafterward once theResourcesclass is fully initialized (PackageInfoevent is sent). This should be fully backwards-compatible.
[1.4.1] - 2024-06-19
Fixed
- Attempt to run package resulted into
NameErrorin some environments (and was OK on others, weird).
[1.4.0] - 2024-06-14
Changed
- Dependency on
arcor2_runtime~=1.3.0.
[1.3.0] - 2024-04-11
Changed
- Updated dependencies, switched to Python 3.11.
[1.2.0] - 2024-01-08
Changed
- Dependency on
arcor2_runtime~=1.1.0.
[1.1.0] - 2023-07-20
Added
- Compatibility with
arcor2:1.1.0.
[1.0.0] - 2023-02-14
Changed
- Marked as a stable version.
[0.22.0] - 2022-12-12
Changed
- Dependency on
arcor2~=0.26.0.
[0.21.0] - 2022-10-28
Changed
- Switched to Python 3.10, updated dependencies.
[0.20.1] - 2022-08-07
Changed
- Update of scene client.
[0.20.0] - 2022-01-25
Changed
- Breaking change of WebSockets API (
ActionStateBeforeevent). - Switched to Python 3.9, updated dependencies.
[0.19.3] - 2021-11-15
Fixed
- Improved handling of script/objects initialization failures (
arcor2_runtime).
[0.19.2] - 2021-11-08
Fixed
- Fixed mutual dependency between
arcor2_execution_dataandarcor2_runtime(package.pymoved toarcor2_runtime).
[0.19.1] - 2021-11-01
Changed
- Updated dependency on arcor2_runtime
[0.19.0] - 2021-10-25
Changed
- Make RPCs less blocking.
- New environment variables
ARCOR2_EXECUTION_DEBUGandARCOR2_EXECUTION_ASYNCIO_DEBUG(see README for details). - Added dependency on
3rdparty:websocket-clientto makeLoggingMixinwork. - Support for debugging.
- The script can now be started in paused state.
- Breakpoints can be set on action points.
- The paused script can be stepped to the following action.
- Better handling of exceptions in asyncio tasks.
- More useful traceback is printed out.
- In development mode, an unhandled exception leads to shutdown of a service.
- In production mode, traceback is printed out and the service tries to continue.
- Relaying events with EEF poses/joints from the main script to the clients.
- The script streams those by default for all robots. For mode details, please see README of
arcor2_runtime.
- The script streams those by default for all robots. For mode details, please see README of
[0.18.1] - 2021-09-02
Changed
- Added EXPOSE to dockerfile
[0.18.0] - 2021-08-05
Changed
- Dependency on
arcor2==0.20.0whereRobotAPI changed.
[0.17.0] - 2021-07-29
Changed
- More stuff is now done asynchronously.
- Listing packages is now done in parallel.
- Improved logging (more events are logged).
Fixed
- Exceptions were sometimes not reported.
[0.16.0] - 2021-06-14
Changed
- Dependency on
arcor20.18.0. - Dependency on
arcor2_execution_data0.11.0.
[0.15.0] - 2021-06-14
Changed
- Dependency on
arcor20.17.0 (constantsrenamed toparametersin theProjectmodel).
[0.14.0] - 2021-05-21
Changed
- Dependency on arcor2 0.16.0 (updated
Resourcesclass).
[0.13.0] - 2021-04-20
Changed
- Dependency on arcor2 0.15.0 with updated REST client.
[0.12.0] - 2021-03-30
Changed
- Dependency on arcor2 0.14.0.
- Reporting
paussingbeforepausedandstoppingbeforestopped.
Fixed
- Script was stopped using a wrong signal.
- Execution used SIGTERM instead of SIGINT.
- Because of this, the script was not stopped gracefully.
[0.11.1] - 2021-03-15
Fixed
- Script was stopped using wrong signal (SIGTERM instead of SIGINT).
- Because of this, the script was not stopped gracefully and
cleanupmethods of objects were not executed.
- Because of this, the script was not stopped gracefully and
[0.11.0] - 2021-02-08
Changed
- Execution state reporting was improved
- 'CurrentAction' and 'ActionState' events -> 'ActionStateBefore' and 'ActionStateAfter'.
- 'ActionStateBefore' contains action id and its parameters.
- 'ActionStateAfter' contains action id and its results.
- 'PackageState' RPC removed.
[0.10.0] - 2020-12-14
Changed
- ARCOR2 dependency updated.
[0.9.0] - 2020-10-22
Changed
- Sets
project_metaproperty ofPackageSummaryif the execution package containsproject.jsonfile.
[0.8.1] - 2020-10-19
Changed
- ARCOR2 dependency updated
[0.8.0] - 2020-09-24
Changed
- Initial release of the separated package.
- Execution service is now ok with packages that do not contain scene/project/package.json.
- Execution service now sends PackageChanged events (on: new, rename, delete).
- New environment variable: ARCOR2_EXECUTION_URL (defaults to 'ws://0.0.0.0:6790').
- Main script now don't have to be executable and contain shebang.
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
arcor2_execution-1.6.0.tar.gz
(11.7 kB
view details)
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 arcor2_execution-1.6.0.tar.gz.
File metadata
- Download URL: arcor2_execution-1.6.0.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50282ab249fd65b6c34a1754939a4e719e66a0eb1ab81f201ce82c66d00c04b1
|
|
| MD5 |
ec740808fe7c39552ad54ace44a0581e
|
|
| BLAKE2b-256 |
4842bfff723af0ffd07ab970663227727ed3c1d8ece9a44161382e07239e25a4
|
File details
Details for the file arcor2_execution-1.6.0-py311-none-any.whl.
File metadata
- Download URL: arcor2_execution-1.6.0-py311-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3.11
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c057d9c3972cd04ae2388654d184ab64fd4b476c2f440f1f52349e0f89f6c17
|
|
| MD5 |
fba46142ee47b59a447f6ab4d3c8d3f0
|
|
| BLAKE2b-256 |
27ef2e6aa55bd7409895e935111d3aa6b0640d92f4ee4607321ecb6409cbe653
|