MageSmith

⚙️ Magento_AsynchronousOperations · engine innodb

magento_operation

Operation entity

Neighbourhood (1-hop foreign-key graph — showing 1 of 1)

flowchart LR
  c["magento_operation"]:::center
  n0["magento_bulk"]
  click n0 "/schema/table/magento_bulk"
  n0 -- bulk_uuid --> c
  click c "/schema/table/magento_operation"
  classDef center fill:#eef2ff,stroke:#6366f1,color:#3730a3,stroke-width:1.5px

Click a node to jump to that table.

Related tables (1)

Columns (10)

NameTypeNullDefaultComment
id PKint unsignednoOperation ID
operation_key int unsignedyesOperation Key
bulk_uuid varbinary(39) yesRelated Bulk UUID
topic_name varchar(255) yesName of the related message queue topic
serialized_data blob yesData (serialized) required to perform an operation
result_serialized_data blob yesResult data (serialized) after perform an operation
status smallint yes0Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)
error_code smallint yesCode of the error that appeared during operation execution (used to aggregate related failed operations)
result_message varchar(255) yesOperation result message
started_at timestamp yesNULLDatetime the operation started processing

Keys & indexes

Primary key: id

Indexes

  • MAGENTO_OPERATION_BULK_UUID_ERROR_CODE (bulk_uuid, error_code) btree
  • MAGENTO_OPERATION_STATUS_STARTED_AT (status, started_at) btree
  • MAGENTO_OPERATION_BULK_UUID_OPERATION_KEY (bulk_uuid, operation_key) btree

References (1)